/* ========================================
   Dr. Sireesha M.U.R.S — Landing Page CSS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── CSS Variables — Scheme A: Deep Navy & Warm Gold ── */
:root {
  --navy: #028879;
  --teal: #26A498;
  --teal-light: #4BB2A9;
  --gold: #e8a838;
  --gold-light: #f0c060;
  --cream: #f0f5ff;
  --white: #ffffff;
  --text-dark: #0c1a3a;
  --text-mid: #000000;
  --text-muted: #000000;
  --border: rgba(232, 168, 56, 0.25);
  --shadow-sm: 0 4px 20px rgba(15, 35, 81, 0.08);
  --shadow-md: 0 8px 40px rgba(15, 35, 81, 0.13);
  --shadow-lg: 0 20px 60px rgba(15, 35, 81, 0.20);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}

p {
  color: var(--text-mid);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Utility ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 1.75rem;
}

.gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.8;
}

/* ── Navbar ── */
.navbar-custom {
  background: var(--navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 168, 56, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand-custom {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.brand-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-link-custom {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition) !important;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-link-custom:hover {
  color: var(--white) !important;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  border: none;
  border-radius: var(--radius);
  padding: 0.45rem 1.2rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.jbsjdknadj{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  border: none;
  border-radius: var(--radius);
  padding: 0.45rem 1.2rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 168, 56, 0.4);
}

.navbar-toggler-custom {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
}

.navbar-toggler-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(3, 105, 91, 1) 55%, #0a1a40 100%, #0a1a40 0%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(36, 74, 199, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 1) 60px, rgba(255, 255, 255, 1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 1) 60px, rgba(255, 255, 255, 1) 61px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232, 168, 56, 0.12);
  border: 1px solid rgba(232, 168, 56, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.4rem;
  margin-top: 3.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-description {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-description strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(232, 168, 56, 0.3);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.hero-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-image-accent::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: 50%;
}

.hero-hospital-badge {
  position: absolute;
  top: -52px;
  right: -16px;
  z-index: 3;
  background: var(--navy);
  border: 1px solid rgba(232, 168, 56, 0.4);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}

.hospital-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hospital-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.3;
}

.hospital-loc {
  font-size: 0.68rem;
  color: var(--gold-light);
  display: block;
}

/* ── About / Qualifications ── */
.about {
      background: var(--white);
      padding: 90px 5%;
    }
 
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 5rem;
      align-items: start;
    }
 
    /* Left column — photo + name */
    .about-photo-col {
      position: sticky;
      top: 40px;
    }
 
    .about-photo-box {
      background: var(--cream);
      border: 2px dashed rgba(36, 74, 199, 0.25);
      border-radius: 14px;
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      transition: border-color var(--transition);
      margin-top: 3.6rem;
    }
 
    .about-photo-box:hover {
      border-color: rgba(232, 168, 56, 0.5);
    }
 
    .about-photo-box i {
      font-size: 2.5rem;
      color: var(--teal-light);
      opacity: 0.5;
    }
 
    .about-photo-box p {
      font-size: 0.82rem;
      text-align: center;
      color: var(--text-muted);
    }
 
    .about-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 0.3rem;
    }
 
    .about-title-tag {
      font-size: 0.83rem;
      color: #000;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
 
    /* Credential chips below name */
    .about-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.1rem;
    }
 
    .about-chip {
      display: inline-block;
      background: rgba(36, 74, 199, 0.07);
      border: 1px solid rgba(36, 74, 199, 0.18);
      color: var(--teal);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 4px 12px;
      border-radius: 100px;
    }
 
    /* Right column — content */
    .about-intro {
      font-size: 1.02rem;
      line-height: 1.85;
      color: var(--text-mid);
      margin-bottom: 2rem;
    }
 
    /* Qualifications table */
    .qual-section-title {
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid rgba(15, 35, 81, 0.08);
    }
 
    .qual-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2.5rem;
    }
 
    .qual-table tr {
      border-bottom: 1px solid rgba(15, 35, 81, 0.06);
      transition: background var(--transition);
    }
 
    .qual-table tr:last-child { border-bottom: none; }
 
    .qual-table tr:hover {
      background: var(--cream);
    }
 
    .qual-table td {
      padding: 0.9rem 0.5rem;
      font-size: 0.9rem;
      vertical-align: top;
    }
 
    .qual-table td:first-child {
      width: 38px;
      color: var(--gold);
      font-size: 1.05rem;
      padding-right: 1rem;
      padding-top: 1rem;
    }
 
    .qual-degree {
      font-weight: 600;
      color: var(--navy);
      display: block;
      margin-bottom: 0.2rem;
    }
 
    .qual-inst {
      color: var(--text-muted);
      font-size: 0.83rem;
      display: block;
    }
 
    .qual-badge {
      display: inline-block;
      margin-top: 0.4rem;
      background: rgba(232, 168, 56, 0.12);
      color: #8a5a00;
      border: 1px solid rgba(232, 168, 56, 0.35);
      padding: 2px 10px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
 
    /* Memberships */
    .memberships-list {
      list-style: none;
      margin-bottom: 2.5rem;
    }
 
    .memberships-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.65rem 0;
      font-size: 0.9rem;
      color: var(--text-mid);
      border-bottom: 1px solid rgba(15, 35, 81, 0.05);
      transition: color var(--transition);
    }
 
    .memberships-list li:last-child { border-bottom: none; }
 
    .memberships-list li:hover { color: var(--navy); }
 
    .memberships-list i {
      color: var(--gold);
      margin-top: 4px;
      font-size: 1rem;
      flex-shrink: 0;
    }
 
    /* Doctor quote */
    .doctor-quote {
      border-left: 4px solid var(--teal);
      background: linear-gradient(135deg, rgba(15, 35, 81, 0.03) 0%, rgba(36, 74, 199, 0.04) 100%);
      padding: 1.4rem 1.6rem;
      border-radius: 0 10px 10px 0;
      margin-top: 0.5rem;
      position: relative;
    }
 
    .doctor-quote::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: rgba(232, 168, 56, 0.15);
      position: absolute;
      top: -0.5rem;
      left: 1rem;
      line-height: 1;
      pointer-events: none;
    }
 
    .doctor-quote p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1rem;
      color: #000;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
 
    .doctor-quote cite {
      display: block;
      margin-top: 0.85rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      font-style: normal;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .about-photo-col {
        position: static;
      }
      .about-photo-box {
        aspect-ratio: 16/9;
        max-height: 260px;
      }
      .advantage-pillar{
        height: auto;
      }
    }
 
    @media (max-width: 480px) {
      .about { padding: 60px 5%; }
    }

/* ── Specialist Advantage ── */
.advantage-section {
  padding: 100px 0;
  background: var(--cream);
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 35, 81, 0.07);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comparison-card.featured {
  border-color: var(--teal);
  position: relative;
}

.comparison-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--teal);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 6px 6px;
}

.card-role-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}

.card-role-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.card-feature-list {
  list-style: none;
  padding: 0;
}

.card-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: #000;
  border-bottom: 1px solid rgba(15, 35, 81, 0.05);
}

.card-feature-list li:last-child {
  border-bottom: none;
}

.card-feature-list li i {
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.li-check i {
  color: var(--teal);
}

.li-neutral i {
  color: var(--text-muted);
}

.advantage-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
  height: 13rem;
}

.advantage-pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.pillar-text {
  font-size: 0.88rem;
  color: #000;
  line-height: 1.7;
}

/* ── Services ── */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(15, 35, 81, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon i {
  color: white;
  font-size: 1.4rem;
}

.service-focus {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-content {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.service-benefit {
  font-size: 0.84rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: rgba(36, 74, 199, 0.06);
  border-radius: var(--radius);
  border-left: 2px solid var(--teal-light);
}

/* ── Second Opinions ── */
.second-opinion-section {
  padding: 100px 0;
  background: var(--cream);
}

.so-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

.so-step:hover {
  transform: translateX(4px);
}

.so-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.so-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.so-step-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.reason-item {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.reason-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.reason-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tele-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(36, 74, 199, 0.1), rgba(74, 111, 212, 0.1));
  border: 1px solid rgba(36, 74, 199, 0.25);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1.5rem;
}

/* ── Robotic Surgery ── */
.robotic-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a40 100%);
  position: relative;
  overflow: hidden;
}

.robotic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(36, 74, 199, 0.25) 0%, transparent 65%);
}

.robotic-section .section-label {
  color: var(--gold-light);
}

.robotic-section .section-title {
  color: var(--white);
}

.robotic-section .section-subtitle {
  color: rgba(255, 255, 255, 1);
}

.robotic-section .gold-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.robotic-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2rem;
}

.robotic-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.robotic-feature:last-of-type {
  border-bottom: none;
}

.rf-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 168, 56, 0.15);
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rf-icon i {
  color: var(--gold-light);
  font-size: 1rem;
}

.rf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.rf-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
}

.patient-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pb-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: background var(--transition);
}

.pb-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pb-card i {
  font-size: 1.4rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.6rem;
}

.pb-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.pb-card span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}

/* ── Fertility ── */
.fertility-section {
  padding: 100px 0;
  background: var(--white);
}

.fert-protocol {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(15, 35, 81, 0.06);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.fert-protocol:hover {
  border-color: var(--teal-light);
}

.fert-protocol-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fert-protocol-title i {
  color: var(--teal);
  font-size: 0.9rem;
}

.fert-protocol-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.candidate-box {
  background: linear-gradient(135deg, var(--navy), #0d1e48);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
}

.candidate-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.candidate-box strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--navy), #0a1a40);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(36, 74, 199, 0.35) 0%, transparent 70%);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}

.cta-actions {
  position: relative;
}

/* ── Footer ── */
.footer-custom {
  background: var(--navy);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(232, 168, 56, 0.15);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 260px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(36, 74, 199, 0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
  border: none;
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(36, 74, 199, 0.55);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-image-frame img,
  .hero-image-placeholder {
    height: 380px;
  }

  .hero-hospital-badge {
    display: none;
  }

  .about-section,
  .advantage-section,
  .services-section,
  .second-opinion-section,
  .robotic-section,
  .fertility-section,
  .cta-section {
    padding: 70px 0;
  }

  .patient-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-image-wrap {
    margin-top: 3rem;
  }

  .hero-image-frame img,
  .hero-image-placeholder {
    height: auto;
  }

  .patient-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .so-step,
  .reason-item,
  .fert-protocol {
    padding: 1rem 1.1rem;
  }

  .philosophy-card {
    padding: 1.75rem;
  }

  .philosophy-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .patient-benefit-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.65rem;
  }
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
 
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
 
.whatsapp-float svg {
  flex-shrink: 0;
}
 
/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
 
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
 
/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #0f2351;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
 
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0f2351;
  border-right: none;
}
 
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.hero-image-placeholder .appointment-form {
  flex: 1.2;
  padding: 30px;
}

.hero-image-placeholder .appointment-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000;
}

.hero-image-placeholder .form-group {
  margin-bottom: 20px;
}

.hero-image-placeholder .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
  font-size: 0.8rem;
}

.dhbndhfjdfserer button{
  background: var(--navy);
  color: #fff;
}

.hero-image-placeholder input,
.hero-image-placeholder select,
.hero-image-placeholder textarea {
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--primary-blue);
  border-radius: 10px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.hero-image-placeholder input:focus,
.hero-image-placeholder select:focus,
.hero-image-placeholder textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .hero-image-placeholder .contact-info, .hero-image-placeholder .appointment-form {
    padding: 40px 20px;
  }
}

 
@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 1.25rem;
    bottom: 5.5rem;
    width: 50px;
    height: 50px;
  }
}