/* =============================================
   ASTROLOGER WEBSITE — MYSTICAL DARK THEME
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --color-bg-primary:    #0A0A2E;
  --color-bg-secondary:  #1A1A4E;
  --color-bg-card:       #12123A;
  --color-bg-card-hover: #1E1E56;
  --color-gold-primary:  #FFD700;
  --color-gold-secondary:#C9A84C;
  --color-gold-dim:      rgba(255, 215, 0, 0.12);
  --color-gold-glow:     rgba(255, 215, 0, 0.25);
  --color-text-primary:  #F0E6FF;
  --color-text-muted:    #9B8EC4;
  --color-accent-purple: #7B2FBE;
  --color-white:         #FFFFFF;
  --color-error:         #E74C3C;
  --color-success:       #2ECC71;
  --color-whatsapp:      #25D366;

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  2rem;
  --fs-4xl:  2.5rem;
  --fs-hero: clamp(2.4rem, 6vw, 4.5rem);

  /* Spacing */
  --space-xs:      0.25rem;
  --space-sm:      0.5rem;
  --space-md:      1rem;
  --space-lg:      1.5rem;
  --space-xl:      2rem;
  --space-2xl:     3rem;
  --space-3xl:     5rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* Effects */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 24px rgba(255, 215, 0, 0.2);
  --glow-gold:   0 0 40px rgba(255, 215, 0, 0.4);
  --transition:  300ms ease;
  --transition-slow: 600ms ease;
}

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

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== STARFIELD BACKGROUND ===== */
.stars-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.stars-layer {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
}

.stars-layer--medium { animation: twinkle 6s ease-in-out infinite alternate; }
.stars-layer--large  { animation: twinkle 4s ease-in-out infinite alternate-reverse; }

@keyframes twinkle {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ===== COSMIC SYMBOLS BACKGROUND ===== */
.cosmic-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  display: none; /* temporarily hidden */
}

.cosmic-symbol {
  position: absolute;
  /* Force text (non-emoji) rendering on all platforms */
  font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols', serif;
  font-variant-emoji: text;
  color: var(--color-gold-primary);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  animation: cosmic-drift linear infinite;
  will-change: transform, opacity;
}

/* Blur class for very large "distant" symbols */
.cosmic-symbol--blur {
  filter: blur(2px);
}

@keyframes cosmic-drift {
  0%   { transform: translateY(0px)   rotate(0deg);          opacity: var(--op-start); }
  45%  { opacity: var(--op-peak); }
  100% { transform: translateY(-50px) rotate(var(--rot-end)); opacity: var(--op-start); }
}

.cosmic-rashi {
  position: absolute;
  font-family: var(--font-heading);
  font-variant-emoji: text;
  color: var(--color-gold-primary);
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: cosmic-drift linear infinite;
  will-change: transform, opacity;
}

/* ===== ZODIAC WHEEL (hero) ===== */
.zodiac-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  pointer-events: none;
  /* z-index: 0 keeps it behind the text content inside hero__content */
  z-index: 0;
}

/* Static decorative rings */
.zodiac-wheel__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.zodiac-wheel__ring--outer {
  inset: 0;
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.04) inset,
              0 0 30px rgba(255, 215, 0, 0.04);
  animation: spin-cw 140s linear infinite;
}

.zodiac-wheel__ring--outer::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 215, 0, 0.07);
}

.zodiac-wheel__ring--outer::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.08);
}

.zodiac-wheel__ring--inner {
  inset: 110px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  animation: spin-ccw 90s linear infinite;
}

.zodiac-wheel__ring--inner::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 215, 0, 0.05);
}

/* Rotating symbol layers */
.zodiac-wheel__symbols {
  position: absolute;
  inset: 0;
  animation: spin-cw 140s linear infinite;
}

.zodiac-wheel__symbols--inner {
  inset: 110px;
  animation: spin-ccw 90s linear infinite;
}

/* Individual symbol */
.zodiac-wheel__sym {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols', serif;
  font-variant-emoji: text;
  font-size: 1.6rem;
  color: rgba(255, 215, 0, 0.55);
  line-height: 1;
  text-shadow:
    0 0 12px rgba(255, 215, 0, 0.7),
    0 0 24px rgba(255, 215, 0, 0.3);
}

.zodiac-wheel__sym--inner {
  font-size: 1.25rem;
  color: rgba(255, 215, 0, 0.42);
  text-shadow:
    0 0 10px rgba(255, 215, 0, 0.6),
    0 0 20px rgba(255, 215, 0, 0.2);
}

/* Tick marks on the outer ring */
.zodiac-wheel__tick {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  background: rgba(255, 215, 0, 0.25);
  transform-origin: top center;
}

/* Center glow dot */
.zodiac-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.8) 0%, rgba(255,215,0,0.2) 60%, transparent 100%);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.3);
  z-index: 3;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-ccw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Responsive zodiac wheel */
@media (max-width: 700px) {
  .zodiac-wheel {
    width: 380px;
    height: 380px;
  }
  .zodiac-wheel__ring--inner { inset: 65px; }
  .zodiac-wheel__symbols--inner { inset: 65px; }
  .zodiac-wheel__sym { font-size: 1.1rem; }
  .zodiac-wheel__sym--inner { font-size: 0.9rem; }
}

@media (max-width: 420px) {
  .zodiac-wheel {
    width: 290px;
    height: 290px;
  }
  .zodiac-wheel__ring--inner { inset: 50px; }
  .zodiac-wheel__symbols--inner { inset: 50px; }
  .zodiac-wheel__sym { font-size: 0.85rem; }
  .zodiac-wheel__sym--inner { font-size: 0.7rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-secondary) 100%);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-gold);
  outline: none;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-gold-dim);
  transform: translateY(-3px);
  outline: none;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-secondary);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 46, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.navbar--scrolled {
  background: rgba(10, 10, 46, 0.95);
  border-bottom-color: var(--color-gold-dim);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-xl);
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-gold-primary);
  text-shadow: 0 0 20px var(--color-gold-glow);
  flex-shrink: 0;
  transition: text-shadow var(--transition);
}

.navbar__logo:hover {
  text-shadow: var(--glow-gold);
}

.navbar__links {
  display: flex;
  gap: var(--space-xl);
  margin-left: auto;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-primary);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-gold-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  font-size: var(--fs-xs);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold-primary);
  border-radius: 2px;
  /* No transition by default — only when menu is being toggled */
  transition: none;
}

/* Enable transitions only after user interaction */
.navbar__burger.is-animated span {
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  /* Drop down as an overlay — does NOT push page content */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 46, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-gold-dim);
  border-bottom: 1px solid var(--color-gold-dim);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 99;
}

.navbar__mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.navbar__mobile-menu a:hover { color: var(--color-gold-primary); }
.navbar__mobile-menu .btn { margin-top: var(--space-sm); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background: radial-gradient(ellipse at center, #1A1A4E 0%, #0D0D3A 45%, var(--color-bg-primary) 100%);
  padding: 100px var(--space-xl) var(--space-3xl);
}

/* Animated glow rings */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  animation: pulse-ring 9s linear infinite;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
}

.hero::after {
  width: 950px;
  height: 950px;
  animation-delay: -4.5s;
  border-color: rgba(255, 215, 0, 0.04);
}

@keyframes pulse-ring {
  0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--color-gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-130px) scale(0.4); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  /* Ensure text children sit above the zodiac wheel (z-index: 0) */
  isolation: isolate;
}

.hero__eyebrow,
.hero__name,
.hero__divider,
.hero__tagline,
.hero__cta-group {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold-secondary);
  margin-bottom: var(--space-lg);
  animation: fade-in-up 0.8s ease both;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  text-shadow: 0 0 50px rgba(255, 215, 0, 0.25);
  margin-bottom: var(--space-lg);
  animation: fade-in-up 0.8s ease 0.15s both;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fade-in-up 0.8s ease 0.25s both;
}

.hero__divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-secondary));
}

.hero__divider span:last-child {
  background: linear-gradient(90deg, var(--color-gold-secondary), transparent);
}

.hero__divider i {
  color: var(--color-gold-primary);
  font-size: var(--fs-base);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 10px var(--color-gold-glow); }
  50%       { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero__tagline {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  animation: fade-in-up 0.8s ease 0.35s both;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.45s both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
  background: linear-gradient(180deg,
    var(--color-bg-primary) 0%,
    #0F0F3A 50%,
    var(--color-bg-primary) 100%
  );
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition-slow),
    translate var(--transition-slow);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-card), 0 0 40px rgba(255, 215, 0, 0.07);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--color-gold-dim);
  margin: 0 auto var(--space-lg);
  font-size: 1.6rem;
  color: var(--color-gold-primary);
  transition: background var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,215,0,0.1));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.service-card__desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-card__price {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-gold-secondary);
  letter-spacing: 0.05em;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
  background: var(--color-bg-primary);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Portrait Visual */
.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.about__portrait-frame {
  position: relative;
  width: 280px;
  height: 280px;
}

.about__portrait-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3A1A6E, #1A0A4E, var(--color-bg-secondary));
  border: 2px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  display: block;
}

.about__portrait-initials {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-gold-primary);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.about__portrait-icon {
  font-size: var(--fs-xl);
  color: var(--color-gold-secondary);
  opacity: 0.7;
}

.about__glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.15);
  animation: glow-ring 4s ease-in-out infinite;
  z-index: 1;
}

.about__glow::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.07);
  animation: glow-ring 4s ease-in-out infinite reverse;
}

@keyframes glow-ring {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}

.about__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-gold-secondary);
}

.about__badge i { color: var(--color-gold-primary); }

/* About Content */
.about__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__bio {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: var(--fs-base);
}

.about__stats {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-gold-dim);
  border-bottom: 1px solid var(--color-gold-dim);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-count {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-gold-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about__credentials li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.about__credentials li i {
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
  background: linear-gradient(180deg,
    var(--color-bg-primary) 0%,
    #0E0E38 50%,
    var(--color-bg-primary) 100%
  );
}

.testimonials__wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.testimonials__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testimonials__btn:hover {
  background: var(--color-gold-dim);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.testimonials__track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: 5rem;
  color: rgba(255, 215, 0, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
  color: var(--color-gold-primary);
  font-size: var(--fs-sm);
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--color-text-primary);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-purple), var(--color-bg-secondary));
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--color-white);
}

.testimonial-card__location {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.testimonial-card__service {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--color-gold-secondary);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.testimonials__dot.is-active {
  background: var(--color-gold-primary);
  transform: scale(1.3);
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
  background: var(--color-bg-primary);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact__info-desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-gold-dim);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  transition: color var(--transition);
}

a.contact-detail__value:hover { color: var(--color-gold-primary); }

/* Form */
.contact__form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.required { color: var(--color-gold-secondary); }
.optional  { color: var(--color-text-muted); font-weight: 400; font-size: var(--fs-xs); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8EC4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-group__error {
  display: block;
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
  min-height: 1.2em;
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
  animation: fade-in-up 0.5s ease both;
}

.form-success i {
  font-size: 3rem;
  color: var(--color-success);
  margin-bottom: var(--space-md);
  display: block;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.form-success p { color: var(--color-text-muted); }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-gold-dim);
  padding: var(--space-2xl) 0;
  background: var(--color-bg-primary);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--color-gold-primary);
  text-shadow: 0 0 15px var(--color-gold-glow);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--color-gold-primary); }

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  /* Steady glow — no size change */
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsapp-glow 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
  animation: none;
}

/* Gentle glow only — button size never changes */
@keyframes whatsapp-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75); }
}

.whatsapp-btn__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(10, 10, 46, 0.95);
  border: 1px solid var(--color-gold-dim);
  color: var(--color-text-primary);
  font-size: var(--fs-xs);
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-btn__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(10, 10, 46, 0.95);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CELESTIAL DIVIDERS ===== */
.celestial-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
}

.cd-symbols {
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: var(--fs-lg);
  color: rgba(255, 215, 0, 0.45);
  white-space: nowrap;
  letter-spacing: 0.3em;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}


/* Service card zodiac watermark */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card__watermark {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: 5rem;
  color: rgba(255, 215, 0, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition);
}

.service-card:hover .service-card__watermark {
  color: rgba(255, 215, 0, 0.13);
}

/* ===== NAVAGRAHA — 9 PLANETS ===== */
.navagraha {
  position: relative;
  z-index: 1;
  padding: var(--space-section) 0;
  background: linear-gradient(180deg,
    var(--color-bg-primary) 0%,
    #0C0C34 40%,
    #0E0B2E 60%,
    var(--color-bg-primary) 100%
  );
}

.navagraha__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-lg);
}

.planet-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-gold-dim);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Colored accent bar at the top of each planet card */
.planet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--planet-color, var(--color-gold-primary));
  opacity: 0.7;
}

.planet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255, 215, 0, 0.06);
}

.planet-card__symbol {
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: var(--space-md);
  color: var(--planet-color, var(--color-gold-primary));
  text-shadow: 0 0 20px color-mix(in srgb, var(--planet-color, var(--color-gold-primary)) 50%, transparent);
  display: block;
}

.planet-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--color-white);
  margin-bottom: 2px;
}

.planet-card__english {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.planet-card__rules {
  font-size: var(--fs-sm);
  color: var(--planet-color, var(--color-gold-secondary));
  font-style: italic;
}

.planet-card__color {
  display: none; /* only used for the CSS variable */
}

/* ===== ORBITAL RINGS (about portrait) ===== */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* orbit--1: inner gold Sun ring */
.orbit--1 {
  width: 360px; height: 360px;
  border: 2px solid rgba(255, 215, 0, 0.32);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.10) inset,
              0 0 20px rgba(255, 215, 0, 0.10);
  animation: spin-cw 20s linear infinite;
}

/* orbit--2: mid lavender Moon ring */
.orbit--2 {
  width: 430px; height: 430px;
  border: 1.5px solid rgba(180, 130, 255, 0.28);
  box-shadow: 0 0 16px rgba(160, 100, 255, 0.08) inset,
              0 0 16px rgba(160, 100, 255, 0.08);
  animation: spin-ccw 32s linear infinite;
}

/* orbit--3: outer red-orange Mars ring */
.orbit--3 {
  width: 510px; height: 510px;
  border: 1.5px dashed rgba(255, 100, 60, 0.22);
  box-shadow: 0 0 14px rgba(255, 80, 40, 0.06) inset;
  animation: spin-cw 48s linear infinite;
}

/* Planet symbol */
.orbit__planet {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

/* Per-orbit planet glow colors */
.orbit--1 .orbit__planet {
  color: rgba(255, 220, 0, 0.95);
  text-shadow: 0 0 10px rgba(255, 215, 0, 1),
               0 0 25px rgba(255, 215, 0, 0.6),
               0 0 50px rgba(255, 215, 0, 0.3);
}

.orbit--2 .orbit__planet {
  color: rgba(200, 175, 255, 0.95);
  text-shadow: 0 0 10px rgba(180, 140, 255, 1),
               0 0 25px rgba(160, 110, 255, 0.6),
               0 0 50px rgba(140,  90, 255, 0.3);
}

.orbit--3 .orbit__planet {
  color: rgba(255, 130, 80, 0.95);
  text-shadow: 0 0 10px rgba(255, 100, 60, 1),
               0 0 25px rgba(255,  80, 40, 0.6),
               0 0 50px rgba(255,  60, 20, 0.3);
}

/* ===== ZODIAC SCROLLING BAND (testimonials) ===== */
.zodiac-band {
  overflow: hidden;
  border-top: 1px solid var(--color-gold-dim);
  border-bottom: 1px solid var(--color-gold-dim);
  background: rgba(255, 215, 0, 0.02);
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.zodiac-band__track {
  display: flex;
  gap: var(--space-2xl);
  width: max-content;
  animation: scroll-band 30s linear infinite;
}

.zodiac-band__track span {
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: var(--fs-base);
  color: rgba(255, 215, 0, 0.5);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

@keyframes scroll-band {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause scroll on hover */
.zodiac-band:hover .zodiac-band__track {
  animation-play-state: paused;
}

/* ===== FOOTER ZODIAC STRIP ===== */
.footer-zodiac {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--color-gold-dim);
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  background: rgba(255, 215, 0, 0.02);
  padding: var(--space-md) var(--space-xl);
}

.footer-zodiac__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--space-sm) var(--space-md);
  border-right: 1px solid rgba(255, 215, 0, 0.08);
  transition: background var(--transition);
  flex: 0 0 auto;
}

.footer-zodiac__item:last-child { border-right: none; }

.footer-zodiac__item:hover {
  background: rgba(255, 215, 0, 0.04);
}

.footer-zodiac__item span {
  font-family: 'Segoe UI Symbol', 'Apple Symbols', serif;
  font-variant-emoji: text;
  font-size: 1.4rem;
  color: rgba(255, 215, 0, 0.55);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
  line-height: 1;
  transition: color var(--transition), text-shadow var(--transition);
}

.footer-zodiac__item:hover span {
  color: rgba(255, 215, 0, 0.9);
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.7);
}

.footer-zodiac__item small {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.3);
}

/* ===== RESPONSIVE ===== */

/* Prevent horizontal overflow on all screens */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .about__visual { order: -1; }

  .navagraha__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Let orbital rings breathe beyond the portrait frame */
  .about__portrait-frame { overflow: visible; }
  .orbit--1 { width: 320px; height: 320px; }
  .orbit--2 { width: 390px; height: 390px; }
  .orbit--3 { width: 460px; height: 460px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links,
  .navbar__cta  { display: none; }
  .navbar__burger      { display: flex; margin-left: auto; }
  .navbar__mobile-menu { display: flex; }

  /* Hero */
  .hero {
    padding: 88px var(--space-lg) var(--space-2xl);
    min-height: 100svh;
  }
  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
  .hero__tagline { font-size: var(--fs-base); }
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero__cta-group .btn { width: 80%; justify-content: center; }

  /* Zodiac wheel — full width with 5px edge margin, center 2cm above midpoint */
  .zodiac-wheel {
    width: calc(100vw - 10px);
    height: calc(100vw - 10px);
    transform: translate(-50%, calc(-50% - 2cm));
  }
  .zodiac-wheel__ring--inner { inset: calc((100vw - 10px) * 0.172); }
  .zodiac-wheel__symbols--inner { inset: calc((100vw - 10px) * 0.172); }
  .zodiac-wheel__sym { font-size: clamp(0.85rem, 4vw, 1.6rem); }
  .zodiac-wheel__sym--inner { font-size: clamp(0.7rem, 3.2vw, 1.25rem); }

  /* Sections — reduce vertical padding */
  .services, .navagraha, .about, .testimonials, .contact {
    padding: var(--space-2xl) 0;
  }
  .section-header { margin-bottom: var(--space-2xl); }
  .section-header__title { font-size: var(--fs-2xl); }
  .section-header__subtitle { font-size: var(--fs-sm); }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .service-card { padding: var(--space-xl) var(--space-lg); }

  /* Navagraha */
  .navagraha__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .planet-card { padding: var(--space-lg) var(--space-md); }
  .planet-card__symbol { font-size: 2.2rem; }

  /* About */
  .about__portrait-frame {
    width: 220px;
    height: 220px;
    overflow: visible;
  }
  .orbit--1 { width: 270px; height: 270px; }
  .orbit--2 { width: 340px; height: 340px; }
  .orbit--3 { display: none; }
  .about__stats { gap: var(--space-md); }
  .about__title { font-size: var(--fs-2xl); }

  /* Testimonials */
  .testimonials__btn { display: none; }
  .testimonial-card { padding: var(--space-xl) var(--space-lg); }

  /* Contact */
  .contact__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .contact__form-wrapper { padding: var(--space-xl) var(--space-lg); }

  /* Celestial dividers */
  .cd-symbols { font-size: var(--fs-base); letter-spacing: 0.15em; }

  /* Footer */
  .footer__nav { gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
  .footer-zodiac { flex-wrap: wrap; padding: var(--space-sm) var(--space-md); }
  .footer-zodiac__item { padding: var(--space-xs) var(--space-sm); }
  .footer-zodiac__item small { display: none; }
  .footer-zodiac__item span { font-size: 1.1rem; }

  /* WhatsApp */
  .whatsapp-btn { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; font-size: 1.4rem; }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .navbar__container { padding: 0 var(--space-md); }

  /* Hero */
  .hero { padding: 80px var(--space-md) var(--space-xl); }
  .zodiac-wheel {
    width: calc(100vw - 10px);
    height: calc(100vw - 10px);
    transform: translate(-50%, calc(-50% - 2cm));
  }
  .zodiac-wheel__ring--inner { inset: calc((100vw - 10px) * 0.172); }
  .zodiac-wheel__symbols--inner { inset: calc((100vw - 10px) * 0.172); }

  /* Services */
  .service-card { padding: var(--space-lg) var(--space-md); }
  .service-card__watermark { font-size: 3.5rem; }

  /* Navagraha */
  .navagraha__grid { gap: var(--space-sm); }
  .planet-card { padding: var(--space-md) var(--space-sm); }
  .planet-card__symbol { font-size: 1.8rem; margin-bottom: var(--space-sm); }
  .planet-card__name { font-size: var(--fs-sm); }
  .planet-card__rules { font-size: var(--fs-xs); }

  /* About */
  .orbit--1 { width: 245px; height: 245px; }
  .orbit--2 { display: none; }
  .about__stats {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .about__credentials li { font-size: var(--fs-xs); }

  /* Contact */
  .contact__form-wrapper { padding: var(--space-lg) var(--space-md); }
  .form-group label { font-size: var(--fs-xs); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
