/* =========================================
   VTIARA Hair & Skin Clinic – Stylesheet
   Fully Responsive: Mobile · Tablet · Desktop
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; }

:root {
  --navy: #0D2137;
  --navy-mid: #112843;
  --teal: #1A6B8A;
  --teal-light: #2A9DBB;
  --yellow: #F5C300;
  --yellow-dark: #E0A800;
  --bg-light: #EEF6FA;
  --bg-white: #FFFFFF;
  --text-dark: #0D2137;
  --text-mid: #374151;
  --text-light: #6B7280;
  --border: #D1E8F0;
  --card-bg: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --px: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── TOP BAR ─── */
.top-bar {
  background: #EBF8F5;
  border-bottom: 1px solid #C3E8E0;
  padding: 7px var(--px);
  font-size: 12px;
  color: var(--text-light);
  position: relative; z-index: 999;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 5px; font-weight: 500; color: var(--text-mid); }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-care { color: var(--text-light); }
.top-bar-phone {
  display: flex; align-items: center; gap: 5px;
  font-weight: 700; font-size: 13px; color: var(--navy);
}
.top-bar-phone:hover { color: var(--teal); }

/* ─── NAVBAR ─── */
nav {
  position: sticky; top: 0; z-index: 1100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 8px;
  position: relative;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

/* Nav Links list */
.nav-links {
  display: flex; list-style: none; flex: 1;
  justify-content: center; align-items: stretch;
  align-self: stretch;
  margin: 0; padding: 0; gap: 0;
}
.nav-item {
  position: relative;
  display: flex; align-items: stretch;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 13px;
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: color .2s;
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--teal); }
.nav-chevron { flex-shrink: 0; transition: transform .2s; }
.nav-item:hover > .nav-link .nav-chevron { transform: rotate(180deg); }


/* Nav actions */
.nav-actions { display: flex; align-items: center; flex-shrink: 0; }
.btn-book-nav {
  background: var(--navy); color: #fff;
  border: none; border-radius: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 7px; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.btn-book-nav:hover { background: var(--teal); }

/* ── MEGA MENU (list + flyout style) ── */
.has-mega { position: relative; }
.mega-menu {
  display: none;
  position: fixed; top: auto; left: 0;
  width: 300px;
  background: #fff;
  border-top: 2px solid var(--teal);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 200;
}

.mega-menu-inner {
  display: flex;
  flex-direction: column;
}
.mega-col {
  position: relative;
  padding: 0;
}
.mega-cat-head {
  display: flex; flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0 8px; padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}
.mega-col:hover > .mega-cat-head { background: var(--bg-light); }
.mega-cat-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.mega-col-chevron { display: block; width: 14px; height: 14px; color: var(--text-light); flex-shrink: 0; transition: color .15s, transform .2s; }
.mega-col:hover > .mega-cat-head .mega-col-chevron { color: var(--teal); }
.mega-cat-head span { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.mega-links { list-style: none; padding: 0; margin: 0; }
.mega-links a {
  display: block; padding: 5px 2px;
  font-size: 12.5px; color: var(--text-mid);
  transition: color .15s, padding-left .15s;
}
.mega-links a:hover { color: var(--teal); padding-left: 5px; }

/* Desktop: submenu flies out to the right of the hovered category, like a nested list */
@media (min-width: 769px) {
  .mega-links {
    display: none;
    position: absolute; top: -10px; left: 100%;
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    padding: 12px 14px;
    margin-left: 0;
    z-index: 5;
  }
  /* Invisible bridge so the mouse never leaves .mega-col between the row and the flyout */
  .mega-col::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 100%;
    width: 16px;
  }
  .mega-col:hover > .mega-links { display: block; }
  .mega-links a { padding: 7px 4px; font-size: 13px; }
}

/* ── SIMPLE DROPDOWN (About Us / Locations) — matching list style ── */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: fixed; top: auto; left: 0;
  min-width: 230px; background: #fff;
  border-top: 2px solid var(--teal);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  z-index: 200;
  padding: 10px 8px;
}
.dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  border-radius: 8px;
  border-bottom: none;
  transition: background .15s, color .15s;
}
.dropdown-item:hover { color: var(--teal); background: var(--bg-light); }
.loc-city-label {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 12px 8px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--teal);
  border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.loc-branch { padding-left: 20px !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  gap: 5px; padding: 6px; border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(13,33,55,0.5);
  opacity: 0; transition: opacity .3s;
}
.nav-overlay.open { opacity: 1; }


/* ─── HERO ─── */
/* Pull hero up so nav sits on top of it, giving visual gap between nav and hero content */
.post-hero { margin-top: -69px; }

.btn-primary {
  background: #fff; color: var(--navy);
  border: none; border-radius: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: background .2s; text-decoration: none;
}
.btn-primary:hover { background: var(--bg-light); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(135deg, #0D2137 0%, #1A6B8A 100%);
  border-bottom: none;
  padding: 18px var(--px);
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: nowrap; gap: 12px;
  overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: #fff; flex-shrink: 0; white-space: nowrap; }
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}

/* ─── SECTION SHARED ─── */
section { padding: 70px var(--px); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 50px;
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  color: var(--text-mid); margin-bottom: 16px;
}
.section-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
h2.section-title { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
h2.section-title span { color: var(--teal); }
.section-desc { font-size: 15px; color: var(--text-light); max-width: 560px; }

/* ─── ABOUT ─── */
.about { background: var(--bg-light); }
.about-inner { display: flex; gap: 64px; align-items: center; margin-bottom: 40px; }
.about-img {
  flex-shrink: 0; width: 480px; height: 380px;
  background: var(--navy); border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* About slider */
.about-slider { width: 100%; height: 100%; position: relative; }
.about-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.about-slide img { width: 100%; height: 100%; object-fit: cover; }
.about-slide.active { opacity: 1; }
.about-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.asdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.asdot.active { background: #fff; transform: scale(1.3); }
.about-content { flex: 1; min-width: 0; }
.about-content .section-desc { margin-bottom: 0; }
.about-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.about-card-icon { font-size: 22px; margin-bottom: 10px; color: var(--teal); }
.about-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-card p { font-size: 12px; color: var(--text-light); }

/* ─── TREATMENTS ─── */
.treatments { background: var(--bg-light); padding-top: 32px; padding-bottom: 32px; }
.treatments-header { text-align: center; margin-bottom: 48px; }
.treatments-header .section-desc { margin: 0 auto; }
/* ─── RESULTS ─── */
.results { background: var(--bg-light); }
.results-header { text-align: center; margin-bottom: 40px; }
.results-header .section-desc { margin: 0 auto; }

/* ─── TRANSFORMATION CARDS ─── */
.transform-wrap { position: relative; }
.transform-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px var(--px) 28px;
}
.transform-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,33,55,0.10);
  border: 1.5px solid rgba(42,168,168,0.18);
}
.transform-images { position: relative; aspect-ratio: 1080/566; overflow: hidden; background: var(--bg-light); }
.transform-images img { width: 100%; height: 100%; object-fit: cover; display: block; }
.transform-card-foot {
  background: var(--navy); color: #fff; text-align: center;
  padding: 10px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.2px; line-height: 1.35;
}

/* ─── OFFER BANNER ─── */
.offer-banner {
  margin: 0 var(--px) 70px;
  background: linear-gradient(135deg, var(--navy) 0%, #1A4060 100%);
  border-radius: 20px; padding: 50px 60px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.offer-left { flex: 1; }
.offer-badge {
  display: inline-block; border: 1.5px solid var(--yellow); border-radius: 6px;
  padding: 4px 12px; font-size: 11px; font-weight: 700; color: var(--yellow);
  letter-spacing: 1px; margin-bottom: 20px;
}
.offer-left h2 { font-size: 38px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.offer-left h2 span { color: var(--yellow); }
.offer-left p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.offer-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-offer {
  background: var(--yellow); color: var(--navy);
  border: none; border-radius: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: background .2s; text-decoration: none;
}
.btn-offer:hover { background: var(--yellow-dark); }
.btn-offer-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 8px;
  padding: 13px 24px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: border-color .2s; text-decoration: none;
}
.btn-offer-outline:hover { border-color: #fff; }
.offer-circle {
  width: 140px; height: 140px; flex-shrink: 0;
  background: var(--yellow); border-radius: 50%;
  border: 3px dashed var(--yellow-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.offer-circle-num { font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; }
.offer-circle-sub { font-size: 10px; font-weight: 700; color: var(--navy); letter-spacing: 1px; text-align: center; text-transform: uppercase; }

/* ─── EXPERT ─── */
.expert { background: var(--bg-light); }
.expert-header { text-align: center; margin-bottom: 40px; }
.expert-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  display: flex; overflow: hidden; max-width: 900px; margin: 0 auto;
}
.expert-photo { width: 340px; flex-shrink: 0; background: var(--bg-light); }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.expert-info { padding: 36px; }
.expert-name-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 12px; margin-bottom: 6px; }
.expert-name-row h3 { margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.expert-rating { display: flex; align-items: center; flex-shrink: 0; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text-mid); white-space: nowrap; }
.star { color: var(--yellow); }
.expert-info h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.expert-title { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 16px; }
.expert-bio { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.expert-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.expert-tag {
  border: 1px solid var(--border); border-radius: 50px;
  padding: 6px 16px; font-size: 12px; font-weight: 600; color: var(--text-mid);
}
.expert-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.expert-contact { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-mid); }
.expert-award {
  display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border); text-decoration: none;
}
.expert-award img { width: 180px; height: auto; border-radius: 8px; border: 1px solid var(--border); flex-shrink: 0; }
.expert-award-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.expert-award-text strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }

/* ─── TESTIMONIALS – Google Widget Style ─── */
.testimonials { background: #f1f3f4; padding-top: 40px; padding-bottom: 40px; }
.testimonials-header { margin-bottom: 20px; }
.testimonials-header .section-desc { margin-top: 6px; max-width: 540px; }

/* Two-branch grid side by side */
.branches-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.branch-section { margin-bottom: 0; min-width: 0; overflow: hidden; }
.branch-label {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.branch-label svg { color: var(--teal); }

/* Scrollable track */
.review-scroll-track {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px; min-width: 0; width: 100%;
  scrollbar-width: thin; scrollbar-color: #d1d5db transparent;
}
.review-scroll-track::-webkit-scrollbar { height: 4px; }
.review-scroll-track::-webkit-scrollbar-track { background: transparent; }
.review-scroll-track::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 10px; }

/* Place badge card */
.g-place-card {
  background: #fff; border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  padding: 14px 12px; min-width: 155px; max-width: 155px;
  flex-shrink: 0; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px;
}
.g-place-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #e5e7eb; }
.g-place-name { font-size: 10.5px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.g-place-rating { display: flex; align-items: center; gap: 4px; font-size: 17px; font-weight: 700; color: #1a1a1a; }
.g-place-stars { color: #F5A623; font-size: 12px; letter-spacing: 1px; }
.g-place-count { font-size: 10px; color: #70757a; }
.g-powered { font-size: 9.5px; color: #70757a; line-height: 1.3; }
.google-brand { font-weight: 600; }
.g-b { color: #4285F4; } .g-r { color: #EA4335; } .g-y { color: #FBBC05; } .g-g { color: #34A853; }

.g-review-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #1a73e8; color: #fff;
  font-size: 10.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 20px;
  text-decoration: none; margin-top: 2px;
  white-space: nowrap; transition: background .2s;
}
.g-review-btn:hover { background: #1558b0; }

/* Review card */
.g-review-card {
  background: #fff; border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  padding: 12px 12px 10px;
  min-width: 200px; max-width: 200px;
  flex-shrink: 0; scroll-snap-align: start;
  transition: box-shadow .2s;
}
.g-review-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.15); }
.g-review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 7px; }
.g-reviewer { display: flex; gap: 7px; align-items: center; }
.g-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  color: #fff; font-size: 12px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.g-reviewer-name { font-size: 11.5px; font-weight: 600; color: #202124; margin-bottom: 1px; }
.g-reviewer-time { font-size: 10px; color: #70757a; }
.g-card-stars { color: #F5A623; font-size: 11px; margin-bottom: 5px; letter-spacing: 1px; }
.g-review-text {
  font-size: 11.5px; color: #3c4043; line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Google G SVG icon */
.g-gicon { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq { background: var(--bg-light); padding-top: 32px; padding-bottom: 32px; }
.faq-inner { display: flex; gap: 80px; align-items: flex-start; }
.faq-left { flex-shrink: 0; width: 300px; }
.faq-left h2 { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 16px; }
.faq-left h2 span { color: var(--teal); }
.faq-left p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.btn-book-faq {
  background: var(--navy); color: #fff;
  border: none; border-radius: 8px;
  padding: 13px 22px; font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: background .2s;
}
.btn-book-faq:hover { background: var(--teal); }
.faq-right { flex: 1; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: color .2s; user-select: none; gap: 16px;
}
.faq-question:hover { color: var(--teal); }
.faq-chevron { font-size: 16px; color: var(--text-light); transition: transform .3s; flex-shrink: 0; }
.faq-answer { font-size: 14px; color: var(--text-light); padding: 0 0 16px; display: none; line-height: 1.7; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer { display: block; }

/* ─── BOOK APPOINTMENT ─── */
.book-section { background: var(--bg-light); }
.book-card-wrap { display: flex; align-items: stretch; background: var(--navy-mid); border-radius: 20px; }
.book-card {
  flex: 1; min-width: 0;
  padding: 32px 40px 32px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.book-heading { text-align: center; }
.book-heading h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.book-heading h2 span { color: var(--yellow); }
.book-heading > p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 0; }
.book-left { flex: 1; min-width: 0; }
.book-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; padding: 4px 12px; display: inline-block; margin-bottom: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.form-control {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); padding: 9px 12px;
  font-size: 13px; color: #fff; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control:focus { border-color: var(--teal-light); }
select.form-control { appearance: none; cursor: pointer; }
select.form-control option { background: var(--navy-mid); color: #fff; }
textarea.form-control { resize: vertical; min-height: 70px; }
.btn-submit {
  width: 100%; background: var(--yellow); color: var(--navy);
  border: none; border-radius: 8px;
  padding: 12px; font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: background .2s; margin-top: 2px;
}
.btn-submit:hover { background: var(--yellow-dark); }
.form-disclaimer { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 8px; }

.book-right { width: 280px; flex-shrink: 0; padding: 32px 32px 32px 0; }
.contact-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.contact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 11px 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.contact-card-icon { font-size: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.contact-card-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 2px; }
.contact-card-value { font-size: 13px; font-weight: 600; color: #fff; }
.map-placeholder {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); height: 140px;
  overflow: hidden;
}
.map-placeholder iframe { border-radius: var(--radius-sm); }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(to right, var(--navy) 0%, #1A4060 100%);
  padding: 56px var(--px) 30px;
  color: rgba(255,255,255,0.7);
}
/* Info row: brand + quick links + locations */
.footer-info-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

/* Treatments grid: 4 per row */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  margin-bottom: 44px;
  align-items: start;
}
.footer-brand { }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 56px !important; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { }
.footer-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
  padding: 8px 14px; transition: background .2s, color .2s;
}
.footer-phone:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-col h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-city-label {
  display: flex !important; align-items: center; gap: 5px;
  font-size: 11px !important; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--teal-light) !important;
  margin-bottom: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-copy { font-size: 12px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: background .2s;
}
.social-link:hover { background: var(--teal); color: #fff; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--navy);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
}
.announcement-bar-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.announcement-bar-track:hover { animation-play-state: paused; }
.announcement-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 60px;
}
.announcement-bar span {
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.announcement-bar a {
  color: var(--yellow);
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FLOATING BRANCH BUTTONS ─── */
.float-group {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 14px; z-index: 99999;
}
.float-btn-wrap { position: relative; display: flex; flex-direction: row; align-items: center; pointer-events: none; }
/* Branch label menu is taken OUT of normal flow so it never reserves invisible
   layout space that could sit over unrelated content (e.g. footer links) when closed. */
.float-branch-menu {
  position: absolute; top: 50%; right: calc(100% + 8px);
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 5px; align-items: flex-end;
}
.float-btn-wrap .whatsapp-float,
.float-btn-wrap .phone-float { pointer-events: auto; }
.float-branch-item {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 30px; padding: 6px 12px 6px 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18); font-size: 12px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  opacity: 0; transform: translateX(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.float-branch-item.phone-item { color: #0D2137; }
.float-branch-item.wa-item { color: #128c2e; }
.float-branch-item .fbranch-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.float-branch-item.phone-item .fbranch-dot { background: #0D2137; }
.float-branch-item.wa-item .fbranch-dot { background: #25d366; }
.float-btn-wrap.open .float-branch-item { opacity: 1; transform: translateX(0); pointer-events: auto; }
.float-btn-wrap.open .float-branch-item:nth-child(2) { transition-delay: 0.07s; }
.float-btn-wrap .phone-float,
.float-btn-wrap .whatsapp-float {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  border: none; cursor: pointer; position: static; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
}
.float-btn-wrap .phone-float { background: #0D2137; color: #fff; }
.float-btn-wrap .whatsapp-float { background: #25d366; color: #fff; }
.float-btn-wrap .phone-float:hover,
.float-btn-wrap .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* (old carousel removed — replaced by .transform-* components above) */

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* ─── WIDE: 1280px ─── */
@media (max-width: 1280px) {
  :root { --px: 48px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 14px; }
  .btn-book-nav { padding: 9px 16px; font-size: 13px; }
}

/* ─── TABLET: 1024px ─── */
@media (max-width: 1024px) {
  :root { --px: 24px; }

  /* ── Nav: switch to hamburger on tablet ── */
  .nav-inner { padding: 0 24px; }
  .nav-links {
    display: none;
    position: fixed; left: 0; right: 0; top: 68px; bottom: 0;
    background: #fff;
    flex-direction: column; justify-content: flex-start; gap: 0; padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1090;
    align-self: auto;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-item { border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; }
  .nav-link { padding: 16px 24px; font-size: 15px; font-weight: 600; justify-content: space-between; }
  .nav-link:hover, .nav-item:hover > .nav-link { color: var(--text-mid); }
  .nav-item.sub-open > .nav-link { color: var(--teal); }
  .nav-item.sub-open > .nav-link .nav-chevron { transform: rotate(180deg); }
  .mega-menu { position: static; display: none; width: auto; box-shadow: none; border: none; border-top: 1px solid var(--border); border-radius: 0; padding: 12px 24px 16px; margin-top: 0; }
  .mega-menu-inner { display: flex; flex-direction: column; gap: 0; }
  .mega-col { padding: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .mega-col:last-child { border-bottom: none; }
  .mega-cat-head { display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 14px 20px; margin: 0; border-radius: 0; cursor: pointer; }
  .mega-col:hover > .mega-cat-head { background: none; }
  .mega-col-chevron { display: block; width: 18px; height: 18px; color: var(--text-mid); flex-shrink: 0; }
  .mega-cat-left { display: flex; align-items: center; gap: 12px; }
  .mega-cat-head span { font-size: 14px; font-weight: 600; color: var(--navy); }
  .nav-item.sub-open > .mega-menu { display: block; }
  .nav-item.sub-open > .dropdown-menu { display: block; }
  .dropdown-menu { position: static !important; display: none; box-shadow: none !important; border: none !important; border-top: 2px solid var(--teal) !important; border-radius: 0 !important; padding: 8px 0 !important; background: #f9fbfd; }
  .dropdown-item { display: block !important; padding: 14px 24px !important; font-size: 14px !important; color: var(--text-mid) !important; border-bottom: 1px solid #f0f4f8 !important; background: #fff; margin: 0 !important; }
  .dropdown-item:last-child { border-bottom: none !important; }
  .nav-actions { margin-left: auto; }
  .hamburger { display: flex; }
  .btn-book-nav { padding: 9px 14px; font-size: 12px; }

  /* ── Hero slider: natural height on tablet (no clipping) ── */
  .hero-slider { height: auto; }
  .hero-slide { height: auto; }

  .about-inner { gap: 36px; }
  .about-img { width: 360px; height: 300px; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }

  .expert-card { max-width: 100%; }

  .offer-banner { padding: 40px; }
  .offer-left h2 { font-size: 30px; }
}

/* ─── MOBILE: 768px ─── */
@media (max-width: 768px) {
  :root { --px: 20px; }

  /* ── Top bar: hide on mobile ── */
  .top-bar { display: none; }

  /* ── Announcement bar: fixed at very top on mobile ── */
  .announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 2001; font-size: 11px; padding: 6px 0; }

  /* ── Nav: fixed below announcement bar ── */
  nav#main-nav { position: fixed; top: 30px; left: 0; right: 0; z-index: 2000; }
  .nav-inner { padding: 0 16px; height: 68px; }
  /* Push all hero sections below fixed announcement bar (30px) + nav (68px) = 98px */
  .hero, .post-hero, .hero-slider-wrap { margin-top: 98px; }
  .branch-hero { margin-top: 98px !important; padding: 36px 20px 40px !important; }
  .treat-hero { margin-top: 98px; }
  .logo img { height: 38px; }
  .nav-links {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column; justify-content: flex-start; gap: 0; padding: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1090;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-item { border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; }
  .nav-link {
    padding: 16px 24px; font-size: 15px; font-weight: 600;
    border-bottom: none !important; justify-content: space-between;
  }
  .nav-link:hover, .nav-item:hover > .nav-link { color: var(--text-mid); border-bottom-color: transparent; }
  .nav-item.sub-open > .nav-link { color: var(--teal); }
  .nav-item.sub-open > .nav-link .nav-chevron { transform: rotate(180deg); }

  /* Sub-menu accordion */
  .mega-menu {
    position: static; display: none;
    box-shadow: none; border: none;
    border-top: 1px solid var(--border);
    padding: 12px 24px 16px;
  }
  .nav-item.sub-open > .mega-menu { display: block; }
  .dropdown-menu {
    position: static !important; display: none;
    box-shadow: none !important; border: none !important;
    border-top: 2px solid var(--teal) !important;
    border-radius: 0 !important;
    padding: 8px 0 8px !important;
    background: #f9fbfd;
  }
  .dropdown-item {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    color: var(--text-mid) !important;
    border-bottom: 1px solid #f0f4f8 !important;
    border-radius: 0 !important;
    transition: color .15s !important;
    background: #fff;
    margin: 0 !important;
  }
  .dropdown-item:last-child { border-bottom: none !important; }
  .dropdown-item:hover { color: var(--teal) !important; background: none !important; padding-left: 24px !important; }
  .loc-city-label {
    padding: 14px 24px 10px !important; margin-bottom: 0 !important;
    background: #fff;
  }
  .loc-branch { padding-left: 36px !important; }
  .nav-item.sub-open > .mega-menu,
  .nav-item.sub-open > .dropdown-menu { display: block; }

  /* Mobile mega menu — accordion style */
  .mega-menu { padding: 0; width: auto; background: #fff; }
  .mega-menu-inner { display: flex; flex-direction: column; gap: 0; }

  /* Each category row */
  .mega-col {
    padding: 0;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--border);
  }
  .mega-col:nth-child(5n) { border-right: none; }
  .mega-col:nth-child(n+6) { border-top: none; }
  .mega-col:last-child { border-bottom: none; }
  .mega-col:hover > .mega-cat-head { background: none; }

  /* Category header row — full-width tap target */
  .mega-cat-head {
    display: flex; flex-direction: row; align-items: center;
    justify-content: space-between;
    padding: 16px 20px; gap: 12px;
    margin: 0; padding-bottom: 16px; border-bottom: none; border-radius: 0;
    cursor: pointer;
  }
  .mega-cat-left { display: flex; align-items: center; gap: 12px; }
  .mega-cat-head span { font-size: 14px; font-weight: 600; color: var(--navy); }

  /* Chevron on right */
  .mega-col-chevron {
    display: block;
    width: 18px; height: 18px; color: var(--text-mid);
    flex-shrink: 0; transition: transform 0.2s, color 0.2s;
  }

  /* Open state */
  .mega-col.col-open .mega-cat-head span { color: var(--teal); }
  .mega-col.col-open .mega-col-chevron { transform: rotate(90deg); color: var(--teal); }

  /* Sub-items — hidden by default, shown when open */
  .mega-links { display: none; list-style: none; padding: 0 20px 12px 68px; margin: 0; }
  .mega-col.col-open .mega-links { display: block; }
  .mega-links li { border-top: 1px solid #f0f4f8; }
  .mega-links li:first-child { border-top: none; }
  .mega-links a { display: block; padding: 11px 0; font-size: 14px; color: var(--text-mid); }
  .loc-city-label { font-size: 11px; }

  .nav-actions .btn-book-nav { font-size: 12px; padding: 8px 14px; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.open { pointer-events: all; }

  .btn-primary { padding: 10px 14px; font-size: 12px; white-space: nowrap; }

  /* ── Trust bar — horizontal scroll ── */
  .trust-bar {
    padding: 14px 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-item { font-size: 12px; white-space: nowrap; flex-shrink: 0; }
  .trust-icon { width: 30px; height: 30px; }

  /* ── Sections ── */
  section { padding: 48px 20px; }
  h2.section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }

  /* ── About ── */
  .about-inner { flex-direction: column; gap: 28px; }
  .about-img { width: 100%; height: 220px; }
  .about-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-card { padding: 16px; }

  /* ── Carousel / Results ── */
  .transform-track { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 8px 20px 24px; }

  /* ── Offer banner ── */
  .offer-banner {
    margin: 0 20px 48px;
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
  }
  .offer-circle { display: none; }
  .offer-left h2 { font-size: 26px; }
  .offer-btns { flex-direction: column; gap: 10px; }
  .btn-offer, .btn-offer-outline { width: 100%; justify-content: center; }

  /* ── Expert ── */
  .expert-card { flex-direction: column; }
  .expert-photo { width: 50%; height: auto; margin: 0 auto; }
  .expert-photo img { width: 100%; height: auto; object-fit: unset; }
  .expert-info { padding: 24px; }
  .expert-info h3 { font-size: 18px; }
  .expert-rating { font-size: 12px; }
  .expert-contacts { flex-direction: column; gap: 10px; }

  /* ── Testimonials ── */
  .testimonials-header { align-items: flex-start; }
  .branches-grid { grid-template-columns: 1fr; gap: 20px; }
  .g-place-card { min-width: 140px; max-width: 140px; }
  .g-review-card { min-width: 170px; max-width: 170px; }

  /* ── FAQ ── */
  .faq-inner { flex-direction: column; gap: 32px; }
  .faq-left { width: 100%; }
  .faq-left h2 { font-size: 26px; }

  /* ── Book Appointment ── */
  .book-card-wrap { flex-direction: column; background: transparent; border-radius: 0; gap: 12px; }
  .book-card { background: var(--navy-mid); border-radius: 20px; padding: 28px 20px; gap: 24px; }
  .book-heading h2 { font-size: 26px; }
  .book-right { width: 100%; padding: 24px 20px; background: var(--navy-mid); border-radius: 20px; display: flex; flex-direction: column; gap: 10px; }
  .contact-cards { gap: 8px; margin-bottom: 4px; }
  .contact-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); box-shadow: none; padding: 12px; gap: 10px; }
  .contact-card-label { font-size: 9px; }
  .contact-card-value { font-size: 13px; }
  .contact-card-icon { width: 34px; height: 34px; }
  .map-placeholder { border-radius: 10px; height: 180px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ── Footer ── */
  footer { padding: 40px 20px 24px; }
  .footer-info-row { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }

  /* ── Float group ── */
  .float-group { bottom: 16px; right: 16px; }
  .phone-float, .whatsapp-float { width: 46px; height: 46px; }
}

/* ─── SMALL MOBILE: 480px ─── */
@media (max-width: 480px) {
  .btn-primary { padding: 8px 10px; font-size: 11px; }

  .about-cards { grid-template-columns: 1fr; }

  h2.section-title { font-size: 22px; }

  .offer-btns { flex-direction: column; }
  .btn-offer, .btn-offer-outline { padding: 13px 20px; font-size: 13px; }

  .expert-info h3 { font-size: 16px; }
  .expert-rating { font-size: 11px; gap: 4px; }
  .expert-rating-word { display: none; }

  .book-heading h2 { font-size: 22px; }
  .book-card { padding: 24px 20px; gap: 18px; }

  .nav-actions .btn-book-nav { display: flex; font-size: 11px; padding: 7px 10px; }
}