@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --c-dark: #123524;     /* Deep Forest Green */
  --c-primary: #1a4a38;  /* Brand Green */
  --c-light: #f2f7f5;    /* Soft Green Tint */
  --c-gold: #c9a84c;     /* Gold Accent */
  --c-gold-hover: #b8943e; 
  --c-gold-light: #fdfaf3; /* Very light gold */
  
  /* Neutral Colors */
  --c-white: #ffffff;
  --c-bg: #f8f9fa;       /* Light grey background */
  --c-text-main: #2c3e38;
  --c-text-muted: #5e736b;
  --c-border: rgba(26, 74, 56, 0.12);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(26, 74, 56, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 168, 76, 0.25);
  
  /* Dimensions & Timing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--c-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography & Utilities ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--c-gold) !important; }
.text-center { text-align: center; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-gold);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  color: var(--c-text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--c-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--c-white);
  color: var(--c-dark);
}

/* ── Header / Nav ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  height: 70px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--c-dark);
  letter-spacing: 0.02em;
}
.logo-text .text-gold {
  color: var(--c-gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0%;
  height: 1px;
  background: var(--c-gold);
  transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--c-primary); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 100px;
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  color: var(--c-white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.15), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  color: var(--c-white);
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}
.hero-content h1 em { color: var(--c-gold); font-style: italic; }
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  height: 580px;
  border-radius: 200px 200px 16px 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
}
.hero-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--c-white);
  color: var(--c-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  background: var(--c-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  font-size: 24px;
}
.hero-badge-text strong { display: block; font-size: 18px; font-weight: 700; color: var(--c-dark); }
.hero-badge-text span { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ── Stats Section ──────────────────────────────────────── */
.stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px 0;
}
.stat-item {
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 4px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Services / Treatments ──────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--c-white); }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* Infinite Scroll Marquee for Homepage */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 16px 0 40px; /* padding for shadows */
  position: relative;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0; width: 100px; height: 100%;
  z-index: 2; pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--c-white), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--c-white), transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 24px;
  padding-left: 24px;
  animation: scroll-left 35s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.marquee-track .service-card {
  min-width: 320px;
  white-space: normal; /* Restore normal text wrapping inside card */
}

.service-card {
  width: calc(33.333% - 16px);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-dark) 100%);
  opacity: 0; z-index: -1; transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 64px; height: 64px;
  background: var(--c-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--c-primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.1); color: var(--c-gold); }
.service-title {
  font-size: 20px; margin-bottom: 12px; transition: var(--transition-smooth);
}
.service-card:hover .service-title { color: var(--c-white); }
.service-desc {
  font-size: 14px; color: var(--c-text-muted); line-height: 1.7; transition: var(--transition-smooth);
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 13px; font-weight: 600;
  color: var(--c-primary); text-transform: uppercase; letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}
.service-card:hover .service-link { color: var(--c-gold); }

/* ── Before & After ─────────────────────────────────────── */
.ba-section { background: var(--c-dark); color: var(--c-white); }
.ba-section .section-title { color: var(--c-white); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ba-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ba-images { display: block; position: relative; height: 280px; overflow: hidden; }
.ba-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img.after { z-index: 1; }
.ba-img.before {
  z-index: 2;
  clip-path: inset(0 50% 0 0); /* Default to 50% */
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: ew-resize;
  margin: 0;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--c-gold);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--c-white);
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ba-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  color: var(--c-white); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px; font-weight: 500; z-index: 5;
}
.ba-img.after .ba-label { background: var(--c-gold); color: var(--c-dark); left: auto; right: 12px; }
.ba-info { padding: 20px; text-align: center; }
.ba-info h3 { color: var(--c-white); font-size: 18px; margin-bottom: 4px; }
.ba-info p { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ── Prices Page ────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: var(--c-primary);
  text-align: center;
  color: var(--c-white);
}
.page-header h1 { color: var(--c-white); font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }

.prices-container {
  max-width: 900px;
  margin: -40px auto 100px;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 60px;
  position: relative;
  z-index: 10;
}
.price-category {
  margin-bottom: 48px;
}
.price-category:last-child { margin-bottom: 0; }
.price-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--c-primary);
  border-bottom: 2px solid var(--c-light);
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.price-cat-title i { color: var(--c-gold); }
.price-list { display: flex; flex-direction: column; gap: 16px; }
.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.price-item:hover { background: var(--c-light); }
.price-name { font-size: 16px; font-weight: 500; color: var(--c-text-main); flex-shrink: 0; }
.price-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(26,74,56,0.2);
  margin: 0 16px;
  position: relative; top: -5px;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--c-dark); flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #0f1a16;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { color: var(--c-white); margin-bottom: 16px; display: inline-block;}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px;}
.footer-title {
  color: var(--c-gold);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 24px; font-family: 'Inter', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 14px; transition: var(--transition-fast); }
.footer-link:hover { color: var(--c-white); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact i { color: var(--c-gold); font-size: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); transition: var(--transition-fast);
}
.social-link:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-dark); }

/* ── Floating WhatsApp ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.header .nav-inner {
  height: 100%;
}

/* --- Hamburger Mobile Button & Overlay default styles --- */
.nav-toggle {
  display: none;
}
.nav-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(18, 53, 36, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: var(--transition-smooth);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-image { justify-content: center; margin-top: 40px; }
  .services-grid .service-card { width: calc(50% - 12px); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }
  .nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--c-dark, #123524) !important;
    border-radius: 2px;
    transition: var(--transition-smooth);
  }
  .nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--c-white);
    padding: 80px 40px;
    gap: 20px;
    z-index: 999;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .mobile-only-cta {
    display: block !important;
  }
  .header .nav-actions {
    display: none;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--c-border); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .marquee-container::before, .marquee-container::after { width: 40px; }
  .marquee-track .service-card { min-width: 280px; }
  .services-grid .service-card { width: 100%; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .prices-container { padding: 32px 20px; }
  .price-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-dots { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
