/* ============================================================
   Divine Health — Premium Healthcare Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-dark:   #A8863A;
  --gold-light:  #E2C97E;
  --gold-pale:   #FBF5E6;
  --gold-border: #E8D49A;
  --navy:        #234734;
  --navy-2:      #1a3728;
  --navy-3:      #2e5c43;
  --white:       #FFFFFF;
  --off-white:   #F9F7F3;
  --light:       #F4F4F0;
  --text:        #1A1A2E;
  --text-2:      #4A4A5A;
  --text-muted:  #7A7A8A;
  --border:      #E8E8EC;
  --border-2:    #D4D4DC;
  --success:     #10B981;
  --teal:        #0EA5E9;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.18);

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --trans:      all 0.35s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
p { line-height: 1.75; color: var(--text-2); }

.serif { font-family: 'Playfair Display', Georgia, serif; }
.gold { color: var(--gold); }
.white { color: var(--white); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 100%;
  padding-left: 7%;
  padding-right: 7%;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-navy { background: var(--navy); }
.bg-navy-2 { background: var(--navy-2); }
.bg-off { background: var(--off-white); }
.bg-light { background: var(--light); }
.bg-gold-pale { background: var(--gold-pale); }

/* ---- Section Labels ---- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.label-white { color: rgba(255,255,255,0.7); }
.label-white::before { background: rgba(255,255,255,0.4); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: var(--trans);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--gold-light); }
.topbar-item svg { color: var(--gold); flex-shrink: 0; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.navbar .nav-link { color: var(--text-2); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold-dark); background: var(--gold-pale); }
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-link { color: var(--text-2); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--gold-dark); background: var(--gold-pale); }
/* Navbar Book button: always gold */
.navbar:not(.scrolled) .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.navbar:not(.scrolled) .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 2rem;
}
.nav-logo img { height: 52px; width: auto; filter: none; transition: filter 0.4s ease; }
.navbar.scrolled .nav-logo img { filter: none; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: var(--trans);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark); background: var(--gold-pale); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--trans);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  z-index: 200;
  pointer-events: none;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-2);
  font-size: 0.86rem;
  border-radius: 6px;
  transition: var(--trans);
}
.dropdown a:hover { background: var(--gold-pale); color: var(--gold-dark); padding-left: 18px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--trans); }
.navbar.scrolled .hamburger span { background: var(--text); }

/* ============================================================
   HERO — Full-width with background image
   ============================================================ */
/* ============================================================
   HERO — LIGHT VERSION (background image + cream overlay)
   ============================================================ */
.hero-bg-img { background-image: url('../images/hero-bg.jpg'); background-position: center top !important; }
.hero-light {
  background-color: #F8F8F5;
  min-height: 65vh;
}
.hero-light-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(248,248,245,0.92) 0%,
    rgba(248,248,245,0.82) 30%,
    rgba(248,248,245,0.40) 55%,
    rgba(248,248,245,0.10) 75%,
    rgba(248,248,245,0.00) 100%
  );
}
.hero-light .hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 110px 0 60px;
}
.hero-nabh-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.35);
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-light-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8942A;
  margin-bottom: 20px;
}
.hero-light-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #C9A84C;
  flex-shrink: 0;
}
.hero-light-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(255,255,255,0.6), 0 1px 4px rgba(255,255,255,0.5);
}
.hero-light-em {
  font-style: italic;
  color: #C9A84C;
  display: block;
  text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}
.hero-light-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(255,255,255,0.7);
}
.hero-light-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C9A84C;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-hero-primary:hover { background: #b8942a; transform: translateY(-2px); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid #C9A84C;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-hero-secondary:hover { background: #C9A84C; border-color: #C9A84C; color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO — OLD DARK VERSION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: none;
  will-change: auto;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 42, 0.93) 0%,
    rgba(13, 27, 42, 0.80) 50%,
    rgba(13, 27, 42, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 180px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge svg { color: var(--gold); }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.hero-light h1 { color: #1a1a1a; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-light .hero-desc { color: #444; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* Floating trust cards */
.hero-trust {
  position: absolute;
  right: 7%;
  bottom: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-trust-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite alternate;
}
.hero-trust-card:nth-child(2) { animation-delay: 2s; }
.hero-trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-trust-title { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.hero-trust-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
/* ── Hero Stats Strip ──────────────────────────── */
.hstats-wrap {
  background: #f5f7f6;
  border-top: 1px solid #e0e8e3;
  border-bottom: 1px solid #e0e8e3;
  padding: 0 5%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hstats-wrap::-webkit-scrollbar { display: none; }
.hstats-track {
  display: flex;
  align-items: stretch;
  min-width: max-content;
}
.hstat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px 28px 0;
  position: relative;
  flex-shrink: 0;
}
.hstat-item:first-child { padding-left: 0; }
.hstat-divider {
  width: 1px;
  background: #d0dbd5;
  align-self: stretch;
  margin: 16px 36px 16px 0;
  flex-shrink: 0;
}
.hstat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f0ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.hstat-body { display: flex; flex-direction: column; gap: 2px; }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.hstat-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-top: 4px;
}
.hstat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
  max-width: 160px;
}

/* Desktop: equal-width flex, no scroll, hide clones */
@media (min-width: 769px) {
  .hstats-wrap { overflow: hidden; padding: 0 5%; }
  .hstats-track { min-width: 0; justify-content: space-between; transform: none !important; transition: none !important; }
  .hstat-item { flex: 1; padding: 28px 24px; }
  .hstat-item:first-child { padding-left: 0; }
  .hstat-divider { margin: 16px 0; }
  .hstat-item.hstat-clone { display: none; }
}

/* Mobile: auto-scroll loop */
@media (max-width: 768px) {
  .hstats-wrap { padding: 0; overflow: hidden; }
  .hstats-track { min-width: 0; will-change: transform; justify-content: flex-start; }
  .hstat-item { padding: 20px 24px; gap: 12px; min-width: calc(100vw / 1.6); flex-shrink: 0; flex: none; }
  .hstat-divider { display: none; }
  .hstat-icon { width: 46px; height: 46px; }
  .hstat-num { font-size: 1.3rem; }
  .hstat-desc { max-width: 140px; font-size: 0.75rem; }
}

/* ── Trust Strip ───────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: var(--trans);
  cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--gold-pale); }
.trust-item:hover .trust-icon { background: var(--gold); box-shadow: 0 4px 14px rgba(180,140,60,.25); }
.trust-item:hover .trust-icon svg { color: var(--navy); }
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.trust-icon svg { color: var(--gold-dark); display: block; }
.trust-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-text-title { font-size: 0.87rem; font-weight: 700; color: var(--text); line-height: 1.2; white-space: nowrap; }
.trust-text-sub { font-size: 0.73rem; color: var(--text-muted); white-space: nowrap; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge .lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.about-content { padding-right: 20px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 18px; font-size: 0.97rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 36px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.about-feat:hover .about-feat-icon { background: var(--gold); }
.about-feat:hover .about-feat-icon svg { color: var(--navy); }
.about-feat-icon svg { color: var(--gold-dark); }
.about-feat-text strong { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 2px; }
.about-feat-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   TREATMENTS SECTION
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.t-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.t-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold-border); }
.t-card:hover::after { transform: scaleX(1); }
.t-card:hover .t-icon { background: var(--gold); }
.t-card:hover .t-icon svg { color: var(--navy); }
.t-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--trans);
}
.t-icon svg { color: var(--gold-dark); transition: var(--trans); }
.t-card h3 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.t-card p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.t-link { font-size: 0.78rem; font-weight: 600; color: var(--gold-dark); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ============================================================
   DOCTORS SECTION
   ============================================================ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-doctors-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ── Doctor Carousel ───────────────────────────── */
.doc-carousel-outer {
  padding: 0 5%;
}
.doc-carousel-wrap {
  overflow: hidden;
  cursor: grab;
}
.doc-carousel-wrap:active { cursor: grabbing; }
.doc-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.doc-carousel-card {
  flex-shrink: 0;
}
.doc-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.doc-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.doc-carousel-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}

/* ── Technology Section ────────────────────────── */
.tech-section { background: #f5f7f6; overflow: hidden; }
.tech-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tech-header-left p {
  margin-top: 10px;
  max-width: 480px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.tech-nav { display: flex; gap: 10px; }
.tech-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.tech-nav-btn:hover { background: var(--gold); color: #fff; transform: scale(1.08); }

/* Carousel */
.tech-carousel-outer {
  overflow: hidden;
  padding: 0 5% 8px;
}
.tech-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}

/* Card */
.tech-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tech-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* Image */
.tech-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  background: #e8f0ec;
  overflow: hidden;
  flex-shrink: 0;
}
.tech-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.tech-card:hover .tech-card-img img { transform: scale(1.05); }
.tech-img-fallback {
  background: linear-gradient(135deg, #234734 0%, #2e5c43 100%);
}
.tech-card-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tech-tag-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Body */
.tech-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tech-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.tech-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tech-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.tech-pts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.tech-pt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
}

@media (max-width: 768px) {
  .tech-header { flex-direction: column; align-items: flex-start; }
  .tech-nav { align-self: flex-start; }
  .tech-card-img { height: 180px; }
}
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.doc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.doc-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #E8EEF8, #D8E8F8);
  position: relative;
}
.doc-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.doc-card:hover .doc-card-img img { transform: scale(1.04); }
.doc-partner {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.doc-card-body { padding: 20px; }
.doc-name {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}
.doc-verified svg { color: var(--teal); }
.doc-spec { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.doc-meta-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 100px;
}
.doc-meta-tag svg { color: var(--gold-dark); flex-shrink: 0; }
.btn-book {
  width: 100%;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--gold-border);
  color: var(--gold-dark);
  background: transparent;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: var(--trans);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.btn-book:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-left { display: flex; flex-direction: column; }
.why-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item {
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
  align-items: flex-start;
}
.why-item:hover { border-color: var(--gold-border); box-shadow: 0 4px 18px rgba(180,140,60,.12); transform: translateY(-2px); }
.why-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.why-item:hover .why-item-icon { background: var(--gold); }
.why-item:hover .why-item-icon svg { color: var(--navy); }
.why-item-icon svg { color: var(--gold-dark); display: block; }
.why-item-body h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; color: var(--text); }
.why-item-body p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
}
.why-stat:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-stat.featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.why-stat.dark {
  background: var(--navy);
  border-color: var(--navy);
}
.why-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold);
}
.why-stat.featured .num { color: var(--navy); }
.why-stat .lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.why-stat.featured .lbl { color: var(--navy); opacity: 0.75; }
.why-stat.dark .lbl { color: rgba(255,255,255,0.55); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-wrap { position: relative; }
.test-slider { overflow: hidden; }
.test-track { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.test-card {
  flex-shrink: 0;
  margin-right: 0;
  box-sizing: border-box;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--trans);
}
.test-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.25); }
.test-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
.test-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.test-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.test-author-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.test-author-detail { font-size: 0.74rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  color: rgba(255,255,255,0.7);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--trans); }
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-wrap {
  background: linear-gradient(110deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 7%;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
/* Full-width CTA variant */
.cta-full { }
.cta-full-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; }
.cta-full-text { }
.cta-full-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn-main { }
.cta-trust-row { display: flex; flex-wrap: wrap; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.cta-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080F18; color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr; gap: 36px; margin-bottom: 60px; }

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.footer-logo img { height: 48px; margin-bottom: 20px; filter: brightness(1.1); }
.footer-about { font-size: 0.85rem; line-height: 1.75; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  color: rgba(255,255,255,0.5);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a svg { color: rgba(255,255,255,0.25); flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold-dark); }
.breadcrumb-inner svg { color: var(--border-2); }
.breadcrumb-inner span { color: var(--text-2); font-weight: 500; }

/* ============================================================
   INNER PAGE HERO (Treatments / Doctors)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/page-hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-top: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 14px; font-size: 1rem; max-width: 600px; }
.page-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
}
.hero-badge-item svg { color: var(--gold); }

/* ============================================================
   TREATMENT PAGE LAYOUT
   ============================================================ */
.treatment-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.treatment-main { min-width: 0; }
.treatment-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }

/* Content blocks */
.content-section { margin-bottom: 40px; }
.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
  color: var(--text);
}
.content-section h2 span { color: var(--gold-dark); }
.content-section h3 { font-size: 1.1rem; margin: 20px 0 10px; color: var(--navy-2); font-family: 'Inter', sans-serif; font-weight: 700; }
.content-section p { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.content-section ul { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.content-section ul li::before { content: none; }
.content-section ul li strong { color: var(--text); }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; margin-top: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cost-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-size: 0.82rem; font-weight: 600; text-align: left; }
.cost-table td { padding: 13px 18px; font-size: 0.88rem; border-bottom: 1px solid var(--border); color: var(--text-2); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--off-white); }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-card-head {
  background: var(--navy);
  padding: 20px 24px;
  color: var(--white);
}
.sidebar-card-head h3 { font-size: 1rem; color: var(--white); font-family: 'Inter', sans-serif; }
.sidebar-card-head p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.sidebar-card-body { padding: 24px; }

/* Form elements */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control { appearance: none; cursor: pointer; }

/* Sidebar doctor card */
.sidebar-doctor { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sidebar-doctor img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--gold-border);
}
.sidebar-doctor-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.sidebar-doctor-spec { font-size: 0.76rem; color: var(--gold-dark); font-weight: 600; }
.sidebar-doctor-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 3px; }

/* Sidebar info items */
.sidebar-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-2);
}
.sidebar-info-item:last-child { border-bottom: none; }
.sidebar-info-item svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 1px; }
.sidebar-info-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2px; }

/* Urgency badge */
.urgency-badge {
  background: linear-gradient(135deg, var(--gold-pale), #FFF8E7);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gold-dark);
}
.urgency-badge svg { color: var(--gold-dark); flex-shrink: 0; }

/* ============================================================
   DOCTOR PROFILE PAGE
   ============================================================ */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.profile-main { min-width: 0; }
.profile-hero-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.profile-img-wrap {
  width: 180px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold-border);
}
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.profile-verified svg { color: var(--teal); }
.profile-spec { color: var(--gold-dark); font-weight: 600; font-size: 1rem; margin-bottom: 16px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-2);
}
.profile-tag svg { color: var(--gold-dark); flex-shrink: 0; }
.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.profile-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.profile-section h3 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-section h3 svg { color: var(--gold-dark); }
.profile-about-text { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; }
.profile-spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
  border-left: 3px solid var(--gold);
}
.profile-spec-item svg { color: var(--gold-dark); flex-shrink: 0; }
.profile-edu-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.profile-edu-item:last-child { border-bottom: none; padding-bottom: 0; }
.profile-edu-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}
.profile-edu-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.55; }
.profile-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.profile-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.profile-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.profile-stat .lbl { font-size: 0.72rem; color: var(--text-muted); }

.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}
.review-card:last-child { margin-bottom: 0; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-name { font-size: 0.88rem; font-weight: 700; }
.review-date { font-size: 0.72rem; color: var(--text-muted); }
.review-stars { color: #F59E0B; font-size: 0.82rem; margin-bottom: 8px; }
.review-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--gold-border); }
.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--trans);
  line-height: 1.4;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { background: var(--gold-pale); color: var(--gold-dark); }
.faq-item.open .faq-q { background: var(--gold-pale); color: var(--gold-dark); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-a.open { max-height: 320px; }
.faq-a-inner { padding: 0 20px 18px; }

/* ============================================================
   APPOINTMENT MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 24, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-backdrop.open { display: flex; align-items: center; justify-content: center; opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9001;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-head {
  background: var(--navy);
  padding: 28px 32px 24px;
  position: relative;
}
.modal-head h3 { color: var(--white); font-size: 1.2rem; }
.modal-head p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 4px; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--trans);
}
.modal-close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.modal-body { padding: 28px 32px; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--trans);
  z-index: 500;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* =============================================
   MOBILE FLYOUT DRAWER
   ============================================= */
.mob-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 1100; opacity: 0; transition: opacity .3s;
}
.mob-overlay.open { display: block; opacity: 1; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw;
  background: var(--white); z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  background: var(--navy);
}
.mob-close {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; border: none; transition: background .2s;
}
.mob-close:hover { background: rgba(255,255,255,.25); }

.mob-nav { flex: 1; overflow-y: auto; padding: 12px 0; }

.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 20px; font-size: .95rem; font-weight: 600;
  color: var(--text); text-decoration: none; border: none; background: none;
  width: 100%; cursor: pointer; transition: background .15s, color .15s;
  border-bottom: 1px solid var(--border);
}
.mob-link:hover { background: var(--gold-pale); color: var(--gold-dark); }
.mob-link > span { display: flex; align-items: center; gap: 12px; }

.mob-acc-arrow { transition: transform .25s; flex-shrink: 0; }
.mob-treat-right { display: flex; align-items: center; gap: 8px; font-weight: 600; }

.mob-acc-body { display: none; background: var(--off-white); }
.mob-acc-body.open { display: block; }
.mob-sub-link {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 11px 20px; font-size: .88rem; color: var(--text-2);
  text-decoration: none; border-bottom: 1px solid var(--border); transition: color .15s, background .15s;
}
.mob-sub-link:hover { color: var(--gold-dark); background: var(--gold-pale); }

.mob-drawer-footer {
  padding: 16px 20px; border-top: 1px solid var(--border); background: var(--off-white);
}
.mob-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 8px; border: 1.5px solid var(--border-2);
  font-size: .9rem; font-weight: 700; color: var(--navy); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.mob-call-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Hide drawer on desktop */
.mob-drawer, .mob-overlay { display: none; }
@media (max-width: 768px) {
  .mob-overlay { display: block; opacity: 0; pointer-events: none; }
  .mob-overlay.open { pointer-events: all; opacity: 1; }
  .mob-drawer { display: flex; }
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1200px) {
  .treatments-grid { grid-template-columns: repeat(4, 1fr); }
  .doctors-grid { grid-template-columns: repeat(3, 1fr); }
  .home-doctors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .treatment-layout,
  .profile-layout { grid-template-columns: 1fr; }
  .treatment-sidebar,
  .profile-sidebar { position: static; }
  .about-grid,
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 320px; }
  .hero-trust { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .profile-spec-list { grid-template-columns: 1fr; }
  .profile-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .why-image-wrap img { height: 400px; }
  .why-badge, .why-badge-2 { display: none; }
}

@media (max-width: 768px) {
  /* Layout */
  .container { padding-left: 4%; padding-right: 4%; }
  .section { padding: 56px 0; }

  /* Nav — hide desktop menu, show hamburger */
  .nav-menu { display: none !important; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-book-btn { display: none !important; }
  .topbar { display: none; }

  /* Hero */
  .nav-logo img { height: 55px; }
  .nav-inner { padding: 20px 0; }
  .hero { min-height: auto; }
  .hero-bg { background-position: 60% center; }
  .hero-content { padding: 100px 0 60px; max-width: 100%; }

  /* Mobile hero: portrait image, content pinned to bottom on dark gradient */
  .hero-light { min-height: 88vh; display: flex; flex-direction: column; }
  .hero-light > .container { display: flex; flex-direction: column; flex: 1; position: relative; z-index: 2; }
  .hero-bg { background-position: center top; }
  .hero-bg-img { background-image: url('../images/hero-mobile.jpg') !important; background-size: cover; }
  .hero-light-overlay {
    background: linear-gradient(
      to top,
      rgba(15,10,5,0.95) 0%,
      rgba(15,10,5,0.85) 30%,
      rgba(15,10,5,0.40) 58%,
      rgba(15,10,5,0.00) 100%
    );
  }
  .hero-light .hero-content {
    padding: 0 0 40px;
    max-width: 100%;
    margin-top: auto;
  }
  .hero-nabh-badge { display: none; }
  .hero-light-label { font-size: 0.68rem; margin-bottom: 10px; color: #C9A84C; }
  .hero-light-heading {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem); margin-bottom: 12px; color: #fff !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
  }
  .hero-light-em { color: #C9A84C; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
  .hero-light-desc {
    font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px;
    color: rgba(255,255,255,0.90); text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  }
  .hero-light-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .btn-hero-primary { padding: 12px 20px; font-size: 0.88rem; flex: 1; justify-content: center; min-width: 130px; }
  .btn-hero-secondary {
    padding: 11px 20px; font-size: 0.88rem; flex: 1; justify-content: center; min-width: 130px;
    color: #fff; border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.12);
  }
  .hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }

  /* Trust strip — 2 columns */
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; flex-direction: unset; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 12px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Grids */
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .home-doctors-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer — 2 columns on tablet, brand spans full width */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }

  /* Contact page */
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-card { position: static !important; }

  /* Doctor profile */
  .profile-hero-card { flex-direction: column; text-align: center; }
  .profile-img-wrap { width: 120px; height: 140px; margin: 0 auto; }
  .profile-hero-badges { justify-content: center; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; }
  .why-features-grid { grid-template-columns: 1fr; }
  .why-image-wrap img { height: 260px; }

  /* Home blog */
  .home-blog-grid { grid-template-columns: 1fr 1fr !important; }

  /* Blog page */
  .blog-page-layout { grid-template-columns: 1fr; }
  .blog-page-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img img { min-height: 200px; }
  .blog-cards-grid { grid-template-columns: 1fr; }
  .blog-hero-cats { gap: 8px; }
  .blog-hero-pill { font-size: .78rem; padding: 6px 14px; }

  /* GCA stats */
  .gcta-stats { flex-wrap: wrap; gap: 16px; }
  .gcta-stat-divider { display: none; }
  .gcta-content { max-width: 100% !important; }

  /* Sections general */
  h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}

@media (max-width: 480px) {
  .container { padding-left: 5%; padding-right: 5%; }
  .treatments-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .doctors-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .home-blog-grid { grid-template-columns: 1fr !important; }
  .blog-hero-title { font-size: 1.6rem; }
  .gcta-btns { flex-direction: column; gap: 10px; }
  .gcta-btn { justify-content: center; text-align: center; }
  .profile-stats { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 0 4%; }
  /* Footer single column on very small screens */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Contact info 1 col on very small */
  .contact-info-grid { grid-template-columns: 1fr; }
  /* About grid feature cards 1 col */
  .about-grid { grid-template-columns: 1fr; }
  /* Mission/vision cards stack */
  .mvv-grid { grid-template-columns: 1fr !important; }
  .why-features-grid { grid-template-columns: 1fr; }
}

/* ---- Doctor Card Extras ---- */
.doc-card-img { position: relative; overflow: hidden; }
.doc-card-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s var(--ease); }
.doc-card:hover .doc-card-overlay { opacity: 1; }
.doc-dept-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--gold-light); font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; }

/* ---- Filter Buttons ---- */
.filter-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn { padding: 9px 20px; border-radius: 24px; border: 1.5px solid var(--border-2); background: transparent; font-size: 0.82rem; font-weight: 600; color: var(--text-2); cursor: pointer; transition: var(--trans); }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

/* ---- Treatments List Page ---- */
.treatment-list-card { display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: var(--trans); text-decoration: none; color: inherit; }
.treatment-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-border); }
.treatment-list-img { width: 180px; flex-shrink: 0; }
.treatment-list-img img { width: 100%; height: 100%; object-fit: cover; }
.treatment-list-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.treatment-list-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.treatment-list-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.treatment-list-link { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); margin-top: 4px; transition: gap 0.2s; }
.treatment-list-card:hover .treatment-list-link { gap: 10px; }

/* ---- Page Hero extras ---- */
.hero-badge-item { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 24px; }
.hero-badge-item svg { color: var(--gold-light); }

/* ---- Background utility ---- */
.bg-off { background: var(--off-white); }

@media (max-width: 900px) {
  .treatment-list-card { flex-direction: column; }
  .treatment-list-img { width: 100%; height: 160px; }
}

/* ---- Why Us — image right ---- */
.why-right { display: flex; align-items: center; }
.why-image-wrap { position: relative; border-radius: 20px; overflow: visible; box-shadow: 0 24px 64px rgba(0,0,0,.14); width: 100%; }
.why-image-wrap img { width: 100%; height: 560px; object-fit: cover; object-position: center; display: block; border-radius: 20px; }
.why-image-stat { display: none; }
.why-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  text-align: center;
  min-width: 120px;
}
.why-badge-2 {
  bottom: auto;
  top: 28px;
  left: auto;
  right: -22px;
}
.why-badge-num { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; font-family: var(--font-serif); }
.why-badge-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* Testimonial slider — card widths are set by JS setCardWidths() to exact pixels */
.slider-controls-top { display: flex; gap: 10px; }
.slider-dots-wrap { display: flex; justify-content: center; margin-top: 28px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; }
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ---- Doctor card image clickable (no overlay) ---- */
.doc-card-img-link { display: block; }
.doc-card-img-hover { display: none; }
.doc-card-img-link:hover img { transform: scale(1.04); transition: transform 0.4s ease; }

/* ---- Partner Hospitals ---- */
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.hosp-carousel-wrap { width: 100%; }
.hosp-carousel-viewport { overflow: hidden; width: 100%; }
.hosp-carousel-track { display: flex; gap: 16px; will-change: transform; }
.hosp-carousel-track .hosp-carousel-card { flex: 0 0 calc((100% - 4.5 * 16px) / 4.5); min-width: 0; }
.hosp-carousel-btns { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.hosp-carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); background: var(--white); color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.hosp-carousel-btn:hover { background: var(--gold); color: var(--white); }
.partner-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 16px; text-align: center; transition: var(--trans); overflow: hidden; }
.partner-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow); transform: translateY(-3px); }
.partner-logo { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; }
.partner-logo img { height: 88px; width: auto; max-width: 100%; object-fit: contain; display: block; flex-shrink: 0; }
.partner-logo-fallback { width: 44px; height: 44px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.partner-name { font-size: 1.08rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 6px; }
.partner-rating { display: flex; align-items: center; gap: 4px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.partner-rating-num { font-size: 0.92rem; font-weight: 700; color: #C9A84C; }
.partner-rating-reviews { font-size: 0.82rem; color: var(--text-muted); }
.partner-loc { font-size: 0.84rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ---- Responsive updates ---- */
@media (max-width: 1100px) { .partners-grid { grid-template-columns: repeat(4, 1fr) !important; } }
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .why-image-wrap img { height: 380px; }
  .why-features-grid { grid-template-columns: 1fr; }
  .why-badge { left: 10px; }
  .why-badge-2 { right: 10px; }
}
@media (max-width: 640px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ---- CTA Split layout ---- */
.cta-split {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.cta-split-left { flex: 1; min-width: 0; padding-right: 60px; }
.cta-split-right { width: 380px; flex-shrink: 0; padding-left: 60px; border-left: 1px solid rgba(255,255,255,0.1); }
.cta-contact-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-xl); padding: 32px; }
.cta-contact-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cta-contact-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-phone-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; letter-spacing: -0.01em; }
.cta-phone-number:hover { color: var(--gold-light); }
.cta-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 18px 0; }
.cta-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cta-stat { text-align: center; padding: 10px 4px; }
.cta-stat-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.cta-stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.cta-address { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

@media (max-width: 1100px) { .cta-split-right { width: 340px; } }
@media (max-width: 900px) { .cta-split { flex-direction: column; } .cta-split-left { padding-right: 0; } .cta-split-right { width: 100%; padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; } }

/* ---- Non-hero pages need offset for fixed navbar only (topbar scrolls) ---- */
.breadcrumb { padding-top: 90px; }
.page-hero { padding-top: 50px; }

/* ---- Navbar starts below topbar, rises to top:0 as topbar scrolls away ---- */
.navbar { top: 40px; }
.hero-content { padding-top: 110px !important; padding-bottom: 60px; }

/* ============================================================
   Doctor Page — New Sections
   ============================================================ */

/* Consult Banner */
.consult-banner-wrap {
  margin: 24px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans);
}
.consult-banner-wrap:hover { opacity: 0.93; }

/* Hospital Associated Cards */
.hospital-assoc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  transition: var(--trans);
}
.hospital-assoc-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow); }
.hospital-assoc-info { flex: 1; min-width: 0; }
.hospital-assoc-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.hospital-assoc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.hospital-assoc-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.hospital-assoc-nabh { background: #EEF9F0; color: #1a7a3a; font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; border: 1px solid #b3dfbd; letter-spacing: 0.06em; }
.hospital-assoc-location { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.hospital-assoc-action { flex-shrink: 0; }
@media (max-width: 640px) { .hospital-assoc-card { flex-direction: column; align-items: flex-start; } }

/* Doctor Review Slider */
.dr-review-slider { overflow: hidden; width: 100%; }
.dr-review-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.dr-review-card {
  flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  box-sizing: border-box;
  width: calc(50% - 10px);
  min-width: calc(50% - 10px);
}
@media (max-width: 640px) {
  .dr-review-card { width: 100%; min-width: 100%; }
}

/* Slider nav button */
.slider-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  color: var(--text-2);
  padding: 0;
}
.slider-nav-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* FAQ inside profile page */
.profile-section .faq-list { margin-top: 8px; }

/* ============================================================
   Doctor Hero — photo + details in dark banner
   ============================================================ */
.doc-hero { padding-top: 60px; padding-bottom: 60px; }
.doc-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.doc-hero-photo {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(201,168,76,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.doc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doc-hero-info { flex: 1; min-width: 0; }
.doc-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 4px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc-hero-spec {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}
.doc-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans);
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); color: var(--white); }

@media (max-width: 768px) {
  .doc-hero { padding-top: 40px; padding-bottom: 40px; }
  .doc-hero-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .doc-hero-photo { width: 100%; max-width: 300px; height: 320px; border-radius: var(--radius-lg); }
  .doc-hero-name { font-size: 1.8rem; justify-content: center; flex-wrap: wrap; }
  .doc-hero-spec { font-size: 0.88rem; }
  .doc-hero-inner .page-hero-badges { justify-content: center; }
  .doc-hero-actions { justify-content: center; }
  .doc-hero-actions .btn { font-size: 0.85rem; padding: 10px 18px; }
}

/* ============================================================
   Blog Styles
   ============================================================ */

/* Homepage blog grid */
.home-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.home-blog-card { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.06); transition:transform .2s,box-shadow .2s; }
.home-blog-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,.1); }
.home-blog-img { aspect-ratio:16/9; overflow:hidden; }
.home-blog-img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.home-blog-card:hover .home-blog-img img { transform:scale(1.04); }
.home-blog-body { padding:20px; }
.home-blog-cat { display:inline-block; background:rgba(37,99,235,.08); color:var(--primary); font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; padding:3px 10px; border-radius:20px; text-decoration:none; margin-bottom:10px; }
.home-blog-title { font-size:1rem; font-weight:700; line-height:1.45; margin:0 0 10px; }
.home-blog-title a { color:var(--text); text-decoration:none; }
.home-blog-title a:hover { color:var(--primary); }
.home-blog-meta { font-size:0.82rem; color:var(--text-muted); margin-bottom:14px; }
.home-blog-link { font-size:0.85rem; font-weight:600; color:var(--primary); text-decoration:none; }
.home-blog-link:hover { text-decoration:underline; }

@media(max-width:900px){ .home-blog-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:580px){ .home-blog-grid { grid-template-columns:1fr; } }

/* ============================================================
   Global CTA Section — full-width banner with image right
   ============================================================ */
.gcta {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: var(--navy);
  padding: 72px 0 56px;
}
.gcta-overlay {
  position: absolute;
  inset: 0;
  /* strong on left (content readable), fades right (image visible) */
  background: linear-gradient(
    95deg,
    rgba(35,71,52,.92) 0%,
    rgba(35,71,52,.82) 40%,
    rgba(35,71,52,.52) 65%,
    rgba(35,71,52,.20) 100%
  );
  z-index: 1;
}
.gcta-inner {
  position: relative;
  z-index: 2;
}
/* Content block — left 55% */
.gcta-content {
  max-width: 58%;
}
/* Heading */
.gcta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin: 0 0 20px;
}
/* Sub */
.gcta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin: 0 0 36px;
  font-family: 'Inter', sans-serif;
}
/* Buttons row */
.gcta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.gcta-btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.gcta-btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
}
.gcta-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.gcta-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
/* Stats row — horizontal with dividers */
.gcta-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.gcta-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 32px;
}
.gcta-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  margin-right: 32px;
  flex-shrink: 0;
}
.gcta-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.gcta-stat-text {}
.gcta-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.gcta-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 500;
}
/* Responsive */
@media (max-width: 1024px) {
  .gcta-content { max-width: 70%; }
}
@media (max-width: 768px) {
  .gcta { background-position: center; }
  .gcta-overlay { background: rgba(35,71,52,.88); }
  .gcta-content { max-width: 100%; }
  .gcta-stats { flex-wrap: wrap; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
  .gcta-stat { padding-right: 0; }
  .gcta-stat-divider { display: none; }
}
@media (max-width: 480px) {
  .gcta-btns { flex-direction: column; }
  .gcta-btn { justify-content: center; }
  .gcta-heading { font-size: 2rem; }
}

/* =============================================
   ABOUT PAGE GRID CLASSES
   ============================================= */
.about-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-vals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.about-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }

@media (max-width: 768px) {
  .about-main-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-main-grid > div:first-child { order: 2; }
  .about-main-grid > div:last-child { order: 1; }
  .about-mvv-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .about-vals-grid { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   TREATMENT PAGE — HERO IMAGE + MID CONTENT IMAGE
   ============================================= */
.treat-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 48px;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.treat-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
  min-height: 280px;
  max-width: 100%;
  min-width: 0;
}
.treat-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}
.content-img-block {
  margin: 8px 0 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.content-img-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.content-img-caption {
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px 16px;
  margin: 0;
  font-style: italic;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .treat-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .treat-hero-img {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .treat-hero-img img { width: 100%; max-width: 100%; }
  .content-img-block img { height: 220px; }
}
@media (max-width: 768px) {
  .hosp-carousel-track .hosp-carousel-card { flex: 0 0 calc((100% - 1.3 * 16px) / 1.3); }
}
@media (max-width: 600px) {
  .treat-hero-grid { gap: 20px; overflow: hidden; }
  .treat-hero-img {
    aspect-ratio: 4/3;
    border-radius: 14px;
    margin: 0;
  }
}

/* =============================================
   DOCTORS PAGE — FILTER PILLS
   ============================================= */
.doc-filter-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.doc-filter-pill {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.22);
  background: transparent; color: rgba(255,255,255,.65);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.doc-filter-pill:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold-light); }
.doc-filter-pill.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 700; }
.doc-result-count {
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; font-weight: 500;
}
@media (max-width: 600px) {
  .doc-filter-pills { gap: 8px; }
  .doc-filter-pill { font-size: .78rem; padding: 7px 14px; }
}

/* =============================================
   HOMEPAGE — CONTACT US SECTION
   ============================================= */
.hcontact-section { background: #f5f7f6; }

.hcontact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

/* Info cards column */
.hcontact-info { display: flex; flex-direction: column; gap: 16px; }

.hci-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f8faf9; border: 1px solid #e0e8e3;
  border-radius: 16px; padding: 20px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.hci-card-link {
  text-decoration: none; color: inherit; cursor: pointer;
}
.hci-card-link:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(35,71,52,.10); }

.hci-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hci-body { flex: 1; }
.hci-label { font-size: 0.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.hci-value { font-size: 0.97rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.hci-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.83rem; font-weight: 600; color: var(--navy);
  margin-top: 8px; text-decoration: none;
  transition: gap .2s;
}
.hci-link:hover { gap: 9px; }
.hci-link-wa { color: #25D366; }

/* Form card */
.hcontact-form-wrap {}
.hcontact-form-card {
  background: #fff; border: 1px solid #e0e8e3;
  border-radius: 20px; padding: 36px 36px 32px;
  box-shadow: 0 8px 40px rgba(35,71,52,.07);
}

.hcf-header { margin-bottom: 28px; }
.hcf-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.hcf-header p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.hcf-form { display: flex; flex-direction: column; gap: 16px; }

.hcf-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.hcf-field { display: flex; flex-direction: column; gap: 6px; }
.hcf-field label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.hcf-field input,
.hcf-field select,
.hcf-field textarea {
  border: 1.5px solid #dde5e0; border-radius: 10px;
  padding: 11px 14px; font-size: 0.92rem; font-family: inherit;
  color: var(--text); background: #fafcfb;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.hcf-field input:focus,
.hcf-field select:focus,
.hcf-field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(35,71,52,.08);
}
.hcf-field textarea { resize: vertical; min-height: 80px; }
.hcf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.hcf-submit {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--navy); color: #fff; border: none; border-radius: 50px;
  padding: 14px 32px; font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background .2s, transform .15s;
  margin-top: 4px;
}
.hcf-submit:hover { background: var(--navy-2); transform: translateY(-1px); }

.hcf-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-muted); margin-top: 4px;
}

.hcf-success {
  flex-direction: column; align-items: center; text-align: center;
  padding: 32px 16px; gap: 12px;
}
.hcf-success h4 { font-size: 1.2rem; color: var(--navy); margin: 0; }
.hcf-success p  { font-size: 0.92rem; color: var(--text-muted); margin: 0; max-width: 280px; }

/* Map */
.hcontact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.08); }

/* Responsive */
@media (max-width: 900px) {
  .hcontact-grid { grid-template-columns: 1fr; gap: 28px; }
  .hcontact-form-card { padding: 28px 20px 24px; }
}
@media (max-width: 600px) {
  .hcf-row-2 { grid-template-columns: 1fr; }
  .hci-card { padding: 16px 18px; }
  .hci-icon { width: 40px; height: 40px; border-radius: 10px; }
}

/* Contact Us — Social media row */
.hci-social-row {
  display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap;
}
.hci-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.hci-social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.18); }

input[type="date"] { width: 100%; box-sizing: border-box; }

@media (max-width: 480px) {
  .modal { width: 96%; }
  .modal-head { padding: 20px 18px 16px; }
  .modal-body { padding: 20px 18px; }
  .modal-body .form-control,
  .modal-body input[type="date"],
  .modal-body select,
  .modal-body textarea { width: 100%; box-sizing: border-box; max-width: 100%; }
}
