/* ============================================================
   ASTROLOGY PAGE — Premium Styles
   Theme: Astha Astro WordPress Theme
   Palette: Cream · Deep Purple · Lavender · Gold · Blush Pink
   Fonts:  Cormorant Garamond (headings) · Inter (body)
   ============================================================ */

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* Colours */
  --cream:          #faf8f4;
  --purple-deep:    #2d1b4e;
  --purple-mid:     #4a3870;
  --purple-light:   #6b5a94;
  --lavender:       #9b8ec4;
  --lavender-light: #c4b5e8;
  --gold:           #d4a853;
  --gold-light:     #e8c97a;
  --gold-dark:      #b8893a;
  --blush:          #f4a4a4;
  --blush-light:    #fcd6d6;
  --white:          #ffffff;

  /* Glass / overlay */
  --glass-bg:       rgba(255, 255, 255, 0.70);
  --glass-border:   rgba(196, 181, 232, 0.35);
  --glass-shadow:   0 8px 40px rgba(45, 27, 78, 0.12);
  --glass-shadow-hover: 0 20px 60px rgba(45, 27, 78, 0.22);

  /* Gradients */
  --grad-hero:       linear-gradient(135deg, #f0ebff 0%, #faf8f4 50%, #f9f0ff 100%);
  --grad-purple:     linear-gradient(135deg, #2d1b4e 0%, #4a3870 100%);
  --grad-gold:       linear-gradient(135deg, #d4a853 0%, #e8c97a 50%, #d4a853 100%);
  --grad-lavender:   linear-gradient(135deg, #c4b5e8 0%, #9b8ec4 100%);
  --grad-card-top:   linear-gradient(90deg, #d4a853, #c4b5e8);

  /* Typography */
  --font-heading: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 8rem);
  --card-radius: 1.5rem;
  --card-radius-lg: 2rem;

  /* Transitions */
  --transition-fast:   0.18s ease;
  --transition-base:   0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   GLOBAL RESETS FOR ASTROLOGY PAGE
   ---------------------------------------------------------- */
.astrology-page *,
.astrology-page *::before,
.astrology-page *::after {
  box-sizing: border-box;
}

.astrology-page {
  background-color: var(--cream);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------------------
   KEYFRAME ANIMATIONS
   ---------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 83, 0);
  }
  50% {
    box-shadow: 0 0 28px 8px rgba(212, 168, 83, 0.30);
  }
}

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

@keyframes orbit {
  from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes drawCircle {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* ----------------------------------------------------------
   ANIMATION UTILITY CLASSES
   ---------------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.15s; }
.fade-in-up.delay-2 { animation-delay: 0.30s; }
.fade-in-up.delay-3 { animation-delay: 0.45s; }
.fade-in-up.delay-4 { animation-delay: 0.60s; }
.fade-in-up.delay-5 { animation-delay: 0.75s; }
.fade-in-up.delay-6 { animation-delay: 0.90s; }

.astro-float {
  animation: float 5s ease-in-out infinite;
}
.astro-float.delay-1 { animation-delay: 0.8s; }
.astro-float.delay-2 { animation-delay: 1.6s; }
.astro-float.delay-3 { animation-delay: 2.4s; }

.astro-spin-slow {
  animation: spinSlow 20s linear infinite;
}
.astro-spin-slow-reverse {
  animation: spinSlowReverse 25s linear infinite;
}

.astro-glow-pulse {
  animation: glowPulse 2.8s ease-in-out infinite;
}

.astro-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.planet-orbit {
  animation: orbit 8s linear infinite;
}

/* ----------------------------------------------------------
   SHARED SECTION SCAFFOLDING
   ---------------------------------------------------------- */
.astro-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.astro-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.astro-section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* ----------------------------------------------------------
   SECTION LABEL (gold eyebrow)
   ---------------------------------------------------------- */
.astro-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.astro-section-label::before,
.astro-section-label::after {
  content: "✦";
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ----------------------------------------------------------
   SECTION TITLE
   ---------------------------------------------------------- */
.astro-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.625rem); /* 58px at 1280px */
  font-weight: 600;
  line-height: 1.15;
  color: var(--purple-deep);
  margin: 0 0 1rem;
}

.astro-section-title em {
  font-style: italic;
  color: var(--purple-mid);
}

.astro-section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--purple-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Decorative divider under title */
.astro-section-title + .astro-divider,
.astro-section-head .astro-divider {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.2rem auto 0;
  width: fit-content;
}
.astro-divider span {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: var(--grad-gold);
}
.astro-divider span:nth-child(1) { width: 40px; }
.astro-divider span:nth-child(2) { width: 12px; }
.astro-divider span:nth-child(3) { width: 6px; }

/* ----------------------------------------------------------
   GLASSMORPHISM CARD BASE
   ---------------------------------------------------------- */
.astro-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.astro-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(212, 168, 83, 0.45);
}

/* ----------------------------------------------------------
   1. HERO SECTION  (.astro-hero)
   ---------------------------------------------------------- */
.astro-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Ambient blobs */
.astro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 30%, rgba(155, 142, 196, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(212, 168, 83, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 60% 10%, rgba(244, 164, 164, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating decorative number/symbol layer */
.astro-hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.astro-hero__float-num {
  position: absolute;
  font-family: var(--font-heading);
  color: rgba(155, 142, 196, 0.18);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 1;
  user-select: none;
  animation: float 6s ease-in-out infinite;
}
.astro-hero__float-num:nth-child(1)  { top:  8%; left:  4%;  font-size: 7rem;  animation-delay: 0s; }
.astro-hero__float-num:nth-child(2)  { top: 18%; right: 6%;  font-size: 5rem;  animation-delay: 1.2s; }
.astro-hero__float-num:nth-child(3)  { bottom: 20%; left: 8%; font-size: 9rem; animation-delay: 0.6s; }
.astro-hero__float-num:nth-child(4)  { bottom: 10%; right: 10%; font-size: 6rem; animation-delay: 1.8s; }
.astro-hero__float-num:nth-child(5)  { top: 40%; left: 2%; font-size: 4rem; animation-delay: 2.4s; }
.astro-hero__float-num:nth-child(6)  { top: 55%; right: 3%; font-size: 8rem; animation-delay: 0.3s; }

/* Twinkling stars */
.astro-hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.astro-hero__star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

/* Hero content */
.astro-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem clamp(1rem, 5vw, 2rem);
}

.astro-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 99px;
  padding: 0.45rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.8rem;
}
.astro-hero__badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.astro-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--purple-deep);
  margin: 0 0 1.4rem;
}
.astro-hero__headline .text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.astro-hero__headline em {
  font-style: italic;
  color: var(--purple-mid);
  -webkit-text-fill-color: var(--purple-mid);
}

.astro-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--purple-light);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* CTA buttons */
.astro-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.astro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-base),
              background var(--transition-base);
}

.astro-btn--primary {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(45, 27, 78, 0.30);
}
.astro-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 27, 78, 0.40);
}

.astro-btn--gold {
  background: var(--grad-gold);
  color: var(--purple-deep);
  box-shadow: 0 6px 28px rgba(212, 168, 83, 0.35);
}
.astro-btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.50);
}

.astro-btn--outline {
  background: transparent;
  color: var(--purple-mid);
  border: 1.5px solid var(--lavender);
}
.astro-btn--outline:hover {
  background: rgba(155, 142, 196, 0.12);
  border-color: var(--lavender);
  transform: translateY(-3px);
}

/* Hero scroll indicator */
.astro-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
}
.astro-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lavender), transparent);
}

/* ----------------------------------------------------------
   2. PLANETS SECTION  (.astro-planets)
   ---------------------------------------------------------- */
.astro-planets {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.astro-planets__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

/* Planet Card */
.planet-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.planet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-card-top);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.planet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(45, 27, 78, 0.18), 0 0 0 1px rgba(212, 168, 83, 0.3);
  border-color: rgba(212, 168, 83, 0.4);
}
.planet-card:hover::before {
  opacity: 1;
}

.planet-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--grad-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  transition: transform var(--transition-base);
  box-shadow: 0 4px 20px rgba(155, 142, 196, 0.35);
}
.planet-card:hover .planet-card__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 32px rgba(155, 142, 196, 0.50);
}

/* Individual planet icon gradients */
.planet-card--sun    .planet-card__icon { background: linear-gradient(135deg, #f9c74f, #f8961e); box-shadow: 0 4px 20px rgba(249, 199, 79, 0.40); }
.planet-card--moon   .planet-card__icon { background: linear-gradient(135deg, #c4b5e8, #9b8ec4); box-shadow: 0 4px 20px rgba(196, 181, 232, 0.40); }
.planet-card--mars   .planet-card__icon { background: linear-gradient(135deg, #f4a4a4, #e63946); box-shadow: 0 4px 20px rgba(244, 164, 164, 0.40); }
.planet-card--mercury .planet-card__icon { background: linear-gradient(135deg, #90e0ef, #0096c7); box-shadow: 0 4px 20px rgba(144, 224, 239, 0.40); }
.planet-card--jupiter .planet-card__icon { background: linear-gradient(135deg, #d4a853, #b8893a); box-shadow: 0 4px 20px rgba(212, 168, 83, 0.40); }
.planet-card--venus  .planet-card__icon { background: linear-gradient(135deg, #f4a4a4, #c77dff); box-shadow: 0 4px 20px rgba(199, 125, 255, 0.40); }
.planet-card--saturn .planet-card__icon { background: linear-gradient(135deg, #6b7280, #374151); box-shadow: 0 4px 20px rgba(107, 114, 128, 0.40); }
.planet-card--rahu   .planet-card__icon { background: linear-gradient(135deg, #2d1b4e, #4a3870); }
.planet-card--ketu   .planet-card__icon { background: linear-gradient(135deg, #7b2d8b, #2d1b4e); }

.planet-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 0.3rem;
  letter-spacing: 0.02em;
}

.planet-card__role {
  font-size: 0.76rem;
  color: var(--lavender);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 0.9rem;
}

.planet-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.planet-card__trait {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--purple-mid);
  background: rgba(196, 181, 232, 0.18);
  border: 1px solid rgba(196, 181, 232, 0.35);
  border-radius: 99px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.03em;
  transition: background var(--transition-fast);
}
.planet-card:hover .planet-card__trait {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.35);
  color: var(--gold-dark);
}

/* ----------------------------------------------------------
   3. WHEEL SECTION  (.astro-wheel-section)
   ---------------------------------------------------------- */
.astro-wheel-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f4f0fc 50%, var(--cream) 100%);
}

.astro-wheel-section__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.astro-wheel-wrapper {
  position: sticky;
  top: 5rem;
}

.astro-wheel {
  width: 400px;
  height: 400px;
  position: relative;
  margin: 0 auto;
}

.astro-wheel svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 40px rgba(45, 27, 78, 0.20));
}

.astro-wheel__ring {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawCircle 2s ease-out forwards;
}

.astro-wheel__outer-ring {
  fill: none;
  stroke: var(--lavender-light);
  stroke-width: 2;
  animation-delay: 0.2s;
}
.astro-wheel__inner-ring {
  fill: none;
  stroke: rgba(212, 168, 83, 0.35);
  stroke-width: 1;
  animation-delay: 0.5s;
}

/* House label inside wheel */
.astro-wheel__house-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  fill: var(--purple-mid);
  text-anchor: middle;
  dominant-baseline: middle;
}

/* House cards grid */
.house-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.house-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 1.2rem;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.house-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 27, 78, 0.15);
  border-color: rgba(212, 168, 83, 0.35);
}

.house-card__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.house-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 0.25rem;
}
.house-card__domain {
  font-size: 0.72rem;
  color: var(--lavender);
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------
   4. ZODIAC SIGNS SECTION  (.astro-signs)
   ---------------------------------------------------------- */
.astro-signs {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.astro-signs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.sign-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.sign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 27, 78, 0.16);
  border-color: rgba(212, 168, 83, 0.40);
}

.sign-card__symbol {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.7rem;
  transition: transform var(--transition-base);
}
.sign-card:hover .sign-card__symbol {
  transform: scale(1.15) rotate(8deg);
}

.sign-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin: 0 0 0.5rem;
}

.sign-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

/* Element badges */
.sign-element {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
}
.sign-element--fire  { background: rgba(244, 99, 99, 0.12);  color: #c0392b; border: 1px solid rgba(244, 99, 99, 0.3); }
.sign-element--earth { background: rgba(100, 163, 78, 0.12); color: #2e7d32; border: 1px solid rgba(100, 163, 78, 0.3); }
.sign-element--air   { background: rgba(90, 160, 240, 0.12); color: #1565c0; border: 1px solid rgba(90, 160, 240, 0.3); }
.sign-element--water { background: rgba(90, 180, 200, 0.12); color: #00838f; border: 1px solid rgba(90, 180, 200, 0.3); }

.sign-quality {
  font-size: 0.65rem;
  color: var(--lavender);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ----------------------------------------------------------
   5. YOGAS SECTION  (.astro-yogas)
   ---------------------------------------------------------- */
.astro-yogas {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #f4f0fc 0%, var(--cream) 100%);
}

.astro-yogas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.yoga-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45, 27, 78, 0.08);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}
.yoga-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(45, 27, 78, 0.16);
}

.yoga-card__header {
  height: 5px;
  background: var(--grad-card-top);
}
.yoga-card--challenging .yoga-card__header {
  background: linear-gradient(90deg, #f4a4a4, #e63946);
}
.yoga-card--neutral .yoga-card__header {
  background: linear-gradient(90deg, #9b8ec4, #4a3870);
}

.yoga-card__body {
  padding: 1.75rem;
}

.yoga-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.yoga-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.25;
}

.yoga-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.yoga-badge--auspicious  { background: rgba(100, 193, 100, 0.12); color: #2e7d32; border: 1px solid rgba(100, 193, 100, 0.35); }
.yoga-badge--challenging { background: rgba(244, 164, 164, 0.15); color: #c0392b; border: 1px solid rgba(244, 164, 164, 0.35); }
.yoga-badge--neutral     { background: rgba(155, 142, 196, 0.12); color: var(--purple-mid); border: 1px solid var(--glass-border); }

.yoga-card__desc {
  font-size: 0.875rem;
  color: var(--purple-light);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.yoga-card__planets {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.yoga-effects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.yoga-effect-tag {
  font-size: 0.68rem;
  color: var(--purple-mid);
  background: rgba(196, 181, 232, 0.15);
  border: 1px solid rgba(196, 181, 232, 0.30);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
}

/* ----------------------------------------------------------
   6. CAREER SECTION  (.astro-career)
   ---------------------------------------------------------- */
.astro-career {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.astro-career__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.career-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base);
  position: relative;
  overflow: hidden;
}
.career-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-hover);
  background: rgba(255, 255, 255, 0.85);
}
.career-card:hover::after {
  transform: scaleX(1);
}

.career-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: transform var(--transition-base);
}
.career-card:hover .career-card__icon {
  transform: scale(1.1);
}

.career-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin: 0 0 0.5rem;
}
.career-card__desc {
  font-size: 0.83rem;
  color: var(--purple-light);
  line-height: 1.7;
}
.career-card__planets {
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   7. RELATIONSHIP SECTION  (.astro-relationship)
   ---------------------------------------------------------- */
.astro-relationship {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream) 0%, #f4f0fc 60%, var(--cream) 100%);
}

.astro-relationship__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* Compatibility wheel */
.compat-wheel {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.compat-wheel__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 32px rgba(45, 27, 78, 0.18));
}
.compat-wheel__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.compat-wheel__pct {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1;
}
.compat-wheel__label {
  font-size: 0.72rem;
  color: var(--lavender);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Element compatibility cards */
.compat-element-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.compat-el-card {
  border-radius: var(--card-radius);
  padding: 1.25rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.compat-el-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}
.compat-el-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.compat-el-card__icon {
  font-size: 1.4rem;
}
.compat-el-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-deep);
}
.compat-el-card__desc {
  font-size: 0.78rem;
  color: var(--purple-light);
  line-height: 1.65;
}
.compat-score {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.compat-score__bar {
  flex: 1;
  height: 4px;
  background: rgba(196, 181, 232, 0.25);
  border-radius: 99px;
  overflow: hidden;
}
.compat-score__fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 99px;
  transition: width 1s ease;
}
.compat-score__value {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 2.5rem;
  text-align: right;
}

/* ----------------------------------------------------------
   8. SPIRITUALITY SECTION  (.astro-spirituality)
   ---------------------------------------------------------- */
.astro-spirituality {
  padding: var(--section-py) 0;
  background: var(--purple-deep);
  position: relative;
  overflow: hidden;
}

/* Ambient glow overlay */
.astro-spirituality::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(155, 142, 196, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(212, 168, 83, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.astro-spirituality .astro-section-label {
  color: var(--gold-light);
}
.astro-spirituality .astro-section-title {
  color: var(--white);
}
.astro-spirituality .astro-section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.astro-spirituality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.spirit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base),
              background var(--transition-base),
              border-color var(--transition-base);
}
.spirit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(212, 168, 83, 0.40);
}

.spirit-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  animation: float 5s ease-in-out infinite;
}
.spirit-card:nth-child(2) .spirit-card__icon { animation-delay: 1s; }
.spirit-card:nth-child(3) .spirit-card__icon { animation-delay: 2s; }

.spirit-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.spirit-card__subtitle {
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.spirit-card__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.75;
}

/* ----------------------------------------------------------
   9. DASHA TIMELINE  (.astro-dasha)
   ---------------------------------------------------------- */
.astro-dasha {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.dasha-timeline {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--lavender-light) transparent;
}
.dasha-timeline::-webkit-scrollbar {
  height: 4px;
}
.dasha-timeline::-webkit-scrollbar-track { background: transparent; }
.dasha-timeline::-webkit-scrollbar-thumb { background: var(--lavender-light); border-radius: 99px; }

/* Line behind nodes */
.dasha-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lavender-light), var(--gold-light), var(--lavender-light), transparent);
}

.dasha-period {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  cursor: pointer;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.dasha-period__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  transition: transform var(--transition-base),
              border-color var(--transition-base),
              box-shadow var(--transition-base);
  box-shadow: 0 4px 16px rgba(45, 27, 78, 0.10);
}
.dasha-period:hover .dasha-period__node,
.dasha-period--active .dasha-period__node {
  transform: scale(1.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.20), 0 8px 24px rgba(45, 27, 78, 0.18);
}

.dasha-period--active .dasha-period__node {
  background: var(--grad-gold);
  border-color: var(--gold-dark);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.dasha-period__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deep);
  text-align: center;
  margin-bottom: 0.2rem;
}
.dasha-period--active .dasha-period__name {
  color: var(--gold-dark);
}

.dasha-period__years {
  font-size: 0.68rem;
  color: var(--lavender);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.25rem;
}
.dasha-period__duration {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--purple-light);
  text-align: center;
}

/* ----------------------------------------------------------
   10. DAILY COSMIC ENERGY  (.astro-daily)
   ---------------------------------------------------------- */
.astro-daily {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #f9f0ff 0%, var(--cream) 100%);
}

.astro-daily__widget {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--card-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 60px rgba(45, 27, 78, 0.12);
  overflow: hidden;
}

.daily-widget__header {
  background: var(--grad-purple);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.daily-widget__date {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
}
.daily-widget__moon {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.daily-widget__moon-phase {
  font-size: 2rem;
}
.daily-widget__moon-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-light);
}

.daily-widget__body {
  padding: 2rem 2.5rem;
}

.daily-widget__energy {
  margin-bottom: 1.5rem;
}
.daily-widget__energy-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.6rem;
}
.daily-widget__energy-bar {
  height: 8px;
  background: rgba(196, 181, 232, 0.20);
  border-radius: 99px;
  overflow: hidden;
}
.daily-widget__energy-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lavender), var(--gold));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.daily-widget__planets {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.daily-planet-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196, 181, 232, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: var(--purple-mid);
}
.daily-planet-chip .chip-icon {
  font-size: 0.9rem;
}

.daily-widget__message {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--purple-mid);
  line-height: 1.7;
  padding: 1.25rem;
  background: rgba(196, 181, 232, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

/* ----------------------------------------------------------
   11. NAKSHATRAS  (.astro-nakshatra)
   ---------------------------------------------------------- */
.astro-nakshatra {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.astro-nakshatra__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.75rem;
}

.nakshatra-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 0.85rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.nakshatra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 27, 78, 0.14);
  border-color: rgba(212, 168, 83, 0.40);
}

.nakshatra-card__number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--lavender);
  font-weight: 300;
  margin-bottom: 0.2rem;
}
.nakshatra-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.nakshatra-card__ruler {
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
.nakshatra-card__symbol {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* ----------------------------------------------------------
   12. SERVICES  (.astro-services)
   ---------------------------------------------------------- */
.astro-services {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #f4f0fc 0%, var(--cream) 100%);
}

.astro-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(45, 27, 78, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(45, 27, 78, 0.18);
}

.service-card__top {
  padding: 2.25rem 2rem 0;
}

.service-card__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.30);
  border-radius: 99px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 1rem;
}
.service-card__badge--popular {
  color: var(--white);
  background: var(--purple-mid);
  border-color: transparent;
}

.service-card__icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin: 0 0 0.5rem;
}
.service-card__subtitle {
  font-size: 0.83rem;
  color: var(--lavender);
  margin: 0 0 1.1rem;
  font-style: italic;
}
.service-card__desc {
  font-size: 0.85rem;
  color: var(--purple-light);
  line-height: 1.75;
}

.service-card__divider {
  height: 1px;
  background: var(--glass-border);
  margin: 1.5rem 2rem;
}

.service-card__features {
  padding: 0 2rem;
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--purple-mid);
}
.service-card__feature::before {
  content: "✦";
  font-size: 0.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card__footer {
  margin-top: auto;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.service-card__price-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
}
.service-card__price-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1;
}

/* Highlighted / featured service card */
.service-card--featured {
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.18);
  position: relative;
}
.service-card--featured .service-card__top {
  position: relative;
}
.service-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-gold);
}

/* ----------------------------------------------------------
   TAB SYSTEM (shared across sections)
   ---------------------------------------------------------- */
.astro-tabs {
  display: flex;
  gap: 0.25rem;
  background: rgba(196, 181, 232, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  padding: 0.3rem;
  width: fit-content;
  margin: 0 auto 2.5rem;
}
.astro-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--purple-light);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast);
  font-family: var(--font-body);
}
.astro-tab:hover {
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.50);
}
.astro-tab--active {
  background: var(--white);
  color: var(--purple-deep);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(45, 27, 78, 0.12);
}

/* ----------------------------------------------------------
   ACCORDION (for FAQs etc.)
   ---------------------------------------------------------- */
.astro-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.astro-accordion__item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.astro-accordion__item--open {
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.12);
  border-color: rgba(212, 168, 83, 0.35);
}
.astro-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-deep);
  gap: 1rem;
}
.astro-accordion__trigger:hover {
  color: var(--purple-mid);
}
.astro-accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196, 181, 232, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-base), background var(--transition-base);
  color: var(--lavender);
}
.astro-accordion__item--open .astro-accordion__icon {
  transform: rotate(45deg);
  background: rgba(212, 168, 83, 0.20);
  color: var(--gold-dark);
}
.astro-accordion__content {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--purple-light);
  line-height: 1.8;
}

/* ----------------------------------------------------------
   STAT / COUNTER STRIP
   ---------------------------------------------------------- */
.astro-stats-strip {
  background: var(--grad-purple);
  padding: 3rem 0;
}
.astro-stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.astro-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.astro-stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
}

/* ----------------------------------------------------------
   TESTIMONIAL
   ---------------------------------------------------------- */
.astro-testimonials {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.astro-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(45, 27, 78, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 27, 78, 0.12);
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--purple-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple-deep);
}
.testimonial-card__meta {
  font-size: 0.72rem;
  color: var(--lavender);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ----------------------------------------------------------
   NEWSLETTER / CTA BAND
   ---------------------------------------------------------- */
.astro-cta-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, #2d1b4e 0%, #4a3870 50%, #2d1b4e 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.astro-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 168, 83, 0.10) 0%, transparent 60%);
}
.astro-cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}
.astro-cta-band__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  position: relative;
}
.astro-cta-band__form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.astro-cta-band__input {
  padding: 0.85rem 1.5rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 280px;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.astro-cta-band__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.astro-cta-band__input:focus {
  border-color: rgba(212, 168, 83, 0.70);
  background: rgba(255, 255, 255, 0.14);
}

/* ----------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------- */
.astro-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--lavender);
  padding: 1rem 0;
}
.astro-breadcrumb a {
  color: var(--lavender);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.astro-breadcrumb a:hover { color: var(--gold-dark); }
.astro-breadcrumb__sep {
  color: rgba(155, 142, 196, 0.40);
  font-size: 0.6rem;
}
.astro-breadcrumb__current {
  color: var(--purple-mid);
  font-weight: 500;
}

/* ----------------------------------------------------------
   UTILITY / HELPERS
   ---------------------------------------------------------- */
.astro-text-gold       { color: var(--gold-dark); }
.astro-text-lavender   { color: var(--lavender); }
.astro-text-purple     { color: var(--purple-deep); }
.astro-text-center     { text-align: center; }
.astro-text-italic     { font-style: italic; }
.astro-font-heading    { font-family: var(--font-heading); }

.astro-mt-0  { margin-top: 0; }
.astro-mt-1  { margin-top: 0.5rem; }
.astro-mt-2  { margin-top: 1rem; }
.astro-mt-3  { margin-top: 1.5rem; }
.astro-mt-4  { margin-top: 2rem; }
.astro-mb-0  { margin-bottom: 0; }
.astro-mb-1  { margin-bottom: 0.5rem; }
.astro-mb-2  { margin-bottom: 1rem; }
.astro-mb-3  { margin-bottom: 1.5rem; }
.astro-mb-4  { margin-bottom: 2rem; }

/* ----------------------------------------------------------
   RESPONSIVE — TABLET  (max 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .astro-planets__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .astro-signs__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .astro-wheel-section__inner {
    grid-template-columns: 1fr;
  }
  .astro-wheel-wrapper {
    position: static;
  }
  .astro-wheel {
    width: 300px;
    height: 300px;
  }

  .house-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .astro-yogas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .astro-career__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .astro-relationship__inner {
    grid-template-columns: 1fr;
  }
  .compat-wheel {
    width: 260px;
    height: 260px;
  }

  .astro-spirituality__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .astro-nakshatra__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .astro-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .astro-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .astro-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — MOBILE  (max 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-py: clamp(3rem, 8vw, 5rem);
    --card-radius: 1.25rem;
    --card-radius-lg: 1.5rem;
  }

  .astro-hero__headline {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .astro-hero__float-num {
    font-size: 4rem !important;
    opacity: 0.12;
  }

  .astro-section-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  /* Planets: 2-col on mobile */
  .astro-planets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  /* Signs: 2-col */
  .astro-signs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Yogas: 1-col */
  .astro-yogas__grid {
    grid-template-columns: 1fr;
  }

  /* Career: 1-col */
  .astro-career__grid {
    grid-template-columns: 1fr;
  }

  /* House cards: 2-col */
  .house-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Spirituality: 1-col */
  .astro-spirituality__grid {
    grid-template-columns: 1fr;
  }

  /* Dasha: scrollable strip, node smaller */
  .dasha-period {
    min-width: 88px;
  }
  .dasha-period__node {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  /* Nakshatra: 3-col */
  .astro-nakshatra__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Services: 1-col */
  .astro-services__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials: 1-col */
  .astro-testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Stats: 2-col */
  .astro-stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Compat: 1-col */
  .compat-element-cards {
    grid-template-columns: 1fr;
  }

  /* Daily widget */
  .daily-widget__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .daily-widget__moon {
    align-items: flex-start;
  }

  /* Hero CTAs: stack */
  .astro-hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .astro-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Tabs: wrap */
  .astro-tabs {
    flex-wrap: wrap;
    border-radius: var(--card-radius);
    padding: 0.4rem;
  }

  /* CTA band input */
  .astro-cta-band__input {
    min-width: 100%;
  }
  .astro-cta-band__form {
    flex-direction: column;
    align-items: center;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE — SMALL MOBILE  (max 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .astro-planets__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .planet-card {
    padding: 1.25rem 0.85rem 1rem;
  }
  .planet-card__icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .astro-signs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .astro-nakshatra__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .astro-wheel {
    width: 260px;
    height: 260px;
  }

  .daily-widget__body,
  .daily-widget__header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .service-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------
   PRINT OVERRIDES
   ---------------------------------------------------------- */
@media print {
  .astro-hero__floats,
  .astro-spin-slow,
  .astro-float,
  .astro-hero__scroll { display: none; }

  .astro-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .astro-glass-card,
  .planet-card,
  .yoga-card,
  .service-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

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