/* ============================================
   RUSSIAN SPA CENTRE — PREMIUM CSS
   Design: Dark luxury · Gold accents · Smooth animations
============================================ */

/* ====== CSS VARIABLES ====== */
:root {
  --gold: #7C4DBC;
  --gold-light: #9B6FD1;
  --gold-pale: #F3ECFB;
  --dark: #F9F7FD;
  --dark-2: #FFFFFF;
  --dark-3: #FFFFFF;
  --cream: #16082E;
  --muted: #6B5F8A;
  --white: #ffffff;
  --border: rgba(124,77,188,0.15);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 8px 30px rgba(124,77,188,0.06);
  --shadow-gold: 0 12px 32px rgba(124,77,188,0.14);
  --transition: all 0.3s ease;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ====== CONTAINER ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

/* Solid purple — Navbar Book Now */
.btn-gold {
  background: linear-gradient(135deg, #A988D8 0%, #7C4DBC 55%, #6A3FAE 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124,77,188,0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(124,77,188,0.5), inset 0 1px 0 rgba(255,255,255,0.28);
  filter: brightness(1.06);
  color: #fff;
}

/* Outline — Hero buttons (both Call & WhatsApp) */
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-2px);
}

/* Outline on light bg */
.btn-outline-dark {
  border: 1.5px solid rgba(124,77,188,0.5);
  color: var(--gold);
  background: rgba(124,77,188,0.04);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(124,77,188,0.28);
}

/* Green WhatsApp fill */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  color: #fff;
}
.btn-wa {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366;
}
.btn-wa:hover { background: rgba(37,211,102,0.25); }
.btn-lg { padding: 17px 40px; font-size: 0.75rem; letter-spacing: 0.2em; }
.btn-sm { padding: 9px 20px; font-size: 0.65rem; }

/* ====== SECTION COMMON ====== */
section { padding: 90px 0; }
.section-dark { background: var(--dark-2); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ====== NEW THERAPISTS SECTION STYLING ====== */
.ther-sec { 
  padding: 90px 24px; 
  max-width: 1280px; 
  margin: 0 auto; 
  background: var(--dark);
}
.ther-head { 
  text-align: center; 
  max-width: 640px; 
  margin: 0 auto 56px; 
}
.ther-head .section-label { 
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ther-head .section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 8px;
}
.ther-head .section-title em {
  color: var(--gold);
  font-style: italic;
}
.ther-head p { 
  font-size: 0.95rem; 
  color: var(--muted); 
  margin-top: 14px; 
  line-height: 1.85; 
}
.ther-category {
  margin-bottom: 70px;
}
.ther-category:last-child {
  margin-bottom: 0;
}
.ther-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-pale);
}
.ther-category-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ther-category-title .flag {
  font-size: 2rem;
}
.ther-category-title .flag-img {
  width: 36px;
  height: auto;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.ther-category-title span {
  color: var(--gold);
}
.ther-category-count {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--gold-pale);
  padding: 4px 16px;
  border-radius: 100px;
  font-weight: 500;
}
.ther-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ther-card {
  background: #fff;
  border: 1px solid var(--gold-pale);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.ther-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
  border-color: rgba(124,77,188,0.3);
}
.ther-photo {
  position: relative;
  aspect-ratio: 3/3.6;
  overflow: hidden;
  background: #f0ece6;
}
.ther-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.ther-card:hover .ther-photo img {
  transform: scale(1.05);
}
.ther-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}
.ther-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ther-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ther-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.ther-name-row h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
}
.ther-years {
  font-size: 0.62rem;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  font-weight: 600;
}
.ther-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.ther-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ther-amt {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}
.ther-dur {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ther-actions {
  display: flex;
  gap: 8px;
}
.ther-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.ther-btn-call {
  background: var(--gold);
  color: #fff;
}
.ther-btn-call:hover {
  background: #5E348F;
  color: #fff;
  transform: translateY(-1px);
}
.ther-btn-wa {
  background: #25D366;
  color: #fff;
}
.ther-btn-wa:hover {
  background: #1EBE57;
  color: #fff;
  transform: translateY(-1px);
}

/* ====== FLOATING BUTTONS ====== */
.float-btn {
  position: fixed;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.whatsapp-btn { bottom: 100px; background: linear-gradient(135deg, #128c7e, #25d366); color: white; }
.call-btn { bottom: 36px; background: linear-gradient(135deg, #A988D8 0%, #7C4DBC 55%, #6A3FAE 100%); color: #fff; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); }

/* ====== HEADER ====== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: var(--transition);
}
/* --- Default: floating over hero image (transparent bg) --- */
.site-header .logo-icon { font-size: 1.8rem; color: #fff; filter: drop-shadow(0 0 8px rgba(255,255,255,0.4)); }
.site-header .logo-img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 8px rgba(255,255,255,0.3)); transition: var(--transition); }
.site-header .logo-main { display: block; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: #fff; line-height: 1.1; }
.site-header .logo-sub { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); }
.site-header .nav-link { padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); border-radius: 8px; transition: var(--transition); }
.site-header .nav-link:hover, .site-header .nav-link.active { color: #fff; background: rgba(255,255,255,0.15); }
.site-header .hamburger span { background: #fff; }

/* --- Scrolled: light background --- */
.site-header.scrolled {
  background: rgba(249, 247, 253, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(124,77,188,0.08);
}
.site-header.scrolled .logo-icon { color: var(--gold); filter: drop-shadow(0 0 8px rgba(124,77,188,0.4)); }
.site-header.scrolled .logo-img { filter: drop-shadow(0 2px 6px rgba(180,100,130,0.5)); }
.site-header.scrolled .logo-main { color: var(--cream); }
.site-header.scrolled .logo-sub { color: var(--gold); }
.site-header.scrolled .nav-link { color: var(--muted); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--gold); background: var(--gold-pale); }
.site-header.scrolled .hamburger span { background: var(--gold); }

/* --- Layout (shared) --- */
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; position: relative; z-index: 10; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; transition: var(--transition); }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.0) saturate(1.05);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-img {
  transform: scale(1.0);
}
.hero-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,77,188,0.15);
  border: 1px solid rgba(124,77,188,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease both;
}
.star-icon { color: var(--gold); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title em { font-style: italic; color: #ffffff; font-weight: 400; }
.hero-location { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 20px; letter-spacing: 0; line-height: 1.8; animation: fadeInUp 0.8s ease 0.15s both; }
.hero-location span { color: rgba(255,255,255,0.9); font-weight: 400; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 24px; line-height: 1.8; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-offer {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7c948 50%, #ff6b35 100%);
  background-size: 200% 200%;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow:
    0 0 18px rgba(255,107,53,0.5),
    0 0 40px rgba(247,201,72,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation:
    fadeInUp 0.8s ease 0.25s both,
    offerPulse 2s ease-in-out 1.2s infinite,
    offerGradient 3s ease infinite;
  cursor: pointer;
  position: relative;
}
.hero-offer::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7c948, #ff6b35);
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  animation: offerGlow 2s ease-in-out infinite;
}
@keyframes offerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(255,107,53,0.5), 0 0 40px rgba(247,201,72,0.25); }
  50% { transform: scale(1.05); box-shadow: 0 0 28px rgba(255,107,53,0.7), 0 0 60px rgba(247,201,72,0.4); }
}
@keyframes offerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes offerGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.hero-actions { display: flex; flex-wrap: nowrap; gap: 16px; margin-bottom: 56px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }
.stat-item { display: flex; flex-direction: column; padding: 0 28px; }
.stat-item:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ====== PARTNERS BAR ====== */
.partners-bar {
  padding: 24px 0;
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; }
.partners-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
.partner-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; }
.partner-dot { color: var(--border); }

/* ====== ABOUT ====== */
.about-section { background: var(--dark-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-inner {
  height: 500px;
  background: linear-gradient(135deg, rgba(124,77,188,0.08), rgba(124,77,188,0.02)), linear-gradient(to bottom right, var(--gold-pale), var(--dark));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-img-inner::before { content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 8rem; color: rgba(124,77,188,0.08); }
.about-img-inner::after { content: 'Russian Spa Centre'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) translateY(50px); font-family: var(--font-serif); font-size: 1.2rem; color: rgba(124,77,188,0.25); white-space: nowrap; }
.about-img-real {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-img-frame:hover .about-img-real { transform: scale(1.03); }
.about-badge-overlay { position: absolute; bottom: 24px; right: 24px; background: var(--gold); color: #fff; border-radius: var(--radius); padding: 16px 20px; text-align: center; }
.badge-num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about-text-col { display: flex; flex-direction: column; gap: 20px; }
.about-text-col p { color: var(--muted); line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--cream); }
.feature-icon { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ====== SERVICES ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.5); box-shadow: var(--shadow-gold); }
.service-card.featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(201,168,76,0.08), var(--dark-3)); }
.service-icon { font-size: 2.2rem; }
.service-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #1a1000; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 50px; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--gold); }
.service-card.featured h3 { color: #2d1b69; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.service-price { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.service-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.services-cta { text-align: center; margin-top: 48px; }

/* ====== WHY US ====== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); padding: 32px 24px; transition: var(--transition); text-align: center; box-shadow: var(--shadow); }
.why-card:hover { transform: translateY(-4px); border-color: rgba(124, 77, 188, 0.4); box-shadow: var(--shadow-gold); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ====== GALLERY ====== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 200px); gap: 16px; }
.gallery-item { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: var(--transition); cursor: pointer; }
.gallery-item:hover { border-color: var(--gold); transform: scale(1.02); }
.gallery-item.large { grid-column: span 2; }
.gallery-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; color: var(--gold); background: linear-gradient(135deg, var(--gold-pale), #fff); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(to top, rgba(22,8,46,0.85), transparent); color: #fff; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ====== PRICING ====== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.pricing-card:hover { border-color: rgba(124, 77, 188, 0.4); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(135deg, rgba(124,77,188,0.1), #fff); }
.pricing-card.highlight { border-color: rgba(124, 77, 188, 0.5); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 14px; border-radius: 50px; white-space: nowrap; }
.price-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--cream); }
.price-duration { font-size: 0.78rem; color: var(--muted); }
.price-amount { font-size: 1.6rem; font-weight: 700; color: var(--gold); }

/* ====== TESTIMONIALS ====== */
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.rating-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--cream); }
.rating-count { color: var(--muted); font-size: 0.88rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--gold-pale); border-radius: var(--radius-lg); padding: 32px 24px; display: flex; flex-direction: column; gap: 16px; transition: var(--transition); box-shadow: var(--shadow); }
.testimonial-card:hover { border-color: rgba(124,77,188,0.3); box-shadow: var(--shadow-gold); }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-text { font-size: 0.9rem; color: #555; line-height: 1.8; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.reviewer-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.reviewer-info strong { font-size: 0.92rem; color: #2d1b69; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reviewer-info span { font-size: 0.76rem; color: var(--muted); }
.review-service { color: var(--gold) !important; font-weight: 500 !important; }

/* ====== FAQ ====== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(124,77,188,0.4); }
.faq-question { width: 100%; padding: 20px 24px; text-align: left; font-size: 0.95rem; font-weight: 500; color: var(--gold); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-arrow { color: var(--gold); font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ====== CTA SECTION ====== */
.cta-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #16082E 0%, #30105C 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(155,111,209,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(155,111,209,0.08) 0%, transparent 50%);
}
.cta-overlay { position: absolute; inset: 0; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.cta-desc { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ====== FOOTER ====== */
.site-footer { background: var(--gold-pale); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 24px 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.logo-img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }

.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-phone, .footer-email { font-size: 0.88rem; color: var(--gold); transition: var(--transition); }
.footer-phone:hover, .footer-email:hover { color: var(--gold-light); }
.footer-col h4 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-address-bar { background: #fff; border-top: 1px solid var(--border); padding: 16px 0; text-align: center; }
.footer-address-bar p { font-size: 0.82rem; color: var(--muted); }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(124,77,188,0.15); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-credits { color: var(--gold) !important; }

/* ====== SCROLL TO TOP ====== */
.scroll-top-btn {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.9rem;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ====== ANIMATIONS ====== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.45s ease-out, transform 0.45s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(249, 247, 253, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 800;
    padding: 32px;
  }
  .main-nav.open { display: flex; }
  .nav-link { font-size: 1.4rem; padding: 12px 24px; color: var(--cream); }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 12px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { order: 2; }
  .about-img-inner { height: 280px; }
  .therapists-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 22px 18px; gap: 12px; }
  .review-text { font-size: 0.86rem; }
  .reviewer-avatar { width: 38px; height: 38px; font-size: 1rem; }
  .reviewer-info strong { font-size: 0.88rem; }
  .reviewer-info span { font-size: 0.73rem; }
  .rating-summary { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .whatsapp-btn { bottom: 96px; }
  .call-btn { bottom: 32px; }
  .scroll-top-btn { bottom: 156px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
}

/* ============================================
   MOBILE COMPATIBILITY LAYER
   Added for phone & tablet responsiveness
   (Does not override any existing desktop styles)
============================================ */

/* ── Tablet: 1024px ─────────────────────── */
@media (max-width: 1024px) {
  /* Therapist grid: 4 → 3 columns */
  .ther-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  /* Testimonials: 3 → 2 columns */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: 768px ──────────────────────── */
@media (max-width: 768px) {
  /* Container side padding tightened */
  .container {
    padding: 0 16px;
  }

  /* Hero section padding for mobile */
  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
    max-width: 100%;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-offer {
    font-size: 0.82rem;
    padding: 7px 14px;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero-stats {
    gap: 12px;
  }
  .stat-item {
    padding: 0 14px;
  }
  .stat-num {
    font-size: 1.6rem;
  }

  /* Therapist section: 3 → 2 columns on tablet */
  .ther-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Therapist section heading */
  .ther-head .section-title {
    font-size: 2rem;
  }
  .ther-head {
    margin-bottom: 36px;
  }

  /* Therapist category header stacks on mobile */
  .ther-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ther-category-title {
    font-size: 1.4rem;
  }
  .ther-category {
    margin-bottom: 48px;
  }

  /* Therapist card body — comfortable spacing */
  .ther-body {
    padding: 16px 16px 18px;
  }
  .ther-name-row h3 {
    font-size: 1.1rem;
  }
  .ther-years {
    font-size: 0.6rem;
  }
  .ther-desc {
    font-size: 0.78rem;
  }
  .ther-amt {
    font-size: 1.2rem;
  }
  .ther-btn {
    font-size: 0.72rem;
    padding: 10px 8px;
  }

  /* Section headings */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* CTA section */
  .cta-section {
    padding: 70px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Pricing cards */
  .pricing-card {
    padding: 22px 16px;
  }

  /* Why us grid: keep readable */
  .why-card {
    padding: 24px 18px;
  }

  /* Partners bar wraps nicely */
  .partners-logos {
    gap: 6px 14px;
  }

  /* Footer tighter */
  .footer-grid {
    padding: 40px 16px 32px;
  }

  /* Scroll-to-top repositioned */
  .scroll-top-btn {
    right: 16px;
    bottom: 150px;
  }
}

/* ── Small Mobile: 480px ────────────────── */
@media (max-width: 480px) {
  /* Therapist grid: 1 column — full width cards, easy to read */
  .ther-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Taller, portrait photo on single column */
  .ther-photo {
    aspect-ratio: 4/3;
  }

  /* Comfortable card body */
  .ther-body {
    padding: 18px 18px 20px;
  }
  .ther-name-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .ther-name-row h3 {
    font-size: 1.2rem;
  }
  .ther-years {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  .ther-desc {
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.7;
  }
  .ther-amt {
    font-size: 1.3rem;
  }
  .ther-dur {
    font-size: 0.7rem;
  }
  .ther-actions {
    flex-direction: row;
    gap: 10px;
  }
  .ther-btn {
    font-size: 0.78rem;
    padding: 12px 10px;
    gap: 6px;
  }

  /* Category header on very small */
  .ther-category-title {
    font-size: 1.3rem;
    gap: 8px;
  }
  .ther-category-title .flag {
    font-size: 1.6rem;
  }

  /* Section label */
  .section-label {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  /* Hero fonts */
  .hero-content {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
  .hero-location {
    font-size: 0.82rem;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.88rem;
    padding: 16px 16px;
  }
  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 0.82rem;
  }

  /* Float buttons spaced for thumb reach */
  .whatsapp-btn {
    bottom: 88px;
  }
  .call-btn {
    bottom: 28px;
  }
  .scroll-top-btn {
    bottom: 148px;
    right: 12px;
  }

  /* CTA */
  .cta-section {
    padding: 56px 0;
  }
  .cta-title {
    font-size: 1.7rem;
  }
  .cta-desc {
    font-size: 0.9rem;
  }
}

/* ── Extra Small: 360px (small Android phones) ── */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  /* Single column — already set at 480px, keep it */
  .ther-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  /* Even tighter card body on very small phones */
  .ther-body {
    padding: 14px 14px 16px;
  }
  .ther-name-row h3 {
    font-size: 1.05rem;
  }
  .ther-btn {
    font-size: 0.72rem;
    padding: 11px 8px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .stat-item {
    padding: 0 10px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.88rem;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .footer-grid {
    padding: 32px 12px 24px;
  }
}

/* ============================================
   MOBILE DRAWER — Full-screen slide-in nav
   Matches the premium reference design
============================================ */

/* Overlay backdrop */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 8, 46, 0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 92vw);
  height: 100%;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 40px rgba(124, 77, 188, 0.14);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(124, 77, 188, 0.1);
  background: #faf8fd;
  flex-shrink: 0;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.drawer-logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}
.drawer-logo-sub {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 2px;
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.drawer-close:hover {
  background: var(--gold);
  color: #fff;
}

/* EXPLORE label */
.drawer-explore-label {
  padding: 20px 20px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Nav list */
.drawer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 12px;
}

/* Nav item */
.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  position: relative;
}
.drawer-nav-item:hover,
.drawer-nav-item.active {
  background: var(--gold-pale);
  color: var(--gold);
}
.drawer-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(124, 77, 188, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  background: #fff;
}
.drawer-nav-label {
  flex: 1;
}
.drawer-dropdown-arrow {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.drawer-nav-item.dropdown-open .drawer-dropdown-arrow {
  transform: rotate(180deg);
}

/* Locations dropdown */
.drawer-dropdown-menu {
  display: none;
  flex-direction: column;
  background: var(--gold-pale);
  border-radius: 10px;
  margin: 0 12px 4px 62px;
  overflow: hidden;
}
.drawer-dropdown-menu.open {
  display: flex;
}

/* Location search box */
.drawer-location-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(124, 77, 188, 0.06);
  border-bottom: 1px solid rgba(124, 77, 188, 0.1);
}
.drawer-location-search svg {
  flex-shrink: 0;
  color: var(--muted);
}
.drawer-location-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cream);
  outline: none;
}
.drawer-location-search input::placeholder {
  color: var(--muted);
}

/* Scrollable location list */
.drawer-locations-list {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 77, 188, 0.3) transparent;
}
.drawer-locations-list::-webkit-scrollbar {
  width: 4px;
}
.drawer-locations-list::-webkit-scrollbar-track {
  background: transparent;
}
.drawer-locations-list::-webkit-scrollbar-thumb {
  background: rgba(124, 77, 188, 0.35);
  border-radius: 4px;
}

.drawer-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 0.85rem;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.18s;
  border-bottom: 1px solid rgba(124, 77, 188, 0.08);
}
.drawer-dropdown-item svg {
  flex-shrink: 0;
  color: var(--gold);
}
.drawer-dropdown-item:last-child {
  border-bottom: none;
}
.drawer-dropdown-item:hover {
  background: rgba(124, 77, 188, 0.1);
  color: var(--gold);
}

/* CTA buttons at drawer bottom */
.drawer-cta {
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(124, 77, 188, 0.1);
  flex-shrink: 0;
  background: #fff;
}
.drawer-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #A988D8 0%, #7C4DBC 55%, #6A3FAE 100%);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(124, 77, 188, 0.32);
  letter-spacing: 0.02em;
}
.drawer-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 77, 188, 0.44);
}
.drawer-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #25D366;
  color: #25D366;
  text-decoration: none;
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.drawer-cta-whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

/* Only show drawer on mobile; keep old main-nav on desktop */
@media (min-width: 769px) {
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE COMPATIBILITY
   Touch optimization · Safe-area · Tap targets
   Text readability · Notch support · Zoom fix
============================================ */

/* ── Global touch optimization ─────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Remove cursor glow on touch devices (saves battery & prevents ghost elements) */
  body > div[style*="border-radius: 50%"][style*="pointer-events: none"] {
    display: none !important;
  }

  /* Remove hover-dependent transforms on cards (feels janky on touch) */
  .service-card:hover,
  .why-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .ther-card:hover {
    transform: none;
  }

  /* Ensure all tappable elements have min 44px touch target (WCAG 2.5.8) */
  .btn,
  .nav-link,
  .ther-btn,
  .float-btn,
  .hamburger,
  .drawer-close,
  .drawer-nav-item,
  .faq-question,
  .filter-btn,
  .loc-tab-btn,
  .loc-item {
    min-height: 44px;
  }

  /* Remove tap highlight on iOS/Android */
  a, button, .drawer-nav-item, .faq-question, .loc-item {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ── Prevent zoom on input focus (iOS Safari) ── */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ── Safe-area padding for notched phones (iPhone X+, Android punch-holes) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .float-btn.call-btn {
    bottom: calc(36px + env(safe-area-inset-bottom));
  }
  .float-btn.whatsapp-btn {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }
  .scroll-top-btn {
    bottom: calc(160px + env(safe-area-inset-bottom));
  }
  .drawer-cta {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  @media (max-width: 768px) {
    .float-btn.call-btn {
      bottom: calc(32px + env(safe-area-inset-bottom));
    }
    .float-btn.whatsapp-btn {
      bottom: calc(96px + env(safe-area-inset-bottom));
    }
    .scroll-top-btn {
      bottom: calc(156px + env(safe-area-inset-bottom));
    }
  }

  @media (max-width: 480px) {
    .float-btn.call-btn {
      bottom: calc(28px + env(safe-area-inset-bottom));
    }
    .float-btn.whatsapp-btn {
      bottom: calc(88px + env(safe-area-inset-bottom));
    }
    .scroll-top-btn {
      bottom: calc(148px + env(safe-area-inset-bottom));
    }
  }
}

/* ── Landscape phone: tighter hero ─────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .hero-content {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .hero-stats {
    gap: 12px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ── Page hero mobile padding (inner pages) ── */
@media (max-width: 768px) {
  .page-hero,
  .svc-hero,
  .loc-hero {
    padding: 110px 20px 60px;
  }
}
@media (max-width: 480px) {
  .page-hero,
  .svc-hero,
  .loc-hero {
    padding: 100px 16px 48px;
  }
  .page-hero h1,
  .svc-hero h1,
  .loc-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .page-hero p,
  .svc-hero-text,
  .loc-hero-text {
    font-size: 0.92rem;
  }
  .breadcrumb {
    font-size: 0.78rem;
  }
}

/* ── About page mobile fixes ───────────────── */
@media (max-width: 600px) {
  .story-img-main {
    height: 280px;
  }
  .story-badge {
    right: 12px;
    bottom: -16px;
    padding: 14px 20px;
  }
  .story-badge-num {
    font-size: 1.8rem;
  }
  .value-card {
    padding: 28px 20px;
  }
  .team-stat {
    padding: 24px 16px;
  }
  .team-stat-num {
    font-size: 2rem;
  }
  .timeline-content {
    padding: 18px;
  }
}

/* ── Contact page mobile fixes ─────────────── */
@media (max-width: 600px) {
  .contact-card {
    padding: 24px 20px;
  }
  .contact-card-value {
    font-size: 1.05rem;
    word-break: break-all;
  }
  .map-block {
    height: 260px;
  }
  .hours-table-row {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .reach-us-card {
    padding: 24px 20px;
  }
  .reach-us-card h3 {
    font-size: 1.25rem;
  }
}

/* ── Gallery page mobile fixes ─────────────── */
@media (max-width: 600px) {
  .gallery-page {
    padding: 48px 0;
  }
  .gallery-filter {
    gap: 8px;
    margin-bottom: 32px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.82rem;
  }
  /* Touch-friendly gallery overlay — always visible on mobile */
  .gal-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(22,8,46,0.7) 0%, transparent 60%);
  }
  .gal-zoom-icon {
    display: none;
  }
  /* Lightbox touch-friendly close */
  .lightbox-close {
    top: 12px;
    right: 12px;
    position: fixed;
    font-size: 2.5rem;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .lightbox-inner {
    max-width: 96vw;
  }
  .lightbox-img {
    max-width: 96vw;
    max-height: 75vh;
    border-radius: 8px;
  }
}

/* ── Locations page mobile fixes ───────────── */
@media (max-width: 600px) {
  .loc-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-stat-num {
    font-size: 1.6rem;
  }
  .loc-stat-item {
    padding: 16px 12px;
  }
  .loc-filter-tabs {
    gap: 8px;
    padding: 0 4px;
  }
  .loc-tab-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
  .loc-card-body {
    padding: 16px 16px 18px;
  }
  .loc-card-name {
    font-size: 1.15rem;
  }
  .loc-actions {
    flex-direction: column;
    gap: 8px;
  }
  .loc-btn {
    padding: 12px 10px;
    font-size: 0.8rem;
  }
}

/* ── Pricing page mobile fixes ─────────────── */
@media (max-width: 600px) {
  .pricing-full-card {
    padding: 24px 18px;
  }
  .pfc-amount {
    font-size: 1.6rem;
  }
  .pfc-actions {
    gap: 8px;
  }
  .pfc-actions .btn {
    font-size: 0.82rem;
    padding: 12px 12px;
  }
  .inclusion-card {
    padding: 20px 16px;
  }
  .offer-banner {
    font-size: 0.88rem;
    padding: 12px 16px;
  }
}

/* ── Ensure no horizontal scroll on any device ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Smooth scrolling disabled for reduced-motion users ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Find Us Map Section (Homepage) ── */
#find-us .container > div[style*="grid-template-columns:1fr 1fr"] {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  #find-us .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  #find-us .container > div > div:first-child {
    height: 260px !important;
  }
}
