/* ============================================================
   Why Choose Us Page – Dedicated Stylesheet
   Brand: Navy #1a2b4a | Gold #c9a84c | White #ffffff
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────────────────────*/
.why-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.why-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.why-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,26,45,0.92) 0%, rgba(26,43,74,0.85) 50%, rgba(13,26,45,0.9) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 120px
    );
  z-index: 1;
}

.why-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  max-width: 800px;
  text-align: center;
  margin-inline: auto;
}

.why-hero__pre-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 1.4rem;
  background: rgba(201,168,76,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
}

.why-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.why-hero__title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────
   REASONS SECTION
──────────────────────────────────────────────────────────────*/
.why-reasons {
  background: var(--white);
  position: relative;
}

.why-reasons__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.why-reason-card {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.why-reason-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.why-reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-reason-card:hover::before {
  transform: scaleY(1);
}

.why-reason-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  box-shadow: 0 8px 25px rgba(26,43,74,0.2);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
  color: var(--gold);
}

.why-reason-card:hover .why-reason-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(26,43,74,0.3);
}

.why-reason-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-reason-card__content {
  flex: 1;
}

.why-reason-card__title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.why-reason-card__desc {
  color: var(--mid-gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────
   TRUST SECTION
──────────────────────────────────────────────────────────────*/
.why-trust {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-trust__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.why-trust .container {
  position: relative;
  z-index: 1;
}

.why-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-trust__content .section__pre-title {
  display: inline-block;
  margin-bottom: 1rem;
}

.why-trust__content .section__title {
  color: var(--white);
  text-align: left;
  margin-bottom: 1.5rem;
}

.why-trust__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.why-trust__visual {
  position: relative;
}

.why-trust__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.why-trust__image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.why-trust__image-wrap:hover .why-trust__image {
  transform: scale(1.05);
}

.why-trust__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(201,168,76,0.4);
  text-align: center;
  min-width: 140px;
}

.why-trust__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.why-trust__badge-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────────────────────────*/
.why-cta {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.why-cta__bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.why-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,26,45,0.9) 0%, rgba(26,43,74,0.75) 50%, rgba(13,26,45,0.88) 100%);
  z-index: 1;
}

.why-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 5rem;
  max-width: 750px;
}

.why-cta__pre {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.why-cta__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.why-cta__title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-cta__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.why-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE – Tablet (≤ 1024px)
──────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {
  .why-trust__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-trust__image {
    height: 350px;
  }
  .why-trust__badge {
    left: 20px;
    bottom: -15px;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE – Mobile (≤ 768px)
──────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
  .why-hero {
    min-height: 60vh;
  }
  .why-hero__content {
    padding-block: 7rem 4rem;
  }
  
  .why-reason-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
  }
  .why-reason-card__icon {
    margin-inline: auto;
  }
  
  .why-trust__image {
    height: 280px;
  }
  .why-trust__badge {
    left: 10px;
    bottom: -10px;
    padding: 1rem 1.5rem;
    min-width: 120px;
  }
  .why-trust__badge-number {
    font-size: 2rem;
  }
  
  .why-cta {
    min-height: 400px;
  }
  .why-cta__content {
    padding-block: 4rem;
  }
  .why-cta__actions {
    flex-direction: column;
  }
  .why-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE – Small Mobile (≤ 480px)
──────────────────────────────────────────────────────────────*/
@media (max-width: 480px) {
  .why-hero__title {
    font-size: 2.2rem;
  }
  .why-reason-card {
    padding: 1.5rem;
  }
  .why-reason-card__icon {
    width: 60px;
    height: 60px;
    padding: 1rem;
  }
  .why-reason-card__title {
    font-size: 1.2rem;
  }
  .why-trust__image {
    height: 220px;
  }
}
