/* ══════════════════════════════════════
   RESET & CUSTOM PROPERTIES
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f5f5f0;
  --light-grey: #f5f5f5;
  --near-black: #0a0a0a;
  --dark: #1a1816;
  --text-dark: #1a1816;
  --text-light: #f5f5f0;
  --text-muted: #6a6a6a;
  --text-muted-light: #999;
  --mint: #A2D3BE;
  --mint-dim: #7ebfa5;
  --mint-pale: #dff1e8;
  --pink: #F8C9CC;
  --blue: #7EB8D8;
  --gold: rgb(185, 157, 117);
  --gold-hex: #B99D75;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --arabic: 'Cairo', sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-pill: 100px;
  --nav-height: 72px;
  --banner-height: 40px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-y: scroll; }
html[dir="rtl"] { font-family: var(--arabic); }
html[dir="rtl"] body,
html[dir="rtl"] .nav-items,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] button,
html[dir="rtl"] select { font-family: var(--arabic); }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.2;
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Placeholder image blocks */
.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ══════════════════════════════════════
   TOP BANNER
   ══════════════════════════════════════ */
.top-banner {
  background: var(--mint);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1001;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-banner.hidden { display: none; }
.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--dark);
  padding: 4px 8px;
  line-height: 1;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--banner-height);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), top var(--transition);
}
.banner-hidden .navbar { top: 0; }
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-link,
.navbar.scrolled .lang-btn { color: var(--text-dark); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.navbar.scrolled .nav-logo-img {
  filter: none;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-item { position: relative; }
.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  cursor: pointer;
  padding: 8px 0;
  border: none;
  background: none;
}
.nav-link:hover { color: var(--mint); }

/* Dropdown — full-width panel (Third Space style) */
.nav-dropdown {
  position: fixed;
  top: calc(var(--banner-height) + var(--nav-height));
  left: 0;
  right: 0;
  background: var(--near-black);
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.banner-hidden .nav-dropdown { top: var(--nav-height); }
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-card {
  flex: 1;
  position: relative;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: opacity var(--transition);
}
.dropdown-card:last-child { border-right: none; }
.dropdown-card:hover { opacity: 0.85; }
.dropdown-card-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #222 100%);
}
.dropdown-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  z-index: 1;
}
.dropdown-card-title {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  z-index: 2;
}
/* "+" indicator for dropdown parents */
.nav-item.has-dropdown > .nav-link::after {
  content: ' +';
  font-weight: 300;
  opacity: 0.7;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: border-color var(--transition);
}
.navbar.scrolled .lang-toggle { border-color: rgba(0,0,0,0.15); }
.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: none;
  background: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active { color: var(--white); background: rgba(255,255,255,0.15); }
.navbar.scrolled .lang-btn { color: var(--text-muted); }
.navbar.scrolled .lang-btn.active { color: var(--text-dark); background: rgba(0,0,0,0.06); }

.btn-book {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-width: 180px;
  text-align: center;
}
.btn-book:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.navbar.scrolled .btn-book {
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.3);
}
.navbar.scrolled .btn-book:hover { background: rgba(0,0,0,0.04); border-color: var(--text-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a, .mobile-menu button {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu .mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}
.mobile-menu .btn-book {
  margin-top: 16px;
  background: var(--mint);
  color: var(--dark);
  border-color: var(--mint);
}
.mobile-menu .btn-book:hover { background: var(--mint-dim); border-color: var(--mint-dim); }

/* Sub-nav removed — single navbar only */

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 40%, #1a2a20 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.btn-ghost-hero {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  color: var(--white);
  transition: all var(--transition);
}
.btn-ghost-hero:hover { background: var(--white); color: var(--dark); }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-stat-sep { width: 4px; height: 4px; background: var(--mint); border-radius: 50%; }

/* ══════════════════════════════════════
   INTRO TEXT (MAISON SANTE STYLE)
   ══════════════════════════════════════ */
.intro {
  background: var(--white);
  padding: 120px 24px;
  text-align: center;
}
.intro .eyebrow { color: var(--mint); }
.intro h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 24px;
}
.intro p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   CAROUSEL
   ══════════════════════════════════════ */
.carousel-section {
  width: 100%;
  overflow: hidden;
  height: 500px;
  background: var(--near-black);
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: carouselScroll 50s linear infinite;
}
.carousel-slide {
  width: 600px;
  height: 500px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #222, #1a1a1a);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
}
.carousel-label {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-3600px); }
}

/* ══════════════════════════════════════
   SERVICE SECTIONS (THIRD SPACE STYLE)
   ══════════════════════════════════════ */
.svc-section { padding: 100px 0; }
.svc-section.dark { background: var(--near-black); color: var(--text-light); }
.svc-section.light { background: var(--white); color: var(--text-dark); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-content .eyebrow { color: var(--mint); }
.svc-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.svc-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.8;
}
.svc-list { border-top: 1px solid rgba(128,128,128,0.2); }
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(128,128,128,0.2);
  cursor: default;
  transition: padding-left var(--transition);
}
.svc-row:hover { padding-left: 8px; }
.svc-row span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.svc-row .arrow {
  font-size: 18px;
  opacity: 0.4;
  transition: opacity var(--transition), transform var(--transition);
}
.svc-row:hover .arrow { opacity: 1; transform: translateX(4px); }
.svc-note {
  margin-top: 24px;
  font-size: 13px;
  font-style: italic;
  opacity: 0.6;
}
.svc-image {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ══════════════════════════════════════
   PROGRAMS
   ══════════════════════════════════════ */
.programs-section {
  background: var(--near-black);
  color: var(--text-light);
  padding: 100px 0;
}
.programs-section .eyebrow { color: var(--mint); }
.programs-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 48px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.program-card:hover { transform: translateY(-4px); }
.program-card .program-accent {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.program-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 4px;
}
.program-card .program-duration {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 12px;
}
.program-card .program-tagline {
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 20px;
}
.program-card .program-features {
  font-size: 13px;
  line-height: 2;
  opacity: 0.6;
}
.program-card .learn-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  transition: color var(--transition);
}
.program-card .learn-more:hover { color: var(--white); }
.programs-cta {
  text-align: center;
}
.programs-cta a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  border-bottom: 1px solid var(--mint);
  padding-bottom: 2px;
  transition: color var(--transition);
}

/* ══════════════════════════════════════
   THE CYCLE
   ══════════════════════════════════════ */
.cycle-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.cycle-section .eyebrow { color: var(--mint); }
.cycle-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 60px;
}
.cycle-diagram {
  max-width: 700px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   JOURNEY
   ══════════════════════════════════════ */
.journey-section {
  background: var(--near-black);
  color: var(--text-light);
  padding: 100px 0;
}
.journey-section .eyebrow { color: var(--mint); }
.journey-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 48px;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.journey-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.journey-card-img {
  height: 200px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}
.journey-card-body { padding: 24px; }
.journey-card .step-num {
  font-size: 32px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--mint);
  margin-bottom: 8px;
}
.journey-card h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}
.journey-card ul {
  font-size: 13px;
  line-height: 2;
  opacity: 0.7;
  padding-left: 16px;
  list-style: disc;
}
.journey-cta { text-align: center; }
.btn-mint {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--dark);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-mint:hover { background: var(--mint-dim); }

/* ══════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════ */
.reviews-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.reviews-section .eyebrow { color: var(--mint); }
.reviews-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 48px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.review-card {
  background: var(--light-grey);
  border-radius: var(--radius-md);
  padding: 36px;
}
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.review-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.reviews-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.reviews-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.3;
}
.reviews-dots span.active { opacity: 1; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-section {
  background: var(--light-grey);
  padding: 100px 0;
}
.contact-section .eyebrow { color: var(--mint); }
.contact-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-left h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
}
.contact-right {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-right h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: var(--light-grey);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--mint); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field.full { grid-column: 1 / -1; }
.btn-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--mint-dim); }

/* ══════════════════════════════════════
   INSURANCE
   ══════════════════════════════════════ */
.insurance-section {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.insurance-section h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
}
.insurance-section .subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.insurance-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.insurance-form .form-field { margin-bottom: 16px; }
.upload-zone {
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--light-grey);
}
.upload-zone:hover { border-color: var(--mint); background: var(--mint-pale); }
.upload-zone p { font-size: 14px; color: var(--text-muted); }
.upload-zone .upload-icon { font-size: 32px; margin-bottom: 8px; opacity: 0.4; }

/* ══════════════════════════════════════
   COWORKING & JUICE BAR
   ══════════════════════════════════════ */
.cowork-section {
  background: var(--off-white);
  padding: 80px 0;
}
.cowork-header {
  text-align: center;
  margin-bottom: 48px;
}
.cowork-header .eyebrow { color: var(--mint); }
.cowork-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--text-dark);
}
.cowork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.cowork-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
}
.cowork-card-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #222 100%);
}
.cowork-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}
.cowork-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}
.cowork-card-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.cowork-card-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.cowork-text-center {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}
/* ══════════════════════════════════════
   INSTAGRAM
   ══════════════════════════════════════ */
.ig-section {
  background: var(--light-grey);
  padding: 60px 0;
  text-align: center;
}
.ig-section .eyebrow { color: var(--mint); margin-bottom: 12px; }
.ig-section h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 24px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.ig-cell {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius);
}
.ig-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--mint);
  padding-bottom: 2px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--mint); }
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.payment-icon {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}
.payment-icon svg {
  height: 20px;
  width: auto;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--mint); color: var(--dark); }

/* ══════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ══════════════════════════════════════
   RESPONSIVE
   (matching blissnowlife.com breakpoints)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-grid { gap: 2.5rem; }
}

@media (max-width: 1500px) {
  .navbar { padding: 0 1.5rem; }
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .btn-book.desktop-only { display: none; }
  .lang-toggle { margin-left: auto; margin-right: 0.6rem; }
}

@media (max-width: 768px) {
  /* ── Banner ── */
  .top-banner {
    font-size: 0.65rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    height: auto;
    min-height: var(--banner-height);
    line-height: 1.4;
  }
  .top-banner a { display: block; }
  .banner-close { right: 0.5rem; font-size: 1rem; }

  /* ── Navbar ── */
  .navbar { padding: 0 1rem; grid-template-columns: auto 1fr auto; }
  .nav-logo-img { height: 28px; }
  .lang-btn { font-size: 0.65rem; padding: 0.3rem 0.5rem; }

  /* ── Hero ── */
  .hero { min-height: 100svh; padding: 6rem 1.5rem 3rem; }
  .hero-content { padding: 0; }
  .hero h1 { font-size: clamp(1.8rem, 6.5vw, 2.8rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.75rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; }
  .btn-ghost-hero {
    padding: 0.9rem 1.5rem;
    font-size: 0.65rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-stats {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stat { font-size: 0.55rem; letter-spacing: 0.12em; }
  .hero-scroll { display: none; }

  /* ── Intro ── */
  .intro { padding: 4rem 1.5rem; }
  .intro h2 { font-size: clamp(1.3rem, 5vw, 2rem); }
  .intro p { font-size: 0.9rem; }

  /* ── Carousel ── */
  .carousel-slide { width: 280px; height: 300px; }
  .carousel-section { height: 300px; }
  @keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1680px); }
  }

  /* ── Service sections ── */
  .svc-section { padding: 4rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-content h2 { font-size: clamp(1.3rem, 5vw, 2rem); }
  .svc-image { height: 260px; }
  .svc-row span { font-size: 0.875rem; }
  .svc-row { padding: 1rem 0; }
  .svc-note { font-size: 0.8rem; }

  /* ── Programs ── */
  .programs-section { padding: 4rem 1.5rem; }
  .programs-grid { grid-template-columns: 1fr; gap: 1rem; }
  .program-card { padding: 2rem 1.5rem; }
  .program-card h3 { font-size: 1.35rem; }
  .program-card .program-tagline { font-size: 0.85rem; }
  .program-card .program-features { font-size: 0.8rem; }

  /* ── Cycle ── */
  .cycle-section { padding: 4rem 1.5rem; }
  .cycle-section h2 { font-size: clamp(1.3rem, 5vw, 2rem); }

  /* ── Journey ── */
  .journey-section { padding: 4rem 1.5rem; }
  .journey-grid { grid-template-columns: 1fr; gap: 1rem; }
  .journey-card-img { height: 160px; }
  .journey-card h3 { font-size: 1.1rem; }

  /* ── Reviews ── */
  .reviews-section { padding: 4rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-right { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section h2 { font-size: clamp(1.3rem, 5vw, 2rem); }

  /* ── Insurance ── */
  .insurance-section { padding: 4rem 1.5rem; }
  .insurance-section h2 { font-size: clamp(1.3rem, 5vw, 2rem); }

  /* ── Co-working ── */
  .cowork-grid { grid-template-columns: 1fr; }
  .cowork-card { height: 240px; }

  /* ── Instagram ── */
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── Footer ── */
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; align-items: flex-start; }

  /* ── WhatsApp FAB ── */
  .whatsapp-fab { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 0.8rem; }
  .nav-logo-img { height: 22px; }
  .lang-toggle { margin-left: auto; margin-right: 0.3rem; }
  .lang-btn { font-size: 0.6rem; padding: 0.25rem 0.45rem; }
  .container { padding: 0 1rem; }
  .svc-section { padding: 3rem 1rem; }
  .programs-section { padding: 3rem 1rem; }
  .cycle-section { padding: 3rem 1rem; }
  .journey-section { padding: 3rem 1rem; }
  .reviews-section { padding: 3rem 1rem; }
  .contact-section { padding: 3rem 1rem; }
  .insurance-section { padding: 3rem 1rem; }
  .intro { padding: 3rem 1rem; }
  .hero { padding: 5rem 1rem 2.5rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; margin-bottom: 1.5rem; }
  .svc-image { height: 200px; }
  .contact-right { padding: 1.25rem 1rem; }
  .footer { padding: 3rem 1rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
