/* ================================================
   WHY CHOOSE US SECTION - COMPLETE CSS
   NO GLOW EFFECTS
   ================================================ */

.whyus-section {
  position: relative;
  padding: 10rem 0;
  background: #111111;
  overflow: visible;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.whyus-section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.whyus-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================
   HEADER
   ================================================ */

.whyus-header {
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
  min-height: auto;
}

.whyus-bg {
  position: static;
  display: block;
  font-size: 8rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  color: rgb(39, 39, 39);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  margin-bottom: -3.5rem;
  font-family: "BeyondInfinity", "Beyond Infinity", cursive;
  z-index: 0;
}

.whyus-title {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.whyus-underline {
  width: 180px;
  height: 18px;
  margin: 1.5rem auto 22px auto;
  position: relative;
  pointer-events: none;
  z-index: 1;
}

.whyus-underline::after {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1418 125'><path d='M1412.29 72.17c-11.04-5.78-20.07-14.33-85.46-25.24-22.37-3.63-44.69-7.56-67.07-11.04-167.11-22.06-181.65-21.24-304.94-30.56C888.78 1.39 822.57 1.1 756.44 0c-46.63-.11-93.27 1.56-139.89 2.5C365.5 13.55 452.86 7.68 277.94 23.15 202.57 33.32 127.38 45.01 52.07 55.69c-11.23 2.41-22.63 4.17-33.71 7.22C6.1 66.33 5.64 66.19 3.89 67.79c-7.99 5.78-2.98 20.14 8.72 17.5 33.99-9.47 32.28-8.57 178.06-29.66 4.26 4.48 7.29 3.38 18.42 3.11 13.19-.32 26.38-.53 39.56-1.12 53.51-3.81 106.88-9.62 160.36-13.95 18.41-1.3 36.8-3.12 55.21-4.7 23.21-1.16 46.43-2.29 69.65-3.4 120.28-2.16 85.46-3.13 234.65-1.52 23.42.99 1.57-.18 125.72 6.9 96.61 8.88 200.92 27.94 295.42 46.12 40.87 7.91 116.67 23.2 156.31 36.78 3.81 1.05 8.28-.27 10.51-3.58 3.17-3.72 2.66-9.7-.78-13.13-3.25-3.12-8.14-3.44-12.18-5.08-17.89-5.85-44.19-12.09-63.67-16.56l26.16 3.28c23.02 3.13 46.28 3.92 69.34 6.75 10.8.96 25.43 1.81 34.34-4.39 2.26-1.54 4.86-2.75 6.21-5.27 2.76-4.59 1.13-11.06-3.59-13.68ZM925.4 23.77c37.64 1.4 153.99 10.85 196.64 14.94 45.95 5.51 91.89 11.03 137.76 17.19 24.25 4.77 74.13 11.21 101.72 18.14-11.87-1.15-23.77-1.97-35.65-3.06-133.46-15.9-266.8-33.02-400.47-47.21Z' fill='%23FF6B35'></path></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 1;
}

.whyus-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 1.5rem auto 0;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ================================================
   FEATURES GRID - CORRECT LAYOUT
   2 cards left column, featured card 2x2, 3 cards bottom row
   ================================================ */

.whyus-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

/* ================================================
   FEATURED CARD - LARGER SIZE
   ================================================ */

.whyus-featured-card {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 4rem;
  background: #000000;
  color: #fff;
  overflow: hidden;
  text-align: center;
  border-radius: 24px;
  min-height: 700px;
}

.whyus-featured-card::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url('../../assets/Hero_About/hero_about.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
  transform: translate(var(--mouse-x, 0px), var(--mouse-y, 0px));
  transition: transform 0.1s linear;
}

.whyus-featured-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.whyus-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.whyus-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 50px;
  margin-bottom: 2.5rem;
}

.whyus-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyus-badge-icon svg {
  width: 20px;
  height: 20px;
  color: #FF6B35;
}

.whyus-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.whyus-featured-card h3 {
  font-size: 3.2rem;
  color: #FF6B35;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-weight: 800;
  line-height: 1.1;
}

.whyus-featured-card p {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 650px;
  line-height: 1.7;
}

.whyus-metrics {
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.whyus-metric-item {
  text-align: center;
}

.whyus-metric-number {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.whyus-metric-label {
  display: block;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================================================
   SMALL CARDS - NO GLOW EFFECTS
   ================================================ */

.whyus-feature-card {
  position: relative;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #1a1a1a, #161616);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  max-height: 300px;
}

.whyus-feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.whyus-feature-card:not(.whyus-featured-card):hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8);
}

.whyus-feature-card:not(.whyus-featured-card).expanded {
  max-height: 800px;
  z-index: 100;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
}

/* Card Positioning in Grid */
.whyus-feature-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.whyus-feature-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.whyus-feature-card:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.whyus-feature-card:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.whyus-feature-card:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

/* ================================================
   CARD ICON - NO GLOW
   ================================================ */

.whyus-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(243, 110, 54, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f36e36;
  margin-bottom: 1.5rem;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whyus-card-icon svg {
  width: 32px;
  height: 32px;
  transition: all 0.4s ease;
}

/* ================================================
   CARD TITLE & DESCRIPTION
   ================================================ */

.whyus-feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.whyus-feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  margin-bottom: auto;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* ================================================
   EXPANDABLE CONTENT (VERTICAL)
   ================================================ */

.whyus-card-expandable {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whyus-feature-card.expanded .whyus-card-expandable {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.whyus-card-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

.whyus-feature-card.expanded .whyus-card-image {
  transform: translateY(0);
  opacity: 1;
}

.whyus-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.whyus-card-image:hover img {
  transform: scale(1.08);
}

.whyus-card-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whyus-card-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.whyus-feature-card.expanded .whyus-card-details li {
  transform: translateX(0);
  opacity: 1;
}

.whyus-feature-card.expanded .whyus-card-details li:nth-child(1) {
  transition-delay: 0.3s;
}

.whyus-feature-card.expanded .whyus-card-details li:nth-child(2) {
  transition-delay: 0.4s;
}

.whyus-feature-card.expanded .whyus-card-details li:nth-child(3) {
  transition-delay: 0.5s;
}

.whyus-card-details li:last-child {
  border-bottom: none;
}

.whyus-card-details li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: rgba(255, 107, 53, 0.2);
  color: #FF6B35;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================
   CARD FOOTER
   ================================================ */

.whyus-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.whyus-feature-card.expanded .whyus-card-footer {
  opacity: 0.5;
  transform: scale(0.95);
}

.whyus-footer-stat {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whyus-footer-arrow {
  font-size: 1.25rem;
  color: #FF6B35;
  transition: transform 0.3s;
}

.whyus-feature-card:not(.expanded):hover .whyus-footer-arrow {
  transform: translateX(5px);
}

.whyus-feature-card.expanded .whyus-footer-arrow {
  transform: rotate(90deg);
}

/* ================================================
   UNIQUE HOVER REVEAL ANIMATIONS
   ================================================ */

@keyframes revealSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealSlideRight {
  from {
    opacity: 0;
    transform: translateX(-60px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes revealBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes revealFlip {
  from {
    opacity: 0;
    transform: perspective(800px) rotateY(-45deg);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateY(0);
  }
}

@keyframes revealZoom {
  from {
    opacity: 0;
    transform: scale(0.7);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.whyus-feature-card[data-reveal="fade-up"]:nth-child(1).revealed {
  animation: revealSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.whyus-feature-card[data-reveal="fade-up"]:nth-child(2).revealed {
  animation: revealSlideRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.whyus-feature-card[data-reveal="fade-up"]:nth-child(3).revealed {
  animation: revealBounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.whyus-feature-card[data-reveal="fade-up"]:nth-child(4).revealed {
  animation: revealFlip 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.whyus-feature-card[data-reveal="fade-up"]:nth-child(5).revealed {
  animation: revealZoom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ================================================
   CTA SECTION
   ================================================ */

.whyus-cta {
  position: relative;
  background: linear-gradient(135deg, #FF6B35, #5a2300);
  border-radius: 32px;
  padding: 5rem 4rem;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.34,1.56,0.64,1);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  min-height: 280px;
}

.whyus-cta.revealed {
  opacity: 1;
  transform: scale(1);
}

.whyus-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.whyus-cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}

.whyus-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: whyus-float 8s ease-in-out infinite;
}

.whyus-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -80px;
  animation: whyus-float 6s ease-in-out infinite reverse;
}

.whyus-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation: whyus-float 10s ease-in-out infinite;
}

@keyframes whyus-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

.whyus-cta-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
  z-index: 2;
}

.whyus-cta-left h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.whyus-cta-left p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.6;
}

.whyus-cta-stats {
  display: flex;
  gap: 3.5rem;
}

.whyus-cta-stat-item strong {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.whyus-cta-stat-item {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

.whyus-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 3rem;
  background: #fff;
  color: #FF6B35;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whyus-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.whyus-cta-btn .whyus-btn-text {
  display: inline-block;
}

.whyus-cta-btn .whyus-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whyus-cta-right {
  text-align: center;
}

.whyus-cta-subtext {
  font-size: 0.9rem;
  margin-top: 1.25rem;
  opacity: 0.85;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1200px) {
  .whyus-featured-card {
    padding: 4rem 3rem;
    min-height: 550px;
  }
  
  .whyus-featured-card h3 {
    font-size: 2.8rem;
  }
  
  .whyus-featured-card p {
    font-size: 1.15rem;
  }
  
  .whyus-metric-number {
    font-size: 4rem;
  }
  
  .whyus-metrics {
    gap: 3.5rem;
  }
  
  .whyus-cta {
    padding: 4rem 3rem;
  }
}

@media (max-width: 900px) {
  .whyus-features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .whyus-featured-card {
    grid-column: 1;
    grid-row: auto;
    padding: 3.5rem 2rem;
    min-height: 450px;
  }
  
  .whyus-feature-card:nth-child(1),
  .whyus-feature-card:nth-child(2),
  .whyus-feature-card:nth-child(3),
  .whyus-feature-card:nth-child(4),
  .whyus-feature-card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
  
  .whyus-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .whyus-cta-stats {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .whyus-bg {
    font-size: 3.5rem;
    margin-bottom: -2rem;
  }
  
  .whyus-title {
    font-size: 2.3rem;
  }
  
  .whyus-underline {
    width: 120px;
  }
  
  .whyus-section {
    padding: 54px 0 28px 0;
  }
  
  .whyus-featured-card {
    padding: 2.5rem 1.5rem;
    min-height: 400px;
  }
  
  .whyus-featured-card h3 {
    font-size: 2rem;
  }
  
  .whyus-featured-card p {
    font-size: 1.05rem;
  }
  
  .whyus-metric-number {
    font-size: 3rem;
  }
  
  .whyus-metrics {
    gap: 2.5rem;
  }
  
  .whyus-cta {
    padding: 3rem 2rem;
  }
  
  .whyus-cta-left h3 {
    font-size: 2rem;
  }
  
  .whyus-cta-left p {
    font-size: 1rem;
  }
  
  .whyus-cta-stat-item strong {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .whyus-section {
    padding: 32px 0 12px 0;
  }
  
  .whyus-bg {
    font-size: 2.5rem;
    margin-bottom: -1.5rem;
  }
  
  .whyus-title {
    font-size: 2rem;
  }
  
  .whyus-underline {
    width: 90px;
  }
  
  .whyus-featured-card {
    padding: 2rem 1.25rem;
    min-height: 350px;
  }
  
  .whyus-featured-card h3 {
    font-size: 1.5rem;
  }
  
  .whyus-featured-card p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
  
  .whyus-metric-number {
    font-size: 2.5rem;
  }
  
  .whyus-metrics {
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .whyus-metric-label {
    font-size: 0.8rem;
  }
  
  .whyus-feature-card {
    padding: 1.25rem 0.75rem;
  }
  
  .whyus-card-image {
    height: 140px;
  }
  
  .whyus-cta {
    padding: 2rem 1.5rem;
  }
  
  .whyus-cta-left h3 {
    font-size: 1.75rem;
  }
  
  .whyus-cta-left p {
    font-size: 0.95rem;
  }
  
  .whyus-cta-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
  
  .whyus-cta-stat-item strong {
    font-size: 2rem;
  }
  
  .whyus-cta-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ================================================
   PULSE ANIMATION FOR COUNTERS
   ================================================ */

@keyframes whyus-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
