/* ─────────────────────────────────────────────
   AL NOOR HOSPITAL THEME — HEADER & FOOTER CSS
───────────────────────────────────────────── */

:root {
  --rose:        #c8657a;
  --rose-deep:   #a04558;
  --rose-pale:   #fdf0f2;
  --rose-mid:    #f3d0d6;
  --dark:        #1c1a1b;
  --navy:        #0f1628;
  --navy-2:      #131c35;
  --text:        #3d3338;
  --muted:       #8a7880;
  --border:      #e8d8dc;
  --white:       #fff;
  --light:       #fdf8f8;
  --teal:        #3d7d7a;
  --teal-pale:   #edf5f4;
  --ff-head:     'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(200,101,122,.12);
  --shadow-lg:   0 12px 48px rgba(200,101,122,.18);
  --transition:  all .25s ease;
  --max-width:   1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ══════════════════════════════════
   TOPBAR
══════════════════════════════════ */
.site-topbar {
  background: var(--dark);
  padding: 9px 24px;
  position: relative;
  z-index: 201;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-text {
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  letter-spacing: .3px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  transition: color .2s;
}
.topbar-link:hover { color: var(--rose); }
.topbar-link svg { flex-shrink: 0; }
.topbar-wa { color: #7ec8a0 !important; }
.topbar-wa:hover { color: #a8e6c1 !important; }

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

/* Logo */
.header-logo .custom-logo { max-height: 52px; width: auto; }
.text-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .2px;
}
.logo-tagline {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Nav */
.header-nav { display: flex; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active,
.nav-item.active > .nav-link {
  color: var(--rose);
  background: var(--rose-pale);
}
.nav-link .chevron {
  transition: transform .2s;
  stroke: currentColor;
  flex-shrink: 0;
}
.has-dropdown:hover > .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 210px;
  padding: 6px 0;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  animation: dropIn .2s ease;
}
.has-dropdown:hover .dropdown-menu { display: block; }
@keyframes dropIn {
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}
.dropdown-menu .nav-item .nav-link {
  border-radius: 0;
  padding: 9px 18px;
  font-size: 13px;
  display: block;
}
.dropdown-menu .nav-item .nav-link:hover {
  background: var(--rose-pale);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76,175,80,.2);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(76,175,80,.2); }
  50%      { box-shadow: 0 0 0 5px rgba(76,175,80,.05); }
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rose);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--ff-body);
  transition: background .2s, transform .15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.header-cta:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}
.header-cta svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE NAV ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 400;
  cursor: pointer;
}
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 500;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-brand { font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--dark); }
.mobile-nav-brand img { max-height: 40px; }
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  border-radius: 4px;
  transition: color .2s;
}
.mobile-nav-close:hover { color: var(--rose); }
.mobile-nav-body { padding: 12px 0 24px; }
.mobile-menu { padding: 0; margin: 0; list-style: none; }
.mobile-menu li a {
  display: block;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu li a:hover { color: var(--rose); background: var(--rose-pale); }
.mobile-menu .current-menu-item > a { color: var(--rose); font-weight: 600; }
.mobile-menu .sub-menu {
  padding-left: 16px;
  list-style: none;
  background: var(--light);
}
.mobile-menu .sub-menu li a { font-size: 14px; padding: 10px 22px; }
.mobile-nav-cta {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-phone-link {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rose);
  border: 1.5px solid var(--rose-mid);
  border-radius: 30px;
  transition: var(--transition);
}
.mobile-phone-link:hover { background: var(--rose-pale); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background: var(--navy); }

.footer-top { padding: 60px 24px; }
.footer-container { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Footer Brand */
.footer-brand .custom-logo { max-height: 48px; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--rose); }
.footer-contact-item svg { flex-shrink: 0; stroke: rgba(255,255,255,.4); }
.footer-wa { color: #7ec8a0 !important; }
.footer-wa svg { fill: #7ec8a0; stroke: none !important; }
.footer-wa:hover { color: #a8e6c1 !important; }

/* Footer Columns */
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  display: inline-block;
}
.footer-links li a:hover { color: var(--rose); }

/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}
.social-icon svg { stroke: currentColor; fill: none; }
.social-icon svg[fill="currentColor"] { fill: currentColor; stroke: none; }

/* Newsletter */
.footer-newsletter-sub {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.footer-input-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.footer-email-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--ff-body);
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.footer-email-input::placeholder { color: rgba(255,255,255,.3); }
.footer-email-input:focus { border-color: var(--rose); background: rgba(255,255,255,.08); }
.footer-subscribe-btn {
  width: 100%;
  padding: 11px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.footer-subscribe-btn:hover { background: var(--rose-deep); transform: translateY(-1px); }

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-nav li a:hover { color: var(--rose); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .header-availability { display: none; }
}

@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-availability { display: none; }
  .header-cta { padding: 8px 16px; font-size: 13px; }
  .header-cta svg { display: none; }
  .header-inner { padding: 0 16px; height: 62px; }

  /* Topbar */
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-actions { justify-content: center; }

  /* Footer */
  .footer-top { padding: 44px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 16px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .site-topbar { padding: 8px 14px; }
  .topbar-text { font-size: 11.5px; }
  .header-inner { padding: 0 14px; }
  .logo-name { font-size: 16px; }
  .logo-tagline { display: none; }
  .mobile-nav { width: 100%; right: -100%; }
  .footer-grid { gap: 28px; }
  .footer-socials { gap: 8px; }
}


/* ══════════════════════════════════
   APPOINTMENTS PAGE — SPECIFIC STYLES
══════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rose:      #c8657a;
  --rose-deep: #a04558;
  --rose-pale: #fdf0f2;
  --rose-mid:  #f3d0d6;
  --teal:      #3d7d7a;
  --teal-pale: #edf5f4;
  --dark:      #1c1a1b;
  --text:      #3d3338;
  --muted:     #8a7880;
  --border:    #e8d8dc;
  --white:     #fff;
  --light:     #fdf8f8;
  --ff-head:   'Cormorant Garamond', serif;
  --ff-body:   'DM Sans', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(200,101,122,.1);
  --shadow-lg: 0 12px 48px rgba(200,101,122,.15);
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 38px; height: 38px; background: var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 18px; height: 18px; fill: white; }
.nav-logo-text { font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--dark); line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; font-family: var(--ff-body); color: var(--muted); letter-spacing: .5px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-cta { background: var(--rose); color: #fff; padding: 9px 22px; border-radius: 30px; font-size: 13px; font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: var(--rose-deep); color: #fff; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #1c1a1b 0%, #2d1f25 50%, #1c1a1b 100%); padding: 72px 24px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,101,122,.2) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent); }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; padding-bottom: 60px; }
.hero-right { display: flex; align-items: flex-end; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,101,122,.15); border: 1px solid rgba(200,101,122,.3); color: #e8a0ae; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { font-family: var(--ff-head); font-size: 52px; font-weight: 500; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.75; margin-bottom: 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-tag { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); font-size: 12px; padding: 5px 12px; border-radius: 20px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--rose); color: #fff; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; font-family: var(--ff-body); transition: background .2s, transform .15s; cursor: pointer; }
.btn-hero-primary:hover { background: var(--rose-deep); transform: translateY(-2px); color: #fff; }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.8); padding: 14px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; font-family: var(--ff-body); border: 1.5px solid rgba(255,255,255,.2); transition: all .2s; cursor: pointer; }
.btn-hero-outline:hover { border-color: var(--rose); color: var(--rose); }
.hero-stats { display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-stat-num { font-family: var(--ff-head); font-size: 32px; font-weight: 600; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); width: 100%; }
.btn-book-hero { display: block; width: 100%; text-align: center; background: var(--rose); color: #fff; padding: 13px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: var(--ff-body); transition: background .2s, transform .15s; cursor: pointer; }
.btn-book-hero:hover { background: var(--rose-deep); transform: translateY(-1px); color: #fff; }
.availability-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #7ec8a0; font-weight: 500; margin-bottom: 16px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; box-shadow: 0 0 0 3px rgba(76,175,80,.2); flex-shrink: 0; }
.hero-schedule-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 12px; }
.hero-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hero-slot { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 10px 8px; text-align: center; cursor: pointer; transition: all .2s; }
.hero-slot:hover, .hero-slot.picked { background: rgba(200,101,122,.25); border-color: var(--rose); }
.hero-slot-all { background: rgba(200,101,122,.1); border-color: rgba(200,101,122,.3); }
.hero-slot-time { font-size: 13px; font-weight: 600; color: #fff; }
.hero-slot-type { font-size: 10px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--rose-pale); border-bottom: 1px solid var(--rose-mid); padding: 14px 24px; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); font-weight: 500; }
.trust-item svg { width: 16px; height: 16px; stroke: var(--rose); fill: none; flex-shrink: 0; }

/* ── SECTION COMMON ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.section-title { font-family: var(--ff-head); font-size: 40px; font-weight: 500; color: var(--dark); line-height: 1.2; }
.section-sub { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.7; }

/* ── ABOUT DOCTOR ── */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: 20px; object-fit: cover; height: 480px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; }
.about-img-placeholder { width: 100%; height: 480px; border-radius: 20px; background: linear-gradient(145deg, var(--rose-pale), var(--rose-mid)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.about-img-placeholder svg { width: 64px; height: 64px; stroke: var(--rose); fill: none; opacity: .5; }
.about-img-placeholder span { font-size: 13px; color: var(--muted); }
.about-badge { position: absolute; bottom: 24px; left: -20px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.about-badge-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-badge-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; }
.about-badge-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.about-badge-text span { font-size: 12px; color: var(--muted); }
.about-content { padding: 0; }
.credential-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.credential-item { display: flex; gap: 14px; align-items: flex-start; }
.cred-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); flex-shrink: 0; margin-top: 7px; }
.cred-text { font-size: 15px; color: var(--text); line-height: 1.55; }
.cred-text strong { color: var(--dark); font-weight: 600; }

/* ── SERVICES ── */
.services-section { background: var(--dark); padding: 80px 24px; }
.services-section .section-label { color: var(--rose); }
.services-section .section-title { color: #fff; }
.services-section .section-sub { color: rgba(255,255,255,.5); }

/* Tab switcher */
.service-tabs { display: flex; gap: 0; background: rgba(255,255,255,.05); border-radius: 12px; padding: 5px; margin: 40px 0 32px; border: 1px solid rgba(255,255,255,.08); width: fit-content; }
.service-tab { padding: 11px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; color: rgba(255,255,255,.5); background: transparent; border: none; font-family: var(--ff-body); display: flex; align-items: center; gap: 8px; }
.service-tab.active { background: var(--rose); color: #fff; box-shadow: 0 4px 14px rgba(200,101,122,.3); }
.service-tab:hover:not(.active) { color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); }
.service-tab-icon { font-size: 16px; }

/* Service panel */
.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* Service grid — specialty cards */
.specialty-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.specialty-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 22px 18px; cursor: pointer; transition: all .25s; position: relative; overflow: hidden; }
.specialty-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--rose-deep)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.specialty-card:hover { background: rgba(200,101,122,.1); border-color: rgba(200,101,122,.35); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,101,122,.15); }
.specialty-card:hover::after { transform: scaleX(1); }
.specialty-card.highlighted { background: rgba(200,101,122,.12); border-color: rgba(200,101,122,.4); }
.spec-emoji { font-size: 28px; margin-bottom: 12px; display: block; }
.spec-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.spec-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }
.spec-badge { display: inline-block; background: rgba(200,101,122,.2); color: var(--rose); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-top: 10px; letter-spacing: .5px; }

/* Bottom CTA strip in services */
.services-cta-strip { margin-top: 36px; background: rgba(200,101,122,.08); border: 1px solid rgba(200,101,122,.2); border-radius: 14px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.services-cta-text strong { display: block; color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.services-cta-text span { color: rgba(255,255,255,.5); font-size: 13px; }
.services-cta-btn { background: var(--rose); color: #fff; padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: var(--ff-body); border: none; cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap; }
.services-cta-btn:hover { background: var(--rose-deep); transform: translateY(-1px); }

/* ── ONLINE HOURS ── */
.hours-section { background: var(--dark); padding: 60px 24px; }
.hours-inner { max-width: 1100px; margin: 0 auto; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hours-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.hours-title { font-family: var(--ff-head); font-size: 38px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.hours-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; }
.hours-cards { display: flex; flex-direction: column; gap: 12px; }
.hours-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.hours-card.online { border-color: rgba(200,101,122,.4); background: rgba(200,101,122,.08); }
.hours-day { font-size: 14px; font-weight: 600; color: #fff; }
.hours-day span { display: block; font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); margin-top: 2px; }
.hours-time { text-align: right; }
.hours-time strong { display: block; font-size: 16px; font-weight: 600; color: var(--rose); }
.hours-time em { font-size: 11px; color: rgba(255,255,255,.4); font-style: normal; }
.online-pill { display: inline-flex; align-items: center; gap: 5px; background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.3); color: #7ec8a0; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 4px; letter-spacing: .5px; }
.online-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #4CAF50; }

/* ── BOOKING FORM ── */
.booking-section { background: var(--rose-pale); }
.booking-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.booking-form-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.booking-form-wrap h3 { font-family: var(--ff-head); font-size: 28px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.booking-form-wrap p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: var(--ff-body); color: var(--text); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,101,122,.1); }
.form-group textarea { height: 100px; resize: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a7880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.consult-type { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.consult-opt { border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 10px; }
.consult-opt.selected, .consult-opt:hover { border-color: var(--rose); background: var(--rose-pale); }
.consult-opt input[type="radio"] { accent-color: var(--rose); }
.consult-opt-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.consult-opt-text span { font-size: 12px; color: var(--muted); }
.submit-btn { width: 100%; padding: 14px; background: var(--rose); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: var(--ff-body); cursor: pointer; transition: background .2s, transform .15s; letter-spacing: .3px; }
.submit-btn:hover { background: var(--rose-deep); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-note svg { width: 12px; height: 12px; display: inline; vertical-align: middle; stroke: var(--muted); fill: none; }
.booking-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.info-card h4 { font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-card h4 svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; flex-shrink: 0; }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text); line-height: 1.5; }
.info-list-item::before { content: '✓'; color: var(--rose); font-weight: 700; flex-shrink: 0; font-size: 12px; margin-top: 1px; }
.contact-option { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-option:last-child { border-bottom: none; }
.contact-option-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-option-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.8; }
.contact-option-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.contact-option-text span { font-size: 12px; color: var(--muted); }
.btn-contact { display: inline-block; padding: 8px 18px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text); transition: all .2s; }
.btn-contact:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--light); border: 1px solid var(--border); border-radius: 14px; padding: 24px; cursor: pointer; transition: all .2s; }
.faq-item:hover { border-color: var(--rose-mid); box-shadow: var(--shadow); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.faq-q svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 48px 24px; text-align: center; }
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo { font-family: var(--ff-head); font-size: 22px; color: #fff; margin-bottom: 10px; }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--rose); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero-inner { grid-template-columns: 1fr 360px; gap: 32px; }
  .services-grid { gap: 16px; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 900px) {
  /* Hero: stack to single column, card moves below text */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .hero-right { width: 100%; }
  .hero-card { width: 100%; border-radius: 14px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 20px; margin-bottom: 0; }
  .hero-stat-num { font-size: 26px; }

  /* Layout */
  .about-grid, .services-grid, .hours-grid, .booking-grid, .faq-grid { grid-template-columns: 1fr; }
  .booking-info { display: none; }

  /* Typography */
  .section-title { font-size: 28px; }

  /* Sections */
  section { padding: 52px 16px; }
  .hero { padding: 40px 16px 0; }
  .hours-section { padding: 52px 16px; }
  .booking-section { padding: 52px 16px; }

  /* Trust bar */
  .trust-inner { gap: 12px; justify-content: flex-start; }
  .trust-item { font-size: 12px; }

  /* Hero tags */
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 11px; padding: 4px 10px; }

  /* CTA row */
  .hero-cta-row { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; text-align: center; }

  /* About */
  .about-badge { left: 0; bottom: 16px; }
  .about-img-placeholder { height: 300px; }

  /* Services */
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 20px; }
  .specialty-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .service-tabs { width: 100%; }
  .service-tab { flex: 1; padding: 10px 14px; font-size: 13px; justify-content: center; }
  .services-cta-strip { flex-direction: column; text-align: center; }

  /* Hours */
  .hours-title { font-size: 28px; }
  .hours-cards { gap: 10px; }

  /* Booking form */
  .booking-form-wrap { padding: 24px 18px; border-radius: 14px; }
  .booking-form-wrap h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .consult-type { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-item { padding: 18px 16px; }
  .faq-q { font-size: 14px; }

  /* Plugin wrap */
  #hab-plugin-wrap { overflow-x: hidden; }

  /* Nav hidden */
  .nav-links { display: none; }
}

/* ── RESPONSIVE — SMALL MOBILE ── */
@media (max-width: 480px) {
  .hero { padding: 32px 14px 0; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding-bottom: 0; }
  .hero-stat-num { font-size: 22px; }
  .hero-slots { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .hero-slot-time { font-size: 12px; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }

  section { padding: 40px 14px; }
  .hours-section { padding: 40px 14px; }
  .booking-section { padding: 40px 14px; }

  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-item { font-size: 11px; }

  .service-card { padding: 20px 16px; }
  .service-icon { width: 46px; height: 46px; }
  .specialty-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .specialty-card { padding: 16px 14px; }
  .spec-emoji { font-size: 22px; margin-bottom: 8px; }
  .spec-title { font-size: 13px; }
  .spec-desc { font-size: 11px; }
  .service-tab-icon { display: none; }
  .service-tab { font-size: 12px; padding: 9px 12px; }

  .hours-card { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .hours-time { text-align: left; }

  .booking-form-wrap { padding: 20px 14px; }
  .consult-type { grid-template-columns: 1fr; }
  .consult-opt { padding: 10px 12px; }

  .faq-grid { gap: 10px; }
  .faq-item { padding: 16px 14px; }

  .credential-item { gap: 10px; }
  .cred-text { font-size: 14px; }

  .about-badge { padding: 10px 14px; gap: 10px; }
  .about-badge-icon { width: 36px; height: 36px; }

  #hab-plugin-wrap .hab-booking-form,
  #hab-plugin-wrap .hab-step-content,
  #hab-plugin-wrap .hab-container { max-width: 100% !important; padding: 0 !important; }
  #hab-plugin-wrap .hab-step-indicators { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }

  .btn { font-size: 14px; padding: 12px 20px; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Success state */
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg.show { display: block; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-icon svg { width: 32px; height: 32px; stroke: var(--teal); fill: none; }
