/* ═══════════════════════════════════════════════════════
   PRAKRITI — Ayurveda & Holistic Living
   Indian-Inspired Luxury Design System
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* ─── Indian Earthy Luxury Palette ─── */
  --kesariya: #e8a838;
  --kesariya-glow: #f5c260;
  --kesariya-dark: #c68a1f;
  --maroon: #800020;
  --maroon-deep: #5c0018;
  --gulabi: #d4a373;
  --peacock: #0a6e5e;
  --peacock-light: #1a9e8a;
  --indigo: #1a1a3e;
  --deep-forest: #1a3c34;
  --forest-light: #2d5a4e;
  --terracotta: #c66b3d;
  --terracotta-light: #e8946a;
  --cream: #faf3e0;
  --cream-dark: #f0e6d0;
  --ivory: #fff8f0;
  --sand: #e6d5b8;
  --clay: #d4a373;
  --dark-earth: #2d1b00;
  --gold: #b8860b;
  --gold-light: #d4a84b;
  --sanskrit-gold: #c9a84c;
  --lotus-pink: #f2d5c4;
  --chai: #8B6914;
  --saffron-mist: rgba(232, 168, 56, 0.08);
  --charcoal: #1a1a2e;

  /* ─── Typography ─── */
  --font-decorative: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sanskrit: 'Tiro Devanagari Sanskrit', 'Cormorant Garamond', Georgia, serif;

  /* ─── Spacing ─── */
  --section-padding: 100px 0;
  --container-max: 1240px;

  /* ─── Transitions ─── */
  --transition-royal: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-smooth: 0.4s ease;
}

/* ─────────── RESET ─────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--dark-earth);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--kesariya);
  color: var(--dark-earth);
}
img {
  max-width: 100%; display: block;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-decorative);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────── INDIAN ORNAMENTAL DIVIDER ─────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto;
  max-width: 320px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kesariya), transparent);
}
.ornament-icon {
  font-size: 1.4rem;
  color: var(--kesariya);
  opacity: 0.6;
}

/* ─────────── SECTION HEADERS ─────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kesariya);
  margin-bottom: 12px;
  position: relative;
  padding-left: 52px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--kesariya);
}
.section-label.decorated {
  padding-left: 0;
}
.section-label.decorated::before {
  display: none;
}
.section-label .sanskrit {
  font-family: var(--font-sanskrit);
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 2px;
  color: var(--sanskrit-gold);
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--deep-forest);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title.light {
  color: var(--cream);
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(45, 27, 0, 0.6);
  max-width: 640px;
  line-height: 1.8;
}
.section-sub.center { margin: 0 auto; text-align: center; }
.section-sub.light { color: rgba(250, 243, 224, 0.6); }
.text-center { text-align: center; }

/* ─────────── SCROLL REVEAL ─────────── */
.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─────────── NAVBAR ─────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
nav.scrolled {
  background: rgba(26, 60, 52, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.2);
}
.nav-logo {
  font-family: var(--font-decorative);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .saffron-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--kesariya);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse-dot 2s ease-in-out infinite;
}
.nav-logo span {
  color: var(--kesariya);
}
.nav-logo .sanskrit-sub {
  font-family: var(--font-sanskrit);
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: rgba(250, 243, 224, 0.4);
  display: block;
  margin-top: -4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(250, 243, 224, 0.8);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--kesariya);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--kesariya); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--kesariya);
  color: var(--dark-earth) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--kesariya-glow) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.25);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 28px; height: 2px;
  background: var(--cream);
  transition: 0.3s ease;
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─────────── HERO ─────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 31, 26, 0.85) 0%,
    rgba(26, 60, 52, 0.75) 40%,
    rgba(45, 74, 62, 0.6) 70%,
    rgba(13, 31, 26, 0.85) 100%
  );
}
.hero-bg .pattern-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(232, 168, 56, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(198, 107, 61, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 48px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kesariya);
  margin-bottom: 32px;
  background: rgba(232, 168, 56, 0.05);
}
.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--kesariya);
  text-shadow: 0 0 40px rgba(232, 168, 56, 0.15);
}
.hero-title .gold-line {
  display: block;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--clay);
  margin-top: 16px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(250, 243, 224, 0.7);
  max-width: 540px;
  margin: 28px 0 40px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--kesariya);
  color: var(--dark-earth);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--kesariya-glow);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 168, 56, 0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(250, 243, 224, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-body);
}
.btn-outline:hover {
  border-color: var(--kesariya);
  color: var(--kesariya);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 243, 224, 0.3);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 2;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--kesariya), transparent);
  animation: scroll-line 2.5s ease-in-out infinite;
}

/* ─────────── PAGE HERO (inner pages) ─────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero .hero-bg img {
  filter: brightness(0.5);
}
.page-hero .hero-content {
  max-width: 700px;
  padding: 100px 24px 60px;
}
.page-hero .hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.page-hero .hero-desc {
  margin: 16px auto 0;
}

/* ─────────── SLIDER / CAROUSEL ─────────── */
.slider-section {
  padding: 80px 0;
  background: var(--cream);
}
.slider-container {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.slider-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-slide .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--cream);
}
.slider-slide .slide-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.slider-slide .slide-caption p {
  font-size: 0.9rem;
  opacity: 0.8;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.slider-dot.active {
  background: var(--kesariya);
  width: 32px;
  border-radius: 5px;
}

/* ─────────── SERVICE CARDS (hub page) ─────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 163, 115, 0.08);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.2));
}
.service-card-body {
  padding: 28px 24px 32px;
}
.service-card-body .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.service-card-body h3 {
  font-size: 1.3rem;
  color: var(--deep-forest);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.9rem;
  color: rgba(45, 27, 0, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kesariya);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card:hover .card-link { gap: 14px; }

/* ─────────── SERVICE PAGES CONTENT ─────────── */
.service-content {
  padding: 80px 0;
  background: var(--ivory);
}
.service-content .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.service-content .content-grid.reverse {
  direction: rtl;
}
.service-content .content-grid.reverse > * {
  direction: ltr;
}
.service-content .content-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.06);
}
.service-content .content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-content .content-image:hover img {
  transform: scale(1.03);
}
.service-content .content-text h3 {
  font-size: 1.6rem;
  color: var(--deep-forest);
  margin-bottom: 16px;
}
.service-content .content-text p {
  color: rgba(45, 27, 0, 0.65);
  margin-bottom: 16px;
  line-height: 1.8;
}
.service-content .content-text .highlight {
  border-left: 3px solid var(--kesariya);
  padding: 20px 24px;
  background: rgba(232, 168, 56, 0.04);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--deep-forest);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: white;
  border-left: 3px solid var(--kesariya);
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateX(4px);
}
.feature-item .icon {
  font-size: 1.3rem;
  min-width: 32px;
}
.feature-item h4 {
  font-size: 1rem;
  color: var(--deep-forest);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.85rem;
  color: rgba(45, 27, 0, 0.5);
  line-height: 1.5;
}

/* ─────────── QUOTE BLOCK ─────────── */
.quote-block {
  text-align: center;
  padding: 60px 40px;
  max-width: 720px;
  margin: 40px auto;
  position: relative;
}
.quote-block::before,
.quote-block::after {
  content: '"';
  font-family: var(--font-decorative);
  font-size: 4rem;
  color: var(--kesariya);
  opacity: 0.15;
  position: absolute;
  line-height: 1;
}
.quote-block::before {
  top: 0;
  left: 0;
}
.quote-block::after {
  bottom: -20px;
  right: 0;
  transform: rotate(180deg);
}
.quote-block blockquote {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--deep-forest);
  line-height: 1.6;
}
.quote-block cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 500;
}

/* ─────────── BENEFITS STATS ─────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 60px 0;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(212, 163, 115, 0.06);
  transition: all 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}
.stat-card .number {
  font-family: var(--font-decorative);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--kesariya);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: rgba(45, 27, 0, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ─────────── CTA SECTION ─────────── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1f1a 0%, #1a3c34 50%, #2d4a3e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232, 168, 56, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(198, 107, 61, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(250, 243, 224, 0.55);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.4s ease;
}
.cta-form input::placeholder {
  color: rgba(250, 243, 224, 0.3);
}
.cta-form input:focus {
  border-color: var(--kesariya);
  background: rgba(255,255,255,0.08);
}
.cta-form button {
  padding: 16px 32px;
  border-radius: 50px;
  background: var(--kesariya);
  color: var(--dark-earth);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cta-form button:hover {
  background: var(--kesariya-glow);
  transform: translateY(-2px);
}

/* ─────────── WHATSAPP FLOATING BUTTON ─────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.whatsapp-btn .tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
}
.whatsapp-btn:hover .tooltip {
  opacity: 1;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-btn {
  animation: whatsapp-pulse 2s infinite;
}

/* ─────────── TESTIMONIALS ─────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(212, 163, 115, 0.08);
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}
.testimonial-card .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--kesariya), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
  font-family: var(--font-decorative);
}
.testimonial-card .stars {
  color: var(--kesariya);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-family: var(--font-decorative);
  font-style: italic;
  font-size: 1rem;
  color: var(--deep-forest);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
}
.testimonial-card cite span {
  display: block;
  font-size: 0.75rem;
  color: rgba(45, 27, 0, 0.35);
  font-weight: 400;
  margin-top: 4px;
}

/* ─────────── FOOTER ─────────── */
footer {
  background: #0a1713;
  padding: 64px 48px 28px;
  color: rgba(250, 243, 224, 0.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto 40px;
}
.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--kesariya);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem;
  transition: color 0.3s ease;
  color: rgba(250, 243, 224, 0.45);
}
.footer-col a:hover { color: var(--kesariya); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  max-width: var(--container-max);
  margin: 0 auto;
  color: rgba(250, 243, 224, 0.25);
}

/* ─────────── DECORATIVE SACRED GEOMETRY ─────────── */
.mandala-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
}
.mandala-bg svg {
  width: 100%;
  height: 100%;
}
@keyframes mandala-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.mandala-spin {
  animation: mandala-spin 60s linear infinite;
}

/* ─────────── RESPONSIVE ─────────── */
@media(max-width:1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-content .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .hero-content { padding: 100px 24px 60px; }
}

@media(max-width:768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 300px;
    background: rgba(13, 31, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.5s ease;
    gap: 20px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form { flex-direction: column; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; }
  .feature-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .whatsapp-btn { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
}

@media(max-width:480px) {
  .stats-grid { grid-template-columns: 1fr; }
  nav { padding: 16px 16px; }
  nav.scrolled { padding: 12px 16px; }
  .hero-title .gold-line { letter-spacing: 4px; }
  .section-title { font-size: 1.8rem; }
}
