/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --bg-primary: #04020a;
  --bg-secondary: #080414;
  --bg-card: rgba(255, 255, 255, 0.03);
  --color-gold: #d4af37;
  --color-gold-light: #f5d97a;
  --color-gold-deep: #a8841b;
  --color-gold-sacred: #ffdf7a;
  --color-purple: #4a1a92;
  --color-purple-light: #7b46d1;
  --color-purple-dark: #2a1254;
  --text-primary: #f8f4e8;
  --text-secondary: #c5b8a5;
  --text-muted: #8a7a68;
  --border-glass: rgba(212, 175, 55, 0.1);
  --border-glass-bright: rgba(212, 175, 55, 0.25);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
  --shadow-purple: 0 15px 50px rgba(74, 26, 146, 0.2);
  --gradient-gold: linear-gradient(135deg, #a8841b 0%, #d4af37 40%, #f5d97a 50%, #d4af37 60%, #a8841b 100%);
  --gradient-cosmic: radial-gradient(circle at center, #0d0720 0%, #04020a 100%);
  --gradient-purple: linear-gradient(135deg, #2a1254 0%, #4a1a92 100%);
  --font-serif: 'Josefin Sans', sans-serif;
  --font-sans: 'Josefin Sans', sans-serif;
  --transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --radius: 20px;
  --radius-lg: 32px;
  --glass-blur: 25px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-deep);
  border-radius: 3px;
}

/* ==========================================
   LOADER
   ========================================== */
.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a0b2e 0%, var(--bg-primary) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  will-change: opacity;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fully remove loader from layout after fade-out transition completes */
.loader.removed {
  display: none;
}

.loader-wheel {
  position: relative;
  text-align: center;
}

.zodiac-ring {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}

.zodiac-ring svg {
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.spin {
  animation: rotateSpin 6s linear infinite;
  transform-origin: center;
}

@keyframes rotateSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.loader-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  opacity: 0.8;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.4)
  }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  background: rgba(6, 3, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(4, 2, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-radius: 50px;
  margin-left: 8px;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* 44×44px minimum touch target */
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  z-index: 10001;
  position: relative;
}

.nav-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav backdrop overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
}

/* ==========================================
   SECTIONS: SHARED
   ========================================== */
.section {
  padding: clamp(60px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  /* Responsive horizontal padding — prevents any content touching screen edge */
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vh, 80px);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  padding: 8px 24px;
  border: 1px solid var(--border-glass-bright);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px 0;
}

.gold-divider.centered {
  margin: 16px auto;
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-glass-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.glass-card:hover::after {
  transform: translateX(100%);
}

/* Decoration circles */
.section-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.deco-c1 {
  width: 500px;
  height: 500px;
  background: var(--color-purple);
  top: -150px;
  right: -150px;
}

.deco-c2 {
  width: 300px;
  height: 300px;
  background: var(--color-gold);
  bottom: 0;
  left: -100px;
}

.deco-c3 {
  width: 600px;
  height: 600px;
  background: var(--color-purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deco-c4 {
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  bottom: -100px;
  right: -100px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(200%) skewX(-20deg);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a0b00;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, #a8841b, #f5d97a, #d4af37, #a8841b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  }

  50% {
    box-shadow: 0 6px 35px rgba(212, 175, 55, 0.7), 0 0 60px rgba(212, 175, 55, 0.2);
  }
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  font-size: 1.1em;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

/* CSS-only failsafe: guarantees content becomes visible even if JS fails (rapid refresh) */
@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translate(0);
  }
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  /* Failsafe: CSS animation kicks in after 0.3s and makes content visible regardless of JS */
  animation: revealFallback 0.8s ease forwards;
  animation-delay: 0.3s;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

/* When JS adds .visible, transition takes over instantly (overrides the animation) */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
  animation: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #1a0b2e 0%, #0d0720 40%, var(--bg-primary) 80%);
  isolation: isolate;
  z-index: 0;
}

/* ==========================================
   HERO DHARMACHAKRA (Spiritual Chakra Wheel)
   ========================================== */
.hero-chakra-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 85vw, 1000px);
  height: clamp(500px, 85vw, 1000px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.13;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

/* Whole wheel rotates clockwise */
.chakra-svg {
  width: 100%;
  height: 100%;
  animation: chakraSpin 45s linear infinite;
}

/* Outer 16 lotus petals — counter-clockwise (relative to wheel = slower reverse) */
.chakra-petals-outer {
  transform-origin: 300px 300px;
  animation: chakraCounter 60s linear infinite;
}

/* Inner hub petals — counter-clockwise */
.chakra-hub {
  transform-origin: 300px 300px;
  animation: chakraCounter 30s linear infinite;
}

@keyframes chakraSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes chakraCounter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}


.spiritual-rotate-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 80vw, 1200px);
  height: clamp(600px, 80vw, 1200px);
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  filter: blur(1px);
}

.sri-yantra-svg {
  width: 100%;
  height: 100%;
  animation: slowSpin 100s linear infinite;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



#starCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(4, 2, 10, 0.6) 100%);
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  animation: nebulaFloat 20s ease-in-out infinite alternate;
}

.nebula-1 {
  width: 600px;
  height: 600px;
  background: var(--color-purple);
  top: -100px;
  left: -100px;
}

.nebula-2 {
  width: 500px;
  height: 500px;
  background: var(--color-gold-deep);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

@keyframes nebulaFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

/* Floating Zodiac */
.zodiac-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.zf {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(212, 175, 55, 0.15);
  animation: floatZodiac var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.zf1 {
  top: 10%;
  left: 5%;
  --dur: 12s;
  --delay: 0s;
}

.zf2 {
  top: 20%;
  left: 90%;
  --dur: 14s;
  --delay: -2s;
}

.zf3 {
  top: 35%;
  left: 15%;
  --dur: 11s;
  --delay: -5s;
}

.zf4 {
  top: 5%;
  left: 55%;
  --dur: 16s;
  --delay: -1s;
}

.zf5 {
  top: 75%;
  left: 8%;
  --dur: 13s;
  --delay: -3s;
}

.zf6 {
  top: 85%;
  left: 75%;
  --dur: 10s;
  --delay: -7s;
}

.zf7 {
  top: 60%;
  left: 92%;
  --dur: 15s;
  --delay: -4s;
}

.zf8 {
  top: 50%;
  left: 2%;
  --dur: 12s;
  --delay: -6s;
}

.zf9 {
  top: 88%;
  left: 45%;
  --dur: 18s;
  --delay: -2s;
}

.zf10 {
  top: 15%;
  left: 40%;
  --dur: 11s;
  --delay: -8s;
}

.zf11 {
  top: 70%;
  left: 30%;
  --dur: 17s;
  --delay: -1s;
}

.zf12 {
  top: 45%;
  left: 70%;
  --dur: 14s;
  --delay: -9s;
}

@keyframes floatZodiac {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  75% {
    transform: translateY(15px) rotate(-3deg);
  }
}

/* Orbit Rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  animation: orbitRotate var(--dur, 30s) linear infinite;
  pointer-events: none;
  z-index: 1;
}

.orbit-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  margin: -250px 0 0 -250px;
  --dur: 40s;
}

.orbit-2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  margin: -350px 0 0 -350px;
  --dur: 60s;
  animation-direction: reverse;
}

@keyframes orbitRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: clamp(180px, 20vh, 250px) 24px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 8px 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  margin-bottom: 32px;
  background: rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(5px);
}

.badge-star {
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-name {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 4px;
}

.hero-subtitle-main {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-gold-light);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  max-width: 640px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  color: var(--color-gold);
  opacity: 0.4;
  font-size: 1.2rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounceDown 2.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  isolation: isolate;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  isolation: isolate;
}

.about-img-border {
  width: 340px;
  height: 400px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  margin: 0 auto;
  isolation: isolate;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background: var(--gradient-purple);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.img-glow-ring {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(transparent 0deg, rgba(212, 175, 55, 0.3) 60deg, transparent 120deg, rgba(108, 58, 181, 0.3) 180deg, transparent 240deg);
  animation: rotateSpin 8s linear infinite;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.portrait-image-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(6, 3, 15, 0.95), transparent);
  text-align: center;
  z-index: 3;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 6px;
  position: relative;
  z-index: 3;
}

.portrait-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.ab-badge {
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-highlights {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hi-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hi-text strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}

.hi-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0720 50%, var(--bg-primary) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, .46, .45, .94);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
}

.service-card:hover::before {
  opacity: 0.08;
}

.service-card:hover .sc-glow {
  opacity: 1;
}

.sc-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sc-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  z-index: 1;
  position: relative;
  transition: transform 0.4s ease;
}

.service-card:hover .sc-icon {
  transform: scale(1.1) rotate(10deg);
}

.sc-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}

.sc-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.sc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}

.sc-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold);
  z-index: 1;
  position: relative;
  transition: gap 0.3s ease;
  display: inline-block;
}

.service-card:hover .sc-link {
  letter-spacing: 0.05em;
}

/* ==========================================
   ACHIEVEMENTS SECTION
   ========================================== */
.achievements {
  background: linear-gradient(135deg, #0d0720 0%, var(--bg-primary) 50%, #0a0416 100%);
}

/* Rotating Spiritual Mandala Background */
.spiritual-mandala-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.mandala-svg {
  width: min(900px, 130vw);
  height: min(900px, 130vw);
  opacity: 0.1;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.5));
  animation: mandalaRotate 80s linear infinite;
}

/* Outer spokes ring — slow clockwise */
.mandala-ring-1 {
  transform-origin: 400px 400px;
  animation: mandalaRotate 80s linear infinite;
}

/* Petal ring — counter-clockwise */
.mandala-ring-2 {
  transform-origin: 400px 400px;
  animation: mandalaCounterRotate 55s linear infinite;
}

/* Inner lotus petal ring — clockwise faster */
.mandala-ring-3 {
  transform-origin: 400px 400px;
  animation: mandalaRotate 35s linear infinite;
}

@keyframes mandalaRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes mandalaCounterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* Ensure section content is above the mandala */
.achievements .container {
  position: relative;
  z-index: 1;
}


.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.showcase-stat {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.showcase-stat:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.ss-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ss-plus {
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.ss-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  padding-right: 20px;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  padding-left: 20px;
}

.tl-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gradient-gold);
  border-radius: 50%;
  top: 24px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-item:nth-child(odd) .tl-dot {
  right: -47px;
}

.timeline-item:nth-child(even) .tl-dot {
  left: -47px;
}

.tl-content {
  padding: 24px;
}

.tl-year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.tl-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  background: var(--bg-secondary);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, .46, .45, .94);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.tc-stars {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.tc-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-purple);
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
}

.tc-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.tc-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tl-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.tl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.tl-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

.tl-dots {
  display: flex;
  gap: 8px;
}

.tl-dot-el {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.tl-dot-el.active {
  background: var(--color-gold);
  transform: scale(1.3);
}



/* ==========================================
   LOCATION SECTION
   ========================================== */
.location {
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.loc-card {
  padding: clamp(24px, 4vw, 40px);
}

.loc-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.loc-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.loc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.loc-link {
  color: var(--color-gold);
  font-weight: 600;
}

.loc-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-purple);
}

.map-container iframe {
  display: block;
  filter: brightness(0.85) contrast(1.1) saturate(0.8) invert(0.9) hue-rotate(200deg);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-whatsapp-centered {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta {
  padding: 50px 40px;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  animation: pulse 3s ease-in-out infinite;
}

.contact-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cd-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, #06030f 0%, #030109 100%);
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 32px;
  position: relative;
}

.footer-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: flex;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 12px 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-links-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9997;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50px;
  padding: 14px 20px;
  padding-left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
  font-size: 0.88rem;
  font-weight: 600;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  border-radius: 50px;
}

.wa-float svg {
  flex-shrink: 0;
}

@keyframes waFloat {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    text-align: center;
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }


  .location-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

/* ==========================================
   TABLET BREAKPOINT — 1024px
   ========================================== */
@media (max-width: 1024px) {
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

/* ==========================================
   MOBILE BREAKPOINT — 768px
   ========================================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  /* Show overlay on mobile */
  .nav-overlay {
    display: block;
  }

  /* Logo: prevent overflow on small screens */
  .nav-logo .logo-text {
    font-size: clamp(0.75rem, 3.5vw, 1.1rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
    display: block;
  }

  /* ---- MOBILE NAV DRAWER ---- */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 85vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: #08041a;
    padding-top: 70px;
    padding-bottom: 40px;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    display: block;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(212, 175, 55, 0.08);
    padding-left: 32px;
    color: var(--color-gold);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin: 20px 24px 0;
    padding: 14px 28px;
    display: inline-flex;
    border-radius: 50px;
    font-size: 0.9rem;
    width: calc(100% - 48px);
    justify-content: center;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  /* ---- HERO ---- */
  .hero-content {
    padding: clamp(120px, 18vh, 180px) 16px 80px;
  }

  .hero-stats {
    padding: 16px 20px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    flex: 1 1 auto;
    min-width: 80px;
  }

  /* ---- ABOUT ---- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-img-border {
    width: 280px;
    height: clamp(260px, 60vw, 340px);
  }

  .about-highlights {
    gap: 12px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-actions .btn {
    justify-content: center;
    text-align: center;
  }

  /* ---- SERVICES ---- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ---- ACHIEVEMENTS / TRACK RECORD ---- */
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 4px;
    margin-bottom: 48px;
  }

  .showcase-stat {
    padding: 24px 16px;
  }

  /* Timeline — single-column left-aligned */
  .timeline {
    padding: 0 8px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    width: 100% !important;
    margin-left: 44px !important;
    margin-right: 0 !important;
    padding-right: 8px !important;
    padding-left: 0 !important;
  }

  .tl-dot {
    left: -40px !important;
    right: auto !important;
    width: 12px;
    height: 12px;
  }

  .tl-content {
    padding: 18px 16px;
  }

  /* ---- LOCATION ---- */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* ---- FOOTER ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ---- MISC ---- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .wa-label {
    display: none;
  }

  .wa-float {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
  }
}

/* ==========================================
   SMALL MOBILE — 480px
   ========================================== */
@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }

  /* Stats stack to 1 column on very small phones */
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-stat {
    padding: 20px 12px;
  }

  .ss-number {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  /* Timeline tighter on very small screens */
  .timeline-item {
    margin-left: 36px !important;
    padding-right: 4px !important;
  }

  .tl-dot {
    left: -32px !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }

  .hero-buttons .btn {
    justify-content: center;
    text-align: center;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 6px 16px;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  /* Footer single column always */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Astrologer Portrait Full Overrides */
.img-glow-ring {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(transparent 0deg, rgba(212, 175, 55, 0.3) 60deg, transparent 120deg, rgba(108, 58, 181, 0.3) 180deg, transparent 240deg);
  animation: rotateSpin 8s linear infinite;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.portrait-image-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(6, 3, 15, 0.95), transparent);
  text-align: center;
  z-index: 3;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 6px;
  position: relative;
  z-index: 3;
}

.portrait-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 3;
}