/* ============================================================
   PONDICHERRY SPA & WELLNESS - Main Stylesheet
   Inspired by DreamsWorldSpa.com design
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --dark: #1b3a2d;
  --dark2: #112a1f;
  --gold: #3a7d44;
  --gold-light: #a0c8a8;
  --gold-dark: #276030;
  --cream: #fff9f2;
  --cream2: #f5ede0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #666666;
  --text-muted: #999999;
  --green: #4a7c59;
  --red: #c0392b;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 35px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(58,125,68,0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.35s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
}

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

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-dark { background: var(--dark); }
.bg-cream { background: var(--cream2); }
.bg-white { background: var(--white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

/* --- Section Heading --- */
.section-heading { text-align: center; margin-bottom: 55px; }
.section-heading .subtitle {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-heading p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 14px auto 20px;
  border-radius: 2px;
}
.divider-left { margin: 14px 0 20px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(58,125,68,0.45); }
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ============================================================
   TOP BAR
   ============================================================ */
#top-bar {
  background: var(--dark2);
  padding: 8px 0;
  font-size: 0.85rem;
}
#top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-contact a { color: var(--gold-light); display: flex; align-items: center; gap: 6px; }
.top-contact a:hover { color: var(--gold); }
.top-contact i { color: var(--gold); font-size: 0.8rem; }
.top-socials { display: flex; gap: 12px; }
.top-socials a {
  color: var(--gold-light);
  width: 28px; height: 28px;
  border: 1px solid rgba(58,125,68,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-socials a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(27,58,45,0.1);
  transition: var(--transition);
}
#header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 124px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.logo-icon {
  width: 210px; height: 116px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: none;
  overflow: visible;
  padding: 0;
  box-shadow: none;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(27,58,45,0.15));
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--dark);
  font-weight: 800;
  display: block;
  letter-spacing: 0.4px;
  text-shadow: none;
}
.logo-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 3px 0;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 26px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--gold); }
.nav-link:hover::after, .nav-item:hover .nav-link::after { width: 100%; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 20px;
  color: var(--text);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--cream); color: var(--gold); padding-left: 26px; }
.dropdown a:last-child { border-bottom: none; }

/* Book Button */
.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.btn-book:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   Layer order: slider(z:1) → overlay(z:2) → hero-body(z:10)
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #071810;
}

/* Slider fills entire hero — z-index 1 */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Dark gradient overlay — z-index 2 */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg,
    rgba(5,18,10,0.82) 0%,
    rgba(5,18,10,0.55) 55%,
    rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}

/* hero-body: stacking context above overlay — z-index 10 */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

/* Arrows — positioned relative to hero-body */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.hero-nav:hover { background: var(--gold); border-color: var(--gold); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Dots */
.hero-dots-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* Content block — centred inside hero-body flex */
.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 50px 80px;
  box-sizing: border-box;
}
.hero-badge {
  display: inline-block;
  background: rgba(58,125,68,0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-content h1 span { color: var(--gold); display: block; }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 550px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  min-width: 110px;
}
.about-badge .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge small { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }

.about-text { padding-left: 10px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 30px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1rem;
}
.feature-info h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.feature-info p { font-size: 0.9rem; color: var(--text-light); }
.about-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.about-cta .whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}
.about-cta .whatsapp-link i { font-size: 1.3rem; }
.about-cta .whatsapp-link:hover { color: var(--gold); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { background: var(--cream2); }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.service-card-body { padding: 22px; }
.service-card-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.service-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 15px; }
.service-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.06); }
.service-price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.service-duration { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.service-card-actions { display: flex; gap: 8px; margin-top: 14px; }
.btn-view-detail {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--dark); color: #fff; font-size: 0.82rem; font-weight: 700;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-view-detail:hover { background: var(--green); transform: translateY(-2px); color: #fff; }
.btn-wa-quick {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: #fff; font-size: 0.82rem; font-weight: 700;
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-wa-quick:hover { background: #1ebe5a; transform: translateY(-2px); color: #fff; }
.btn-call-quick {
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--dark); font-size: 0.82rem; font-weight: 700;
  padding: 10px 12px; border-radius: 8px; border: 2px solid var(--dark); text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-call-quick:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&q=30');
  background-size: cover;
  opacity: 0.07;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat-suffix { color: var(--gold); }
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(58,125,68,0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); background: var(--white); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(58,125,68,0.12), rgba(58,125,68,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--gold);
  border: 2px solid rgba(58,125,68,0.25);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); }
.why-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   HYGIENE SECTION
   ============================================================ */
#hygiene {
  background: linear-gradient(135deg, var(--dark) 0%, #07200f 100%);
  color: var(--white);
}
.hygiene-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.hygiene-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.hygiene-image img { width: 100%; height: 450px; object-fit: cover; }
.hygiene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
}
.hygiene-content .section-heading { text-align: left; }
.hygiene-content .section-heading h2 { color: var(--white); }
.hygiene-content .section-heading p { color: rgba(255,255,255,0.7); }
.hygiene-points { display: flex; flex-direction: column; gap: 18px; }
.hygiene-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.hygiene-point:hover { background: rgba(255,255,255,0.1); }
.hygiene-point i { color: var(--gold); font-size: 1.2rem; width: 20px; flex-shrink: 0; }
.hygiene-point span { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
#testimonials { background: var(--cream2); overflow: hidden; }
.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote-icon {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
}
.stars { color: #f4b942; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.author-info { line-height: 1.3; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.author-tag { font-size: 0.8rem; color: var(--text-muted); }

.slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 35px; }
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--white); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   DOS & DON'TS SECTION
   ============================================================ */
#dos-donts { background: var(--white); }
.dos-donts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.dos-donts-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dos-donts-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dos-donts-card.dos .dos-donts-header { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.dos-donts-card.donts .dos-donts-header { background: linear-gradient(135deg, #c1121f, #e63946); }
.dos-donts-header i { font-size: 1.8rem; color: rgba(255,255,255,0.9); }
.dos-donts-header h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); }
.dos-donts-list { padding: 24px 28px; background: var(--white); }
.dos-donts-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
  color: var(--text);
}
.dos-donts-list li:last-child { border-bottom: none; }
.dos-donts-list li i { margin-top: 3px; flex-shrink: 0; }
.dos li i { color: #40916c; }
.donts li i { color: #e63946; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { background: var(--cream2); }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--gold); }
.faq-item.active .faq-question { color: var(--gold); border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 20px 24px; font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--dark); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info .section-heading { text-align: left; }
.contact-info .section-heading h2 { color: var(--white); }
.contact-info .section-heading p { color: rgba(255,255,255,0.7); }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,0.09); }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { color: var(--gold); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.contact-item-text p, .contact-item-text a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-item-text a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 5px; }
.hours-grid span { font-size: 0.88rem; }

/* Contact Form */
.contact-form { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(255,255,255,0.08); }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 7px; font-weight: 600; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { height: 120px; resize: none; }
.form-submit { width: 100%; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark2); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.75rem; color: var(--gold); }
.footer-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.88rem; }
.footer-hours li .day { color: rgba(255,255,255,0.6); }
.footer-hours li .time { color: var(--gold); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #1ebc5a; }

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 35px rgba(37,211,102,0.65); } }
@keyframes countUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Delay helpers */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { right: -10px; }
  .hygiene-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ---- Top Bar ---- */
  #top-bar { padding: 6px 0; }
  #top-bar .container { flex-direction: column; align-items: center; gap: 5px; }
  .top-contact { gap: 12px; justify-content: center; font-size: 0.8rem; }
  .top-contact a:last-child { display: none; } /* hide hours, keep phone + email */
  .top-socials { gap: 10px; }
  .top-socials a { width: 24px; height: 24px; font-size: 0.7rem; }

  /* ---- Header ---- */
  .header-inner { min-height: 75px; padding: 0 16px; }
  .logo-icon { width: 150px; height: 84px; }
  .logo-name { font-size: 1.1rem; }
  .logo-tag { font-size: 0.6rem; letter-spacing: 2px; }
  .hamburger { display: flex; }
  .btn-book { display: none; }

  /* ---- Mobile Nav ---- */
  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 998;
    padding-bottom: 40px;
    border-top: 1px solid rgba(27,58,45,0.1);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link {
    padding: 15px 22px;
    border-bottom: 1px solid rgba(27,58,45,0.08);
    justify-content: space-between;
    font-size: 0.88rem;
  }
  .nav-link::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--gold);
    display: none;
    background: rgba(27,58,45,0.04);
    margin-left: 20px;
  }
  .dropdown.open { display: block; }
  .dropdown a { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.06); }


  /* ---- Hero ---- */
  .hero-body { align-items: flex-start; }
  .hero-content {
    padding: 80px 22px 100px;
    text-align: center;
  }
  .hero-badge { font-size: 0.72rem; letter-spacing: 1.5px; padding: 6px 14px; }
  .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); max-width: 100%; margin-bottom: 14px; }
  .hero-content h1 span { display: inline; }
  .hero-content p { font-size: 0.95rem; max-width: 100%; margin-bottom: 26px; }
  .hero-buttons { justify-content: center; gap: 12px; }
  .hero-buttons .btn { padding: 12px 22px; font-size: 0.82rem; }
  .hero-stats {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding-top: 24px;
    margin-top: 30px;
  }
  .hero-stat .number { font-size: 1.3rem; }
  .hero-stat .label { font-size: 0.65rem; letter-spacing: 0; }

  /* Hero nav arrows — no z-index needed, hero-body handles stacking */
  .hero-nav { width: 36px; height: 36px; font-size: 0.8rem; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots-wrap { bottom: 16px; }

  /* ---- Sections ---- */
  .section-pad { padding: 50px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2 { font-size: 1.7rem; }

  /* ---- About ---- */
  .about-images { margin-bottom: 10px; }
  .about-img-main { height: 280px; border-radius: var(--radius); }
  .about-img-secondary { display: none; }
  .about-badge { left: 12px; top: 16px; padding: 14px; }
  .about-badge .big-num { font-size: 1.8rem; }
  .about-text { padding-left: 0; }
  .about-feature { gap: 12px; }
  .feature-icon { width: 38px; height: 38px; font-size: 0.88rem; }

  /* ---- Stats ---- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 24px 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .stat-number { font-size: 2rem; }

  /* ---- Why ---- */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px 20px; }

  /* ---- Services ---- */
  .services-tabs { gap: 7px; }
  .tab-btn { padding: 8px 14px; font-size: 0.78rem; }
  .tab-content.active { grid-template-columns: 1fr; gap: 18px; }
  .service-card-img { height: 190px; }

  /* ---- Hygiene ---- */
  .hygiene-image img { height: 240px; }

  /* ---- Testimonials ---- */
  .slider-controls { gap: 12px; margin-top: 22px; }
  .slider-btn { width: 38px; height: 38px; }

  /* ---- Dos & Donts ---- */
  .dos-donts-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ---- Contact ---- */
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-item { padding: 14px 16px; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  #footer { padding-top: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* ---- Floating buttons ---- */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 18px; }
  .back-to-top { bottom: 82px; right: 18px; width: 38px; height: 38px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 6px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-tabs { gap: 6px; }
  .tab-btn { padding: 7px 12px; font-size: 0.75rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-form { padding: 20px 14px; }
  .about-img-main { height: 230px; }
  .section-heading h2 { font-size: 1.5rem; }
}
