/* ============================================================
   NOVEL WELLNESS SPA — Redesigned Stylesheet v2
   novelspaabd.com
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:      #1a3a6b;
  --navy-dark: #0f2247;
  --teal:      #2a9d8f;
  --teal-dark: #1f7a6e;
  --teal-light:#4dbfb0;
  --gold:      #c9a84c;
  --gold-light:#e2c46e;
  --gold-dark: #a0823c;
  --cream:     #faf8f4;
  --cream-2:   #f0ebe0;
  --white:     #ffffff;
  --dark:      #0d1117;
  --text:      #1a1a2e;
  --muted:     #7a7068;
  --border:    rgba(201,168,76,0.18);
  --border-light: rgba(0,0,0,0.07);
  --fh:        'Cormorant Garamond', Georgia, serif;
  --fb:        'Lato', 'Helvetica Neue', sans-serif;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.13);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --t:         all 0.35s ease;
}

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

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--fh); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.95rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section   { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-cream  { background: var(--cream); }
.bg-cream-2{ background: var(--cream-2); }
.bg-navy   { background: var(--navy-dark); }
.bg-white  { background: var(--white); }
.bg-dark   { background: var(--dark); }

/* ── Section Head ── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.section-label::before, .section-label::after { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: 0.55; }
.divider { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1rem 0; }
.divider.center { margin: 1rem auto; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.section-head.left p { margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  font-family: var(--fb); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; transition: var(--t); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); color: var(--dark); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); filter: brightness(1.05); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,157,143,0.38); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1fb858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-sm { padding: 10px 22px; font-size: 0.65rem; }
.btn-lg { padding: 16px 44px; font-size: 0.74rem; }

/* ── Topbar ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 9px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  width: 100%;
  transition: transform 0.35s ease;
}
.topbar.hide { transform: translateY(-100%); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar-item:hover { color: var(--gold-light); }
.topbar-item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.35s ease, top 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  height: 60px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.navbar.navbar-solid {
  top: 38px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  height: 66px;
}
.navbar.navbar-solid.scrolled { top: 0; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; transition: height 0.3s; }
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-logo-text { font-family: var(--fh); font-size: 1.6rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.nav-logo-text span { color: var(--gold-light); }
.navbar.scrolled .nav-logo-text { color: var(--navy); }
.navbar.navbar-solid .nav-logo-text { color: var(--navy); }
.navbar.navbar-solid .nav-logo-text span { color: var(--gold); }

.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); transition: color 0.3s;
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.navbar-solid .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--gold-light) !important; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active,
.navbar.navbar-solid .nav-link:hover, .navbar.navbar-solid .nav-link.active { color: var(--teal) !important; }
.nav-arrow { font-size: 0.5rem; transition: transform 0.25s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--border);
  min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 200; border-top: 2px solid var(--teal);
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); border-bottom: 1px solid var(--cream-2);
  transition: color 0.2s, background 0.2s, padding 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--teal); background: var(--cream); padding-left: 24px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  font-size: 0.7rem; font-weight: 700; color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4); padding: 8px 18px;
  transition: var(--t); letter-spacing: 0.05em;
}
.nav-tel:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.navbar.scrolled .nav-tel { color: var(--gold); }
.navbar.navbar-solid .nav-tel { color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; z-index: 1010; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.9); transition: var(--t); }
.navbar.scrolled .hamburger span { background: var(--text); }
.navbar.navbar-solid .hamburger span { background: var(--text); }
.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); }

/* Mobile overlay nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(15,34,71,0.98);
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  overflow-y: auto; padding: 70px 20px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  font-family: var(--fh); font-size: 1.7rem; font-weight: 400;
  color: var(--white); padding: 6px 0; transition: color 0.3s; letter-spacing: 0.02em;
}
.mobile-nav > a:hover { color: var(--gold-light); }
.mobile-nav-sub { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 4px 0; }
.mobile-nav-sub a {
  font-family: var(--fb); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.3s;
}
.mobile-nav-sub a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.8rem; color: rgba(255,255,255,0.7); background: none; border: none; line-height: 1;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold-light); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.webp');
  background-size: cover; background-position: center;
  animation: heroZoom 10s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.09); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,34,71,0.82) 0%, rgba(15,34,71,0.5) 55%, rgba(42,157,143,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6vw; max-width: 820px; color: var(--white);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 1.4rem;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 { color: var(--white); font-weight: 400; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem; color: rgba(240,236,228,0.78); font-weight: 300;
  margin-bottom: 2.4rem; max-width: 520px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats bar */
.stats-bar { background: rgba(15,34,71,0.97); border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-around;
}
.stat-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 22px 20px; border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--fh); font-size: 2rem; font-weight: 400; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 5px; }

/* ── Ticker ── */
.ticker { background: var(--teal); overflow: hidden; padding: 10px 0; }
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 36px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.ticker-dot { width: 4px; height: 4px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── About Section ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -28px; right: -28px; width: 50%; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--white); }
.about-badge {
  position: absolute; top: -18px; left: -18px;
  width: 82px; height: 82px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-badge strong { font-family: var(--fh); font-size: 1.7rem; font-weight: 500; color: var(--dark); line-height: 1; }
.about-badge small { font-size: 0.48rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); text-align: center; margin-top: 2px; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-list { display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.about-list li::before { content: '✓'; width: 20px; height: 20px; background: rgba(42,157,143,0.12); color: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700; flex-shrink: 0; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.svc-card { position: relative; overflow: hidden; cursor: pointer; display: block; }
.svc-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.65s ease; display: block; }
.svc-card:hover img { transform: scale(1.06); }
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,34,71,0.9) 0%, rgba(15,34,71,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 22px;
  transition: background 0.4s;
}
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(15,34,71,0.95) 0%, rgba(15,34,71,0.5) 60%, rgba(15,34,71,0.1) 100%); }
.svc-num { font-family: var(--fh); font-size: 2.8rem; font-weight: 300; color: rgba(201,168,76,0.22); line-height: 1; margin-bottom: 4px; }
.svc-card h3 { color: var(--white); font-weight: 400; font-size: 1.35rem; margin-bottom: 6px; }
.svc-desc { font-size: 0.8rem; color: rgba(240,236,228,0.65); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.svc-card:hover .svc-desc { max-height: 80px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 10px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-link::after { content: '→'; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-quote {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--white); border-left: 3px solid var(--gold);
  padding: 18px 22px; max-width: 230px; box-shadow: var(--shadow-md);
}
.why-quote p { font-family: var(--fh); font-size: 0.95rem; font-style: italic; color: var(--text); margin-bottom: 4px; }
.why-quote span { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 1.5rem; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 { font-family: var(--fh); font-size: 1.1rem; color: var(--text); margin-bottom: 2px; font-weight: 500; }
.why-item p { font-size: 0.82rem; color: var(--muted); }
/* navy bg variant */
.bg-navy .why-item h4 { color: var(--white); }
.bg-navy .why-icon { background: rgba(201,168,76,0.08); }
.bg-navy .why-quote { display: none; }

/* ── Gallery Grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,240px); gap: 4px; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0); transition: var(--t); }
.g-item:hover::after { background: rgba(201,168,76,0.1); }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }

/* ── Offers ── */
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--border-light); overflow: hidden; transition: var(--t); }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-card-img { position: relative; overflow: hidden; }
.offer-card-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.6s; }
.offer-card:hover .offer-card-img img { transform: scale(1.05); }
.offer-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: 0.57rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.offer-card-body { padding: 24px; }
.offer-card-body h3 { font-size: 1.35rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.offer-card-body p { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; }

/* ── CTA Band ── */
.cta-section {
  position: relative; padding: 100px 40px; text-align: center;
  overflow: hidden;
}
.cta-section-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,34,71,0.88) 0%, rgba(42,157,143,0.6) 50%, rgba(15,34,71,0.88) 100%); z-index: 1; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-section p { color: rgba(240,236,228,0.78); margin-bottom: 2rem; }
.cta-phone { font-family: var(--fh); font-size: 2.2rem; font-weight: 400; color: var(--gold-light); margin-bottom: 1.6rem; display: block; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--border-light); padding: 28px; position: relative; transition: var(--t); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-family: var(--fh); font-size: 4rem; line-height: 1; color: rgba(42,157,143,0.1); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; }
.review-card p { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-bottom: 18px; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 11px; padding-top: 16px; border-top: 1px solid var(--cream-2); }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 0.95rem; color: var(--white); flex-shrink: 0; }
.reviewer-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.reviewer-source { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-family: var(--fh); font-size: 1.1rem; font-weight: 400;
  color: var(--text); text-align: left; cursor: pointer; transition: color 0.3s;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-panel p { padding: 0 0 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.faq-panel a { color: var(--teal); }

/* ── Location ── */
.loc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.loc-map-wrap { overflow: hidden; box-shadow: var(--shadow-md); }
.loc-map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.loc-info { display: flex; flex-direction: column; gap: 26px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.loc-icon svg { width: 18px; height: 18px; }
.loc-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.loc-value { font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.loc-link { color: var(--teal); font-size: 0.8rem; display: inline-block; margin-top: 4px; transition: color 0.2s; }
.loc-link:hover { color: var(--teal-dark); }

/* ── Footer ── */
.footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-logo img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--fh); font-size: 1.8rem; font-weight: 500; color: var(--white); margin-bottom: 14px; display: block; }
.footer-logo-text span { color: var(--gold); }
.footer-about { font-size: 0.82rem; color: var(--muted); line-height: 1.8; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; transition: var(--t); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 15px; height: 15px; }
.footer-col h5 { font-family: var(--fb); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.8rem; color: var(--muted); transition: var(--t); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 40px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bar p, .footer-bar a { font-size: 0.72rem; color: var(--muted); }
.footer-bar a:hover { color: var(--gold); }

/* ── Floating CTAs ── */
.float-cta { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 50px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.04em; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--t); }
.float-btn svg { width: 18px; height: 18px; }
.float-btn.wa { background: #25D366; color: var(--white); }
.float-btn.wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.float-btn.call { background: var(--teal); color: var(--white); }
.float-btn.call:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(42,157,143,0.45); }
.float-label { white-space: nowrap; }

/* ── Scroll to top ── */
.totop { position: fixed; bottom: 24px; left: 24px; z-index: 999; width: 42px; height: 42px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); transition: var(--t); pointer-events: none; }
.totop.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.totop:hover { background: var(--teal); }
.totop svg { width: 17px; height: 17px; }

/* ── Lightbox ── */
.lbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lbox.open { display: flex; }
.lbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lbox-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */

/* ── Breadcrumb (in page hero) ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb > span { color: var(--gold-light); font-weight: 600; }
.breadcrumb-sep { font-size: 0.6rem; opacity: 0.4; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative; min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 40px 60px; overflow: hidden;
  margin-top: 0;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,71,0.88) 0%, rgba(15,34,71,0.45) 55%, rgba(15,34,71,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { color: var(--white); font-weight: 400; margin-bottom: 0.5rem; }
.page-hero-sub { font-size: 1rem; color: rgba(240,236,228,0.72); font-weight: 300; line-height: 1.7; }

/* ── Service page hero ── */
.svc-hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.svc-hero-bg { position: absolute; inset: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,71,0.92) 0%, rgba(15,34,71,0.35) 55%, transparent 100%); }
.svc-hero-content { position: relative; z-index: 2; padding: 0 6vw 60px; color: var(--white); max-width: 760px; }
.svc-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.8rem; display: block; }
.svc-hero-content h1 { color: var(--white); font-weight: 300; margin-bottom: 0.8rem; }
.svc-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.svc-hero-content .hero-sub { font-size: 1rem; color: rgba(240,236,228,0.75); font-weight: 300; margin-bottom: 1.8rem; }
.svc-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Service info bar */
.svc-info-bar { background: rgba(15,34,71,0.97); border-bottom: 1px solid var(--border); }
.svc-info-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; }
.svc-info-item { flex: 1; padding: 20px; border-right: 1px solid var(--border); text-align: center; }
.svc-info-item:last-child { border-right: none; }
.svc-info-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 5px; }
.svc-info-value { font-family: var(--fh); font-size: 1rem; color: var(--gold-light); font-weight: 400; }

/* Service about grid */
.svc-about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.svc-about-content h2 { margin-bottom: 0.8rem; }
.svc-about-content p { color: var(--muted); margin-bottom: 1rem; font-size: 0.92rem; line-height: 1.85; }
.svc-about-img { position: relative; }
.svc-about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.svc-about-img-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 18px 22px; font-family: var(--fh); font-size: 0.95rem; font-style: italic;
  line-height: 1.4; max-width: 180px; border-right: 3px solid var(--gold);
}

/* Benefits */
.svc-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-benefit-card { padding: 28px; border: 1px solid var(--border-light); background: var(--white); transition: var(--t); }
.svc-benefit-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.svc-benefit-icon { width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; }
.svc-benefit-icon svg { width: 20px; height: 20px; }
.svc-benefit-card h4 { font-size: 1.05rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.svc-benefit-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* Steps */
.svc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 10px; }
.svc-step { text-align: center; }
.svc-step-num { font-family: var(--fh); font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.3); line-height: 1; margin-bottom: 10px; }
.svc-step h4 { font-size: 1rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.svc-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; }

/* Duration cards */
.dur-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.dur-card { position: relative; text-align: center; padding: 28px 16px; border: 1px solid var(--border-light); transition: var(--t); }
.dur-card:hover, .dur-card.best { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.dur-best-tag { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 12px; white-space: nowrap; }
.dur-time { font-family: var(--fh); font-size: 2rem; font-weight: 400; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.dur-name { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Offer teaser band */
.svc-offer-teaser { background: var(--cream-2); }
.svc-offer-teaser-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 400px 1fr; align-items: center; gap: 60px; }
.svc-offer-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-offer-content { padding: 60px 0; }
.svc-offer-tag { display: inline-block; background: var(--teal); color: var(--white); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 14px; }
.svc-offer-content h2 { margin-bottom: 1rem; }
.svc-offer-content p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.8rem; line-height: 1.8; }

/* Related services sidebar */
.related-services { margin-top: 1.5rem; }
.related-services h5 { font-family: var(--fb); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.related-svc-link { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; background: var(--cream); border: 1px solid var(--border-light); font-size: 0.8rem; font-weight: 600; color: var(--text); transition: var(--t); margin-bottom: 6px; }
.related-svc-link:hover { border-color: var(--gold); color: var(--gold); padding-left: 20px; }

/* Booking card (sidebar) */
.booking-card { background: var(--cream); border: 1px solid var(--border); padding: 32px; margin-bottom: 20px; }
.booking-card h4 { font-size: 1.3rem; margin-bottom: 6px; font-weight: 500; }
.booking-card > p { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.booking-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.82rem; }
.booking-row:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
.booking-row strong { color: var(--text); }
.booking-row span { color: var(--muted); }

/* ── About Page Values ── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value-card { padding: 30px; border: 1px solid var(--border-light); transition: var(--t); }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.value-icon { width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 14px; }
.value-icon svg { width: 20px; height: 20px; }
.value-card h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.value-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }

/* ── Gallery Full ── */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.gallery-page-item { position: relative; overflow: hidden; height: 260px; cursor: pointer; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item::after { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0); transition: var(--t); }
.gallery-page-item:hover::after { background: rgba(201,168,76,0.1); }
.gal-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7); width: 44px; height: 44px; border: 2px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; opacity: 0; transition: var(--t); z-index: 2; }
.gallery-page-item:hover .gal-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ── Offers Full Page ── */
.offers-list { display: flex; flex-direction: column; gap: 2px; }
.offer-row { display: grid; grid-template-columns: 360px 1fr; overflow: hidden; background: var(--white); border: 1px solid var(--border-light); transition: var(--t); }
.offer-row:hover { box-shadow: var(--shadow-md); }
.offer-row-img { position: relative; overflow: hidden; }
.offer-row-img img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.55s; }
.offer-row:hover .offer-row-img img { transform: scale(1.04); }
.offer-row-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: 0.57rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.offer-row-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.offer-row-body h3 { font-size: 1.5rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.offer-row-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; flex: 1; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.c-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--cream-2); }
.c-item:first-child { padding-top: 0; }
.c-icon { width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.c-icon svg { width: 18px; height: 18px; }
.c-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.c-value { font-size: 0.92rem; color: var(--text); font-weight: 600; line-height: 1.5; }
.c-value a { color: var(--teal); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table tr { border-bottom: 1px solid var(--cream-2); }
.hours-table td { padding: 8px 0; font-size: 0.84rem; color: var(--text); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--teal); }
.contact-map-col { display: flex; flex-direction: column; gap: 16px; }
.map-wrap { overflow: hidden; border: 1px solid var(--border-light); }
.map-wrap iframe { display: block; width: 100%; height: 400px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { padding: 0 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-accent { display: none; }
  .about-badge { left: 0; top: 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-quote { display: none; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 280px; }
  .g-item:nth-child(4) { grid-column: span 1; }
  .g-item { height: 220px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .svc-about-grid { grid-template-columns: 1fr; }
  .svc-about-img { order: -1; }
  .svc-about-img img { aspect-ratio: 16/9; }
  .svc-about-img-badge { display: none; }
  .svc-benefits-grid { grid-template-columns: 1fr 1fr; }
  .svc-steps { grid-template-columns: 1fr; text-align: left; }
  .svc-step { display: flex; gap: 20px; align-items: flex-start; }
  .svc-step-num { font-size: 2rem; min-width: 44px; text-align: center; }
  .svc-offer-teaser-inner { grid-template-columns: 1fr; }
  .svc-offer-img img { aspect-ratio: 16/9; }
  .dur-grid { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .offer-row { grid-template-columns: 1fr; }
  .offer-row-img { height: 220px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .topbar { display: none; }
  /* Navbar */
  .navbar { padding: 0 20px; top: 0; }
  .navbar.navbar-solid { top: 0; }
  .navbar.scrolled { top: 0; }
  .nav-center { display: none; }
  .nav-right .nav-tel { display: none; }
  .hamburger { display: flex; }
  /* Hero */
  .hero { height: auto; min-height: 100svh; }
  .hero-content { padding: 120px 20px 60px; max-width: 100%; }
  .hero h1 { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-bar-inner { padding: 0 20px; flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }
  /* Sections */
  .about-grid { gap: 36px; }
  .services-grid { grid-template-columns: 1fr; gap: 3px; }
  .svc-card img { aspect-ratio: 4/3; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item { height: 160px; }
  .g-item:nth-child(1) { grid-column: span 2; height: 220px; }
  .svc-benefits-grid { grid-template-columns: 1fr; }
  .dur-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px 32px; padding: 36px 20px 24px; }
  .footer-main > *:first-child { grid-column: 1 / -1; }
  .footer-main > *:last-child { grid-column: 1 / -1; }
  .footer-about { max-width: 100%; }
  .footer-bar { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .cta-section { padding: 70px 20px; }
  .cta-section-bg { background-attachment: scroll; }
  .page-hero { padding: 0 20px 44px; min-height: 340px; }
  .svc-hero { height: 100svh; }
  .svc-hero-content { padding: 0 20px 44px; }
  .svc-hero-content h1 { font-size: 2.4rem; }
  .svc-info-bar-inner { padding: 0 20px; flex-wrap: wrap; }
  .svc-info-item { flex: 1 1 50%; }
  .svc-info-item:nth-child(even) { border-right: none; }
  .svc-offer-teaser-inner { padding: 0 20px; }
  .svc-offer-content { padding: 40px 0; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .gallery-page-item { height: 180px; }
  .float-cta { bottom: 14px; right: 14px; }
  .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .totop { bottom: 14px; left: 14px; }
  .loc-grid { gap: 36px; }
  .loc-map-wrap iframe { height: 300px; }
  .offer-row { grid-template-columns: 1fr; }
  .offer-row-img { height: 200px; }
  .offer-row-body { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .stats-bar-inner { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-item { height: 220px; }
  .svc-benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
