/* ============================================
   ISDENBUL — PREMIUM LANDING PAGE STYLES
   Built for Google/Meta ads conversion
   ============================================ */

/* ============================================
   CRITICAL: Landing pages always show their content.
   Override main styles.css fade-up opacity:0 (no scroll animation here \u2014
   ad landing pages optimize for conversion, not animation flourish).
   ============================================ */
body.landing .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

/* Override content-visibility inherited from main styles.css */
body.landing .section,
body.landing section {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important;
}

/* Landing pages don't share the main header/nav \u2014 simpler, conversion-focused */
body.landing { background: #fff; }
body.landing .landing-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: padding 0.3s ease;
}
body.landing .landing-nav .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
body.landing .landing-nav .logo {
  font-size: 1.3rem;
  color: #fff;
}
body.landing .landing-nav .logo-img { height: 44px; }
body.landing .landing-nav-actions {
  display: flex; align-items: center; gap: 12px;
}
body.landing .landing-nav-social {
  display: flex; gap: 6px; align-items: center;
  margin-right: 4px;
}
body.landing .landing-nav-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
body.landing .landing-nav-social a:hover {
  background: rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.4);
  color: var(--color-secondary);
  transform: translateY(-1px);
}
/* Hide nav social icons + phone-text aggressively across all phones + tablets — keep nav clean */
@media (max-width: 1024px) {
  body.landing .landing-nav-social { display: none !important; }
  body.landing .landing-nav .nav-phone { display: none !important; }
}
body.landing .landing-nav .nav-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
body.landing .landing-nav .nav-phone i { color: var(--color-secondary); }

/* ============================================
   PREMIUM BUTTON — shine + glow + icon animation
   ============================================ */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  text-transform: none;
  background: linear-gradient(135deg, #D4BA88 0%, #C9A96E 45%, #B8944F 100%);
  color: #0A1628;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.6);
  box-shadow:
    0 4px 20px rgba(201, 169, 110, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 90%
  );
  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(201, 169, 110, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-premium:hover::before { left: 130%; }
.btn-premium:active { transform: translateY(0); }
.btn-premium i { font-size: 1em; transition: transform 0.3s ease; }
.btn-premium:hover i { transform: translateX(2px); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(37, 211, 102, 0.6);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-wa::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 90%
  );
  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-wa:hover::before { left: 130%; }
.btn-wa i { font-size: 1.15em; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ============================================
   HERO — landing page
   ============================================ */
.l-hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 60px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1628 0%, #132240 100%);
}
.l-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 90% 20%, rgba(201, 169, 110, 0.18), transparent 60%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(42, 157, 143, 0.12), transparent 65%);
  pointer-events: none;
}
.l-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 170px);
}
.l-hero-content { max-width: 640px; }
.l-hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 28px;
}
.l-hero-flag .flag-emoji { font-size: 1.25rem; }
.l-hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 600;
}
.l-hero h1 em {
  font-style: italic;
  color: var(--color-secondary);
  position: relative;
  white-space: nowrap;
}
.l-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0.08em; left: -0.05em; right: -0.05em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  opacity: 0.4;
}
.l-hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 540px;
}
.l-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.l-hero-trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.l-hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}
.l-hero-trust-item .trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary);
  font-size: 1rem;
}
.l-hero-trust-item strong { color: #fff; font-weight: 700; }
.l-hero-trust-item .stars { color: var(--color-secondary); letter-spacing: 1px; }

.l-hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 110, 0.2);
}
.l-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.l-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.3));
  pointer-events: none;
}
.l-hero-savings-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  color: #0A1628;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.l-hero-savings-badge .savings-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 2px;
}
.l-hero-savings-badge .savings-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

/* ============================================
   SAVINGS CALCULATOR (visual comparison)
   ============================================ */
.savings-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #F8F6F3 0%, #fff 100%);
}
.savings-header { text-align: center; margin-bottom: 50px; }
.savings-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 12px;
}
.savings-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.03rem;
}
.savings-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.savings-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
  border: 1px solid var(--color-border);
  text-align: center;
}
.savings-card.their-price {
  opacity: 0.9;
}
.savings-card.our-price {
  background: linear-gradient(135deg, #0A1628, #132240);
  color: #fff;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.25);
  transform: scale(1.04);
  position: relative;
}
.savings-card.our-price::before {
  content: 'Istanbul (Isdenbul)';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: #0A1628;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.savings-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: inherit;
}
.savings-card .country-flag {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.savings-card .price-huge {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-dark);
  margin: 8px 0 4px;
}
.savings-card.our-price .price-huge { color: var(--color-secondary); }
.savings-card .price-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}
.savings-card.our-price .price-label { color: rgba(255,255,255,0.6); }
.savings-vs {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.savings-result {
  margin-top: 40px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
  border-radius: 16px;
  border: 1px dashed rgba(201, 169, 110, 0.4);
}
.savings-result .save-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-secondary-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.savings-result .save-label {
  font-size: 1.05rem;
  color: var(--color-text-body);
}

/* ============================================
   HOW IT WORKS — 4-step timeline
   ============================================ */
.steps-section {
  padding: 90px 0;
  background: #0A1628;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(42, 157, 143, 0.1), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(201, 169, 110, 0.08), transparent 50%);
  pointer-events: none;
}
.steps-section .container { position: relative; z-index: 1; }
.steps-section h2 { color: #fff; text-align: center; margin-bottom: 12px; }
.steps-section .steps-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.03rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,169,110,0.4) 10%,
    rgba(201,169,110,0.4) 90%,
    transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  color: #0A1628;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow:
    0 8px 24px rgba(201, 169, 110, 0.4),
    0 0 0 6px rgba(10, 22, 40, 1),
    0 0 0 7px rgba(201, 169, 110, 0.2);
}
.step-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; line-height: 1.6; }

/* ============================================
   SERVICE CARDS — landing version (premium)
   ============================================ */
.l-services {
  padding: 90px 0;
  background: #F8F6F3;
}
.l-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.l-service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(10, 22, 40, 0.04);
}
.l-service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(10, 22, 40, 0.12),
    0 0 0 1px rgba(201, 169, 110, 0.2);
}
.l-service-card .service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.l-service-card:hover .service-img { transform: scale(1.05); }
.l-service-card .service-img-wrap { overflow: hidden; position: relative; }
.l-service-card .service-price-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-secondary);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(201, 169, 110, 0.3);
}
.l-service-card .service-body {
  padding: 24px;
}
.l-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.l-service-card p {
  color: var(--color-text-body);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.l-service-card .service-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
}
.l-service-card .service-meta > div {
  display: flex; align-items: center; gap: 6px;
  color: var(--color-text-muted);
}
.l-service-card .service-meta i { color: var(--color-secondary); }

/* ============================================
   REAL BEFORE/AFTER GALLERY — landing
   ============================================ */
.l-gallery {
  padding: 90px 0;
  background: #fff;
}
.l-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.l-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.1);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.l-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.18);
}
.l-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.l-gallery-item:hover img { transform: scale(1.08); }
.l-gallery-item .gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.85));
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.l-gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ============================================
   CLINIC FACILITY strip (photo showcase)
   ============================================ */
.l-facility {
  padding: 90px 0;
  background: #F0EDE8;
}
.l-facility-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 50px auto 0;
  aspect-ratio: 2 / 1;
}
.l-facility-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}
.l-facility-grid img:hover { transform: scale(1.02); }
.l-facility-grid .fac-large {
  grid-row: 1 / 3;
}

/* ============================================
   REVIEWS — landing (country-specific)
   ============================================ */
.l-reviews {
  padding: 90px 0;
  background: linear-gradient(180deg, #F8F6F3 0%, #fff 100%);
}
.l-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.l-review-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.06);
  border: 1px solid var(--color-border);
  position: relative;
}
.l-review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-secondary);
  opacity: 0.25;
  line-height: 1;
}
.l-review-card .l-review-stars {
  color: var(--color-secondary);
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.l-review-card .l-review-text {
  color: var(--color-text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.l-review-card .l-review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.l-review-card .l-review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  color: #0A1628;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.l-review-card .l-review-author-info strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.l-review-card .l-review-author-info span {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  display: flex; align-items: center; gap: 5px;
}
.l-review-card .l-verified {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
  margin-left: auto;
}

/* ============================================
   DOCTOR TEAM strip (landing)
   ============================================ */
.l-doctors {
  padding: 90px 0;
  background: #fff;
}
.l-doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.l-doctor-card {
  text-align: center;
  padding: 0;
}
.l-doctor-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.12);
  background: #132240;
}
.l-doctor-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top; /* show face prominently, accept that burned-in name overlay at bottom may crop */
  transition: transform 0.5s ease;
}
.l-doctor-card:hover .l-doctor-img-wrap img { transform: scale(1.04); }

/* Gradient overlay hides burned-in name text at the bottom of the image \u2014
   the proper HTML name + role display cleanly below the photo.
   (Matches /about page treatment, scaled for the 3:4 aspect-ratio cards.) */
.l-doctor-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;                    /* was 22% \u2014 landing cards are taller per-width than /about's 280px wrapper */
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(10, 22, 40, 0.55) 35%,
    rgba(10, 22, 40, 0.95) 70%,
    #0A1628 100%);                /* solid bottom blocks any pixel leakage from the burned-in name */
  pointer-events: none;
  z-index: 1;
}
.l-doctor-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.l-doctor-card .l-doctor-role {
  color: var(--color-secondary-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   FINAL CTA with inline form
   ============================================ */
.l-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #0A1628 0%, #132240 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.l-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.15), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(42, 157, 143, 0.12), transparent 55%);
  pointer-events: none;
}
.l-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-cta h2 { color: #fff; margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); }
.l-cta p { color: rgba(255,255,255,0.8); font-size: 1.08rem; line-height: 1.7; margin-bottom: 28px; }
.l-cta-features { display: flex; flex-direction: column; gap: 12px; }
.l-cta-feature {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
}
.l-cta-feature i {
  color: #0A1628;
  background: var(--color-secondary);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.l-cta-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.l-cta-form h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.l-cta-form p { font-size: 0.9rem; margin-bottom: 24px; color: rgba(255,255,255,0.6); }
.l-cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.l-cta-form .form-group { margin-bottom: 14px; }
.l-cta-form label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.l-cta-form input,
.l-cta-form select,
.l-cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.l-cta-form input:focus,
.l-cta-form select:focus,
.l-cta-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
.l-cta-form input::placeholder,
.l-cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.l-cta-form select option { background: #132240; color: #fff; }
.l-cta-form button {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.l-cta-form .form-trust {
  text-align: center;
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.l-cta-form .form-trust i { color: var(--color-accent); }

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.l-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 10px 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}
.l-sticky-cta .container {
  display: flex; gap: 10px;
}
.l-sticky-cta a {
  flex: 1;
  justify-content: center;
  padding: 14px 16px;
  font-size: 0.88rem;
}

/* ============================================
   LANDING FOOTER — minimal
   ============================================ */
.l-footer {
  padding: 50px 0 30px;
  background: #061020;
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
}
.l-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.l-footer-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.l-footer-brand img { height: 36px; }
.l-footer-brand span { color: var(--color-secondary); }
.l-footer-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.l-footer-contact a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.l-footer-contact a:hover { color: var(--color-secondary); }

.l-footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.l-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.l-footer-socials a:hover {
  background: linear-gradient(135deg, #C9A96E, #B8944F);
  border-color: rgba(201, 169, 110, 0.5);
  color: #0A1628;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 169, 110, 0.3);
}

/* ============================================
   SECTION HEADING (landing)
   ============================================ */
.l-heading { text-align: center; margin-bottom: 50px; }
.l-heading .l-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.l-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.l-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}
.l-heading .gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .l-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  .l-hero-media { max-width: 500px; margin: 0 auto; aspect-ratio: 4 / 5; }
  .l-hero { padding: 100px 0 60px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .savings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .savings-vs { display: none; }
  .l-cta .container { grid-template-columns: 1fr; }
  .l-doctors-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .l-facility-grid { grid-template-columns: 1fr 1fr; aspect-ratio: auto; grid-template-rows: auto; }
  .l-facility-grid .fac-large { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .l-facility-grid img:not(.fac-large) { aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .l-hero { padding: 90px 0 50px; min-height: auto; }
  .l-hero h1 { font-size: 2.3rem; }
  .l-hero-sub { font-size: 1rem; }
  .l-hero-trust { gap: 18px; }
  .l-hero-trust-item { font-size: 0.82rem; }
  .l-hero-savings-badge { top: 14px; right: 14px; padding: 10px 14px; }
  .l-hero-savings-badge .savings-value { font-size: 1.2rem; }
  .l-gallery-grid { grid-template-columns: 1fr 1fr; }
  .l-reviews-grid { grid-template-columns: 1fr; }
  .l-services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .l-doctors-grid { grid-template-columns: 1fr 1fr; }
  .l-cta-form { padding: 28px 22px; }
  .l-cta-form .form-row { grid-template-columns: 1fr; }
  .l-sticky-cta { display: block; }
  body.landing main { padding-bottom: 80px; }
  .savings-section, .steps-section, .l-services,
  .l-gallery, .l-facility, .l-reviews, .l-doctors, .l-cta {
    padding: 60px 0;
  }
  .btn-premium, .btn-wa, .btn-ghost { padding: 14px 22px; font-size: 0.92rem; }

  /* ==== Landing Nav: mobile \u2014 prevent overlap + cutoff ==== */
  body.landing .landing-nav { padding: 10px 0; }
  body.landing .landing-nav .container {
    gap: 10px;
    flex-wrap: nowrap;
    min-width: 0;
  }
  body.landing .landing-nav .logo {
    font-size: 1rem !important;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.landing .landing-nav .logo-img {
    height: 34px;
    width: 34px;
    flex-shrink: 0;
  }
  body.landing .landing-nav .nav-phone {
    display: none !important; /* hide verbose phone text on mobile, keep icon-only WhatsApp */
  }
  body.landing .landing-nav .landing-nav-social { display: none !important; }
  body.landing .landing-nav-actions {
    flex-shrink: 0;
    min-width: 0;
  }
  body.landing .landing-nav .landing-nav-actions .btn-wa {
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
    height: auto !important;
    min-height: 38px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  body.landing .landing-nav .landing-nav-actions .btn-wa i {
    font-size: 1rem;
  }

  /* ==== Sticky bottom CTA: balance 3 buttons so text doesn\u2019t wrap ==== */
  .l-sticky-cta .container {
    gap: 6px;
    padding: 0 8px;
  }
  .l-sticky-cta a {
    padding: 12px 6px;
    font-size: 0.78rem;
    white-space: nowrap;
    min-width: 0;
    text-align: center;
    line-height: 1.1;
  }
  .l-sticky-cta a i {
    font-size: 0.92em;
    margin-right: 2px;
  }
  .l-sticky-cta a.btn-ghost { flex: 0 0 auto; padding: 12px 10px; }
  .l-sticky-cta a.btn-wa { flex: 1 1 auto; }
  .l-sticky-cta a.btn-premium { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  /* Very narrow phones \u2014 icon-only WhatsApp button */
  body.landing .landing-nav .logo span,
  body.landing .landing-nav .logo { font-size: 0.92rem !important; }
  body.landing .landing-nav .logo-img { height: 30px; width: 30px; }
  /* Icon-only WhatsApp button on very narrow phones (font-size:0 hides text node, i scales up) */
  body.landing .landing-nav .landing-nav-actions .btn-wa {
    font-size: 0 !important;
    padding: 9px 11px !important;
    gap: 0 !important;
    min-width: 40px;
  }
  body.landing .landing-nav .landing-nav-actions .btn-wa i {
    font-size: 1.15rem !important;
  }
  .l-hero h1 { font-size: 1.95rem; line-height: 1.1; }
  .l-sticky-cta a { font-size: 0.72rem; padding: 11px 4px; }
  .l-sticky-cta a.btn-ghost i { display: block; margin: 0 auto 2px; }
}

@media (max-width: 480px) {
  .l-gallery-grid { grid-template-columns: 1fr; }
  .l-doctors-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .l-facility-grid { grid-template-columns: 1fr; }
  .l-facility-grid .fac-large { grid-column: auto; }
}
