/* ============================================
   KAIVALYA CLINIC — Premium Landing Page
   Cinematic Hero · Glassmorphism · Gold Accents
   ============================================ */

@font-face {
  font-family: 'Balithya';
  src: url('fonts/Balithya.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Landing-specific resets ── */
.landing-page {
  --gold: #E8A0B5;
  --gold-dark: #D4869E;
  --gold-light: #F2C4D4;
  --gold-soft: rgba(232, 160, 181, 0.1);
  --emerald: #0C5A3E;
  --emerald-dark: #063D29;
  --emerald-light: #3B8E6F;
  --emerald-soft: rgba(12, 90, 62, 0.06);
  --cream: #FAFAFA;
  --sand: #F5F5F5;
  --charcoal: #1A1A1A;
  --slate: #2C3E36;
  --mist: #4A5C54;
  --ghost: #8A9B94;
}


/* ── CINEMATIC HERO ── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.82) saturate(1.25);
}

.lp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(6, 30, 20, 0.85) 0%,
    rgba(12, 90, 62, 0.45) 35%,
    rgba(59, 142, 111, 0.2) 60%,
    rgba(232, 160, 181, 0.12) 100%
  );
  z-index: 2;
}

.lp-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.lp-hero-text {
  color: white;
}

/* ── Hero Brand Banner ── */
.lp-hero-brand-centered {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.brand-title-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(12, 90, 62, 0.75) 0%, rgba(6, 61, 41, 0.9) 100%);
  border: 1.5px solid rgba(232, 160, 181, 0.55);
  padding: 10px 68px 10px 28px;
  border-radius: 50px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3), 0 0 25px rgba(232, 160, 181, 0.35);
  transform: translateY(0);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-title-row:hover {
  border-color: rgba(232, 160, 181, 0.95);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(232, 160, 181, 0.5);
  transform: translateY(-3px);
}

.brand-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Marcellus', 'Georgia', serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFF8E7 0%, #E8C88B 50%, #C29B38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.brand-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.35);
}

.brand-circle-badge {
  position: absolute;
  top: -24px;
  right: -12px;
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, #E2B755 0%, #A6832E 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transform: rotate(6deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-circle-badge:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.brand-circle-badge .since {
  font-family: 'Marcellus', serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
}

.brand-circle-badge .year {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand-circle-badge .loc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

@media (max-width: 600px) {
  .brand-title-row {
    padding: 8px 16px;
    gap: 8px;
    position: relative;
  }
  .brand-logo-img {
    height: 40px;
  }
  .brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  .brand-tag {
    font-size: 0.7rem;
    padding-left: 8px;
  }
  .brand-circle-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 68px;
    height: 68px;
    margin-top: 6px;
    transform: none;
    border: none;
  }
  .brand-circle-badge .since {
    font-size: 0.58rem;
  }
  .brand-circle-badge .year {
    font-size: 1.05rem;
  }
  .brand-circle-badge .loc {
    font-size: 0.42rem;
  }
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194, 155, 56, 0.15);
  border: 1px solid rgba(194, 155, 56, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.lp-hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: lp-pulse 2s ease-in-out infinite;
}

.lp-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.lp-hero-title em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: var(--gold-light);
  font-size: inherit;
  display: inline;
  line-height: inherit;
  vertical-align: baseline;
}

.lp-hero-title em::after {
  display: none;
}

.lp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232, 160, 181, 0.35), 0 0 16px rgba(232, 160, 181, 0.15);
  letter-spacing: 0.02em;
}

.lp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 160, 181, 0.5), 0 0 24px rgba(232, 160, 181, 0.2);
  color: white;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.lp-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: white;
}

/* Hero trust signals */
.lp-hero-trust {
  display: flex;
  gap: 40px;
}

.lp-trust-item {
  text-align: left;
}

.lp-trust-value {
  font-family: var(--font-family-heading);
  font-size: 2.25rem;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.lp-trust-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

/* Hero visual */
.lp-hero-visual {
  position: relative;
  height: 520px;
}

.lp-hero-card-1 {
  position: absolute;
  top: 5%;
  left: 0;
  width: 60%;
  height: 72%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.lp-hero-card-1:hover { transform: translateY(-8px) rotate(-1deg); }

.lp-hero-card-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-card-2 {
  position: absolute;
  bottom: 5%;
  right: 0;
  width: 52%;
  height: 65%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.lp-hero-card-2:hover { transform: translateY(-8px) rotate(1deg); }

.lp-hero-card-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-glass {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.lp-hero-glass-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(194, 155, 56, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.lp-hero-glass h4 {
  font-family: var(--font-family-heading);
  font-size: 0.85rem;
  color: white;
  margin-bottom: 1px;
}

.lp-hero-glass p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Floating badge on secondary card */
.lp-live-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--emerald-dark);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.lp-live-dot {
  width: 7px;
  height: 7px;
  background: #66BB6A;
  border-radius: 50%;
  animation: lp-pulse 1.5s infinite;
}

/* Decorative orbs */
.lp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.lp-orb-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232,160,181,0.14) 0%, rgba(242,196,212,0.08) 45%, transparent 70%);
  top: -80px;
  right: 5%;
  animation: lp-float 8s ease-in-out infinite;
}

.lp-orb-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(59,142,111,0.1) 0%, rgba(232,160,181,0.05) 50%, transparent 70%);
  bottom: 10%;
  left: 2%;
  animation: lp-float 6s ease-in-out infinite reverse;
}


/* ── SLOGAN RIBBON ── */
.lp-ribbon {
  background: var(--emerald);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/texture-pattern.webp') center/400px repeat;
  opacity: 0.04;
}

.lp-ribbon p {
  font-family: var(--font-family-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin: 0;
  position: relative;
  letter-spacing: 0.08em;
}

.lp-ribbon p span {
  color: var(--gold-light);
}


/* ── ABOUT / STORY SECTION ── */
.lp-story {
  padding: 88px 0;
  background: white;
  position: relative;
}

.lp-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.lp-story-media {
  position: relative;
}

.lp-story-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.lp-story-since {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 32px rgba(194,155,56,0.35);
  z-index: 2;
}

.lp-story-since .yr {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.lp-story-since .txt {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  opacity: 0.85;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--emerald-light);
  margin-bottom: 14px;
}

.lp-section-label::before {
  display: none;
}

.lp-story-text h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.15;
}

.lp-story-text p {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lp-story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.lp-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(194,155,56,0.08);
}

.lp-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--emerald-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-highlight h4 {
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.lp-highlight p {
  font-size: 0.78rem;
  color: var(--mist);
  margin: 0;
  line-height: 1.5;
}


/* ── SERVICES SECTION ── */
.lp-services {
  padding: 96px 0;
  background: var(--cream);
  position: relative;
}

.lp-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/texture-pattern.webp') center/400px repeat;
  opacity: 0.03;
  pointer-events: none;
}

.lp-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.lp-services-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-services-header h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 14px;
}

.lp-services-header p {
  color: var(--mist);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-service-card {
  background: white;
  border-radius: 14px;
  padding: 32px 24px 28px;
  border: 1px solid var(--color-border-light, #EDF2F0);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.lp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  opacity: 0;
  transition: opacity 0.35s;
}

.lp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(9,30,22,0.1);
}

.lp-service-card:hover::before {
  opacity: 1;
}

.lp-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--emerald-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s;
}

.lp-service-card:hover .lp-service-icon {
  background: rgba(194, 155, 56, 0.1);
  color: var(--gold-dark);
}

.lp-service-card h3 {
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.lp-service-card p {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.65;
  margin: 0;
}


/* ── TREATMENTS GALLERY ── */
.lp-treatments {
  padding: 88px 0;
  background: white;
}

.lp-treatments-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-treatments-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-treatments-header h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 14px;
}

.lp-treatments-header p {
  color: var(--mist);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.lp-treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-tx-card {
  border-radius: 14px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--color-border-light, #EDF2F0);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.lp-tx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(9,30,22,0.1);
}

.lp-tx-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.lp-tx-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.lp-tx-card:hover .lp-tx-img img {
  transform: scale(1.08);
}

.lp-tx-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(12,90,62,0.85);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.lp-tx-body {
  padding: 22px 24px 24px;
}

.lp-tx-body h3 {
  font-family: var(--font-family-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.lp-tx-body p {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}


/* ── DOCTORS SECTION ── */
.lp-doctors {
  padding: 104px 0;
  background: var(--emerald-dark);
  position: relative;
  overflow: hidden;
}

.lp-doctors::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/texture-pattern.webp') center/400px repeat;
  opacity: 0.03;
}

.lp-doctors-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.lp-doctors-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-doctors-header .lp-section-label {
  color: var(--gold-light);
}

.lp-doctors-header .lp-section-label::before {
  background: var(--gold-light);
}

.lp-doctors-header h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 14px;
}

.lp-doctors-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.lp-doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 840px;
  margin: 0 auto;
}

.lp-doc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.lp-doc-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(194,155,56,0.25);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.lp-doc-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.lp-doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.lp-doc-photo img[src*="pralhad_shinde"] {
  object-position: center 10%;
}

.lp-doc-photo img[src*="chhaya_shinde"] {
  object-position: center 25%;
}

.lp-doc-card:hover .lp-doc-photo img {
  transform: scale(1.05);
}

.lp-doc-info {
  padding: 28px;
}

.lp-doc-info h3 {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 4px;
}

.lp-doc-info .lp-doc-spec {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: block;
}

.lp-doc-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 18px;
}

.lp-doc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: rgba(194,155,56,0.2);
  border: 1px solid rgba(194,155,56,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.lp-doc-cta:hover {
  background: rgba(194,155,56,0.35);
  color: white;
  transform: translateY(-2px);
}


/* ── CTA SECTION ── */
.lp-cta {
  padding: 88px 0;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.lp-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-cta h2 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.lp-cta p {
  color: var(--mist);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.lp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-btn-emerald {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(12,90,62,0.3);
}

.lp-btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(12,90,62,0.4);
  color: white;
}

.lp-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: transparent;
  color: var(--emerald);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--emerald);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}

.lp-btn-outline-dark:hover {
  background: var(--emerald-soft);
  transform: translateY(-2px);
  color: var(--emerald-dark);
}


/* ── SCROLL REVEAL ANIMATIONS ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal-delay-1 { transition-delay: 0.1s; }
.lp-reveal-delay-2 { transition-delay: 0.2s; }
.lp-reveal-delay-3 { transition-delay: 0.3s; }
.lp-reveal-delay-4 { transition-delay: 0.4s; }
.lp-reveal-delay-5 { transition-delay: 0.5s; }


/* ── KEYFRAMES ── */
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 24px 60px;
  }
  .lp-hero-visual { height: 400px; }
  .lp-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-doctors-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
  .lp-hero-inner { padding: 80px 20px 48px; }
  .lp-hero-title { font-size: 2.4rem; line-height: 1.15; }
  .lp-hero-visual { height: 320px; }
  .lp-hero-card-1 { width: 55%; height: 65%; }
  .lp-hero-card-2 { width: 50%; height: 55%; }
  .lp-hero-trust { gap: 24px; }
  .lp-trust-value { font-size: 1.7rem; }
  .lp-story, .lp-services, .lp-treatments, .lp-doctors, .lp-cta { padding: 64px 0; }
  .lp-services-grid, .lp-treatments-grid { grid-template-columns: 1fr; }
  .lp-story-highlights { grid-template-columns: 1fr; }
  .lp-story-since { width: 90px; height: 90px; bottom: -12px; right: -8px; }
  .lp-story-since .yr { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .lp-hero-actions { flex-direction: column; }
  .lp-btn-gold, .lp-btn-ghost { width: 100%; justify-content: center; }
  .lp-hero-trust { flex-wrap: wrap; gap: 20px; }
  .lp-cta-actions { flex-direction: column; align-items: center; }
  .lp-btn-emerald, .lp-btn-outline-dark { width: 100%; justify-content: center; }
}


/* ─────────────────────────────────────────────
   SERVICES SECTION
   ───────────────────────────────────────────── */

.lp-services {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}

.lp-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(59,142,111,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(232,160,181,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Section Header ── */
.lp-services-header {
  text-align: center;
  margin-bottom: 72px;
}

.lp-services-header h2 {
  font-family: var(--font-family-heading, serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin: 12px 0 20px;
  line-height: 1.2;
}

.lp-services-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Service Card Grid ── */
.lp-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Individual Service Card ── */
.lp-svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.lp-svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,142,111,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(59,142,111,0.2);
}

/* ── Image Wrapper ── */
.lp-svc-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.lp-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.lp-svc-card:hover .lp-svc-img-wrap img {
  transform: scale(1.06);
}

.lp-svc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10,20,15,0.85) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Category Badge ── */
.lp-svc-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(12, 90, 62, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(59,142,111,0.5);
  color: #7FCEA8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── Card Body ── */
.lp-svc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

/* ── Icon Row ── */
.lp-svc-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59,142,111,0.15);
  border: 1px solid rgba(59,142,111,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.lp-svc-icon-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.lp-svc-subtitle {
  font-size: 0.75rem;
  color: rgba(232, 160, 181, 0.75);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ── Description ── */
.lp-svc-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ── Detail Items ── */
.lp-svc-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}

.lp-svc-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.lp-svc-detail-icon {
  color: #7FCEA8;
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.lp-svc-detail-item strong {
  color: rgba(255,255,255,0.9);
}

/* ── Benefits Tags ── */
.lp-svc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lp-svc-benefits span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(232, 160, 181, 0.1);
  border: 1px solid rgba(232, 160, 181, 0.25);
  color: rgba(232, 160, 181, 0.85);
  transition: background 0.2s ease;
}

.lp-svc-card:hover .lp-svc-benefits span {
  background: rgba(232, 160, 181, 0.18);
}

/* ── CTA Button ── */
.lp-svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7FCEA8;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease, gap 0.2s ease;
}

.lp-svc-cta:hover {
  color: #AADFC2;
  gap: 10px;
}

/* ── Footer CTA ── */
.lp-svc-footer {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lp-svc-footer p {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin: 0;
}

/* ── Responsive Breakpoints ── */
@media (max-width: 1024px) {
  .lp-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .lp-services {
    padding: 72px 0 80px;
  }
  .lp-svc-grid {
    grid-template-columns: 1fr;
  }
  .lp-services-header {
    margin-bottom: 48px;
  }
}
