/* ============================================
   ASTRO MAAGIC - Landing Page Styles
   Clean, hand-crafted design using software colors
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Exact colors from the Astro Maagic software */
  --orange: #e8a020;
  --orange-hover: #d4922a;
  --orange-light: #f5c24c;
  --orange-bg: rgba(232, 160, 32, 0.08);
  --orange-border: rgba(232, 160, 32, 0.25);

  --dark: #1e1e2d;
  --dark-soft: #2d2d3f;
  --dark-lighter: #3a3a50;

  --white: #ffffff;
  --off-white: #f5f6fa;
  --light-gray: #eef0f5;
  --border: #e0e3ea;

  --text: #2d2d3f;
  --text-secondary: #5f6377;
  --text-muted: #8e92a4;
  --text-on-dark: #c8cad4;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-width: 1380px;
  --header-h: 64px;
  --radius: 8px;
  --radius-lg: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 20px 0 8px;
}

.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  color: var(--dark);
  margin-bottom: 14px;
}

.section-desc {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--orange);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--dark);
}

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #fac115;
  /* rich yellow gold */
  z-index: 100;
  transition: box-shadow 0.25s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-symbol {
  width: 42px;
  height: 42px;
  background: var(--dark);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 4px;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo-name span {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

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

@media (min-width: 769px) {
  .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav a {
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-cta .btn {
  padding: 8px 22px;
  font-size: 0.82rem;
  background: var(--dark);
  color: #fff;
}

.nav-cta .btn:hover {
  background: var(--dark-soft);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 600;
}

.mobile-menu a:hover {
  color: var(--orange-hover);
}

/* ============================
   HERO
   ============================ */
.hero {
  display: flex;
  align-items: center;
  padding: 85px 0 20px;
  background:
    linear-gradient(160deg,
      rgba(5, 5, 18, 0.48) 0%,
      rgba(8, 4, 22, 0.32) 45%,
      rgba(5, 5, 18, 0.52) 100%),
    url("https://media.istockphoto.com/id/1314493164/photo/astrological-zodiac-signs-inside-of-horoscope-circle-astrology-knowledge-of-stars-in-the-sky.webp?a=1&b=1&s=612x612&w=0&k=20&c=hCtA6lH8qQUQbb__5_ElUJXDZc4-0r4yxbnYUYlNaAY=") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Subtle vignette overlay — darkens edges slightly for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(5, 5, 18, 0.35) 100%);
  z-index: 0;
}

/* Glowing nebula ring (zodiac wheel silhouette) */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.1);
  box-shadow:
    0 0 0 24px rgba(232, 160, 32, 0.035),
    0 0 0 64px rgba(232, 160, 32, 0.02),
    0 0 80px rgba(232, 160, 32, 0.07) inset;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 520px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--orange-hover);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero h1 em {
  color: #fac115;
  font-style: normal;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-num {
  text-align: center;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.hero-num strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fac115;
}

.hero-num span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0.9;
}

/* Right side — icon composition */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 340px;
}

.hero-icon-card {
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: background 0.2s, border-color 0.2s;
}

.hero-icon-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-icon-card i {
  font-size: 1.6rem;
  color: #fac115;
  margin-bottom: 8px;
  display: block;
}

.hero-icon-card span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

/* ============================
   ABOUT
   ============================ */
.about {
  background: var(--white);
}

.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 24px;
  align-items: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.highlight-card .hi-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--dark);
  font-size: 0.95rem;
}

.highlight-card h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.highlight-card p {
  font-size: 0.78rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* About right — stats block */
.about-stats-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.about-stat i {
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
}

.about-stat span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Astrologer Profile Card */
.astrologer-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: left;
}

.astro-avatar-block {
  flex-shrink: 0;
}

.astro-avatar-circle {
  width: 90px;
  height: 90px;
  background: var(--orange-bg);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-hover);
  font-size: 2.5rem;
}

.astro-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.astro-tag-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.astro-role {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.astro-bio {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.astro-specialties {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.astro-specialties span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.astro-specialties span i {
  color: var(--orange);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .astrologer-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .astro-specialties {
    justify-content: center;
  }
}

/* ============================
   SERVICES
   ============================ */
.services {
  background: var(--white);
}

/* Responsive display setup */
.services-mobile {
  display: block;
}

.services-desktop {
  display: none;
}

@media (min-width: 769px) {
  .services-mobile {
    display: none;
  }

  .services-desktop {
    display: block;
  }
}

/* Rasi Chart Kattam Styling */
.rasi-wrapper {
  max-width: 780px;
  width: 100%;
  margin: 30px auto 0;
  position: relative;
}

.rasi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0px;
  /* zero gap for traditional line-by-line chart look */
  border: 3px solid #b32d2d;
  /* thick outer red border */
  background: #fdfbf7;
}

.rasi-box {
  aspect-ratio: 1 / 1;
  border: 1.5px solid #b32d2d;
  /* red dividers */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px;
  background: #fff;
  transition: background-color 0.2s, box-shadow 0.2s;
  user-select: none;
}

.rasi-service-box {
  cursor: pointer;
}

.rasi-service-box:hover,
.rasi-service-box.active {
  background: var(--orange-bg);
  box-shadow: inset 0 0 15px rgba(232, 160, 32, 0.2);
}

.rasi-service-box i {
  font-size: 1.4rem;
  color: #b32d2d;
  margin-bottom: 6px;
}

.rasi-service-box .house-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #b32d2d;
  display: block;
  line-height: 1.2;
}

.rasi-service-box .house-ta {
  font-size: 0.62rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 1px;
}

/* Sign boxes (traditional look) */
.rasi-sign-box {
  background: #fcf9f2;
}

.rasi-sign-box .sign-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.rasi-sign-box .sign-symbol {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 2px;
}

/* Center Panel displaying details (Row 2-3, Col 2-3) */
.rasi-center-panel {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  border: 2px solid #b32d2d;
  background: #fdfbf7;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Red double-line borders in center panel */
.rasi-center-panel::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  border-top: 1px solid #b32d2d;
  opacity: 0.7;
}

.rasi-center-panel::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  border-bottom: 1px solid #b32d2d;
  opacity: 0.7;
}

/* Detail Card Switching */
.rasi-detail-card {
  display: none;
  animation: rasiFadeIn 0.25s ease-out;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.rasi-detail-card.active {
  display: flex;
}

@keyframes rasiFadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rasi-detail-card h3 {
  color: #b32d2d;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.rasi-detail-card .detail-ta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.rasi-detail-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.rasi-detail-features {
  margin-bottom: 12px;
}

.rasi-detail-features li {
  font-size: 0.76rem;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rasi-detail-features li i {
  color: #b32d2d;
  font-size: 0.65rem;
}

.rasi-detail-card .svc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #b32d2d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Default view in center */
.rasi-default-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.rasi-default-view img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.rasi-default-view h3 {
  color: #b32d2d;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.rasi-default-view p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  max-width: 200px;
}

/* Mobile Service Cards */
.services-mobile .service-card {
  background: #fdfbf7;
  border: 2px solid #b32d2d;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
}

.services-mobile .service-card::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  border-top: 1px solid #b32d2d;
  opacity: 0.6;
}

.services-mobile .service-card::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  height: 1px;
  border-bottom: 1px solid #b32d2d;
  opacity: 0.6;
}

.services-mobile .service-card h3 {
  color: #b32d2d;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.services-mobile .service-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.services-mobile .svc-features li {
  font-size: 0.76rem;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-mobile .svc-features li i {
  color: #b32d2d;
  font-size: 0.7rem;
  min-width: 14px;
}

.services-mobile .svc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #b32d2d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-mobile .svc-link:hover {
  gap: 8px;
  color: #d13f3f;
}

.services-mobile .svc-link i {
  font-size: 0.7rem;
  transition: 0.15s;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  position: relative;
}

/* Connector line */
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--orange);
}

.step h3 {
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.step p {
  font-size: 0.88rem;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   PRICING
   ============================ */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.price-card.featured {
  border-color: var(--orange);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--orange);
  color: var(--dark);
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 0 6px 6px;
}

.price-top {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.price-top .plan-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: var(--orange-bg);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--orange);
}

.price-card.featured .plan-icon {
  background: var(--orange);
  color: var(--dark);
}

.price-top h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
}

.amount small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}

.price-features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--off-white);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i.fa-check {
  color: #28a745;
  font-size: 0.75rem;
}

.price-features li i.fa-xmark {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.price-features li.off {
  opacity: 0.45;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

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

.testimonials .section-title {
  color: #fff;
}

.testimonials .section-desc {
  color: var(--text-on-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testi-stars i {
  color: var(--orange);
  font-size: 0.8rem;
}

.testi-quote {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  font-style: italic;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================
   FAQ
   ============================ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--orange-border);
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--off-white);
}

.faq-item.open .faq-q {
  background: var(--off-white);
  color: var(--orange-hover);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--orange);
  transition: transform 0.25s, background 0.15s;
}

.faq-item.open .faq-chevron {
  background: var(--orange);
  color: var(--dark);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 250px;
}

.faq-a-inner {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================
   ENQUIRY / CONTACT
   ============================ */
.enquiry {
  background: var(--white);
}

.enquiry .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 12px;
  color: var(--dark);
}

.contact-list {
  margin: 24px 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row .c-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--orange);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--dark);
  font-size: 1rem;
}

.contact-row h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-row p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.socials a:hover {
  background: var(--orange);
  color: var(--dark);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.form-card h3 {
  color: var(--dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
}

.form-card>p {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.form-card form {
  margin-bottom: 0;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.field label .req {
  color: #ef4444;
}

.input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.input:focus {
  border-color: var(--orange);
}

.input::placeholder {
  color: var(--text-muted);
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825L.175 3h11.65z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.input {
  resize: vertical;
  min-height: 100px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 4px;
}

.form-ok {
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}

.form-ok.show {
  display: block;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 60px 0 0;
}

/* Orange line at top */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--orange);
  margin-bottom: 60px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 16px 0 20px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.15s, padding-left 0.15s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input {
  flex: 1;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  font-family: var(--font-body);
}

.newsletter input:focus {
  border-color: var(--orange);
}

.newsletter input::placeholder {
  color: var(--text-muted);
}

.newsletter button {
  padding: 8px 16px;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.15s;
}

.newsletter button:hover {
  background: var(--orange-hover);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 50;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--orange-hover);
}

/* ============================
   TOAST
   ============================ */
.toast-msg {
  position: fixed;
  top: 80px;
  right: 24px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border-left: 4px solid #28a745;
  z-index: 200;
  transform: translateX(120%);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
}

.toast-msg.show {
  transform: translateX(0);
}

.toast-msg.err {
  border-left-color: #ef4444;
}

.toast-msg .t-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.toast-msg.err .t-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.toast-msg h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 1px;
}

.toast-msg p {
  font-size: 0.76rem;
  margin-bottom: 0;
}

/* ============================
   SCROLL REVEAL
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-numbers {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-graphic {
    margin-top: 40px;
  }

  .hero-icon-grid {
    max-width: 300px;
    margin: 0 auto;
  }

  .about .wrap {
    grid-template-columns: 1fr;
  }

  .about-stats-block {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 40px auto 0;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0;
  }

  .enquiry .wrap {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .steps::before {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section {
    padding: 20px 0 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-stats-block {
    grid-template-columns: 1fr;
  }
}

/* Custom side paddings for About Us and Contact Us */
@media (min-width: 1025px) {

  .about .wrap,
  .enquiry .wrap {
    padding: 0 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .about .wrap,
  .enquiry .wrap {
    padding: 0 40px;
  }
}

/* ==========================================================================
   SIGN UP BUTTONS & GLASSMORPHIC MODAL
   ========================================================================== */

/* Header & Mobile Signup Button */
.btn-signup {
  background: var(--dark) !important;
  color: #fac115 !important;
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
  border-radius: 6px !important;
  border: 2px solid var(--dark) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-signup:hover {
  background: var(--dark-soft) !important;
  color: #fff !important;
  border-color: var(--dark-soft) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-cta {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

/* Pulsing glow animation for header Sign Up button */
.pulse-highlight {
  animation: pulseButton 1s ease-in-out 3;
}

@keyframes pulseButton {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 22px rgba(250, 193, 21, 0.85);
    background: var(--dark-soft) !important;
    border-color: #fac115 !important;
    color: #fff !important;
  }
}

/* ==========================================================================
   SECTION ANIMATIONS — LAYERED COSMIC BACKGROUNDS
   ========================================================================== */

/* Remove old minimal pseudo-element watermarks */
.about::before,
.services::before,
.pricing::before,
.faq::before,
.enquiry::before {
  display: none;
}

/* All post-hero sections: ensure position context */
.about,
.services,
.pricing,
.faq,
.enquiry {
  position: relative;
  overflow: hidden;
}

/* ---------- SHARED COSMOS CANVAS ---------- */
.cosmos-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ---------- TWINKLING STARS ---------- */
.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* ---------- ZODIAC GLYPH FLOATERS ---------- */
.zodiac-glyph {
  position: absolute;
  font-size: var(--sz, 2rem);
  color: rgba(232, 160, 32, var(--op, 0.07));
  pointer-events: none;
  user-select: none;
  animation: glyphFloat var(--fdur, 8s) ease-in-out infinite var(--fdelay, 0s);
}

@keyframes glyphFloat {

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

  33% {
    transform: translateY(-18px) rotate(6deg) scale(1.06);
  }

  66% {
    transform: translateY(8px) rotate(-4deg) scale(0.96);
  }
}

/* ---------- ROTATING ORBIT RINGS ---------- */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.06);
  pointer-events: none;
  animation: spinOrbit var(--spin, 60s) linear infinite;
  transform-origin: center center;
}

.orbit-ring::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(232, 160, 32, 0.35);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(232, 160, 32, 0.5);
}

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

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

/* ---------- SHOOTING STARS ---------- */
.shooting-star {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 2px;
  pointer-events: none;
  animation: shoot var(--shdur, 4s) ease-out infinite var(--shdelay, 0s);
  opacity: 0;
  transform-origin: left center;
}

@keyframes shoot {
  0% {
    opacity: 0;
    width: 0;
    transform: translateX(0) scaleX(0);
  }

  10% {
    opacity: 1;
    width: 120px;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    width: 200px;
    transform: translateX(600px) scaleX(0.3);
  }
}

/* ---------- PULSING NEBULA GLOW ---------- */
.nebula-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: nebulaPulse var(--ndur, 8s) ease-in-out infinite var(--ndelay, 0s);
  filter: blur(40px);
}

@keyframes nebulaPulse {

  0%,
  100% {
    opacity: 0.04;
    transform: scale(1);
  }

  50% {
    opacity: 0.1;
    transform: scale(1.12);
  }
}

/* ---------- CONSTELLATION LINES ---------- */
.constellation-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  animation: constellationFade 10s ease-in-out infinite;
}

@keyframes constellationFade {

  0%,
  100% {
    opacity: 0.04;
  }

  50% {
    opacity: 0.1;
  }
}

/* ---------- ZODIAC WHEEL (large bg SVG) ---------- */
.bg-zodiac-wheel {
  position: absolute;
  color: rgba(232, 160, 32, 0.04);
  animation: rotateZodiac var(--zwdur, 90s) linear infinite;
  transform-origin: center center;
}

/* ---------- FLOATING PLANETS ---------- */
.bg-planet {
  position: absolute;
  color: rgba(232, 160, 32, 0.055);
  animation: floatPlanet var(--pdur, 9s) ease-in-out infinite var(--pdelay, 0s);
  pointer-events: none;
}

/* ---------- KEYFRAMES (core) ---------- */
@keyframes rotateZodiac {
  from {
    transform: rotate(0deg);
  }

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

@keyframes floatPlanet {

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

  50% {
    transform: translateY(-18px) rotate(9deg);
  }
}

/* ---------- ABOUT SECTION SPECIFIC ---------- */
.about .cosmos-bg .orbit-ring.r1 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -100px;
  --spin: 55s;
}

.about .cosmos-bg .orbit-ring.r2 {
  width: 180px;
  height: 180px;
  top: 10%;
  right: 5%;
  --spin: 38s;
  border-color: rgba(232, 160, 32, 0.08);
  animation-direction: reverse;
}

.about .cosmos-bg .nebula-glow.n1 {
  width: 350px;
  height: 350px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(120, 60, 200, 0.18), transparent 70%);
  --ndur: 10s;
}

.about .cosmos-bg .nebula-glow.n2 {
  width: 260px;
  height: 260px;
  bottom: 0;
  left: 10%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.12), transparent 70%);
  --ndur: 13s;
  --ndelay: 2s;
}

/* ---------- SERVICES SECTION SPECIFIC ---------- */
.services .cosmos-bg .orbit-ring.r1 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -140px;
  --spin: 80s;
  border-color: rgba(232, 160, 32, 0.05);
}

.services .cosmos-bg .orbit-ring.r2 {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
  --spin: 50s;
  animation-direction: reverse;
}

.services .cosmos-bg .orbit-ring.r3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 3%;
  --spin: 35s;
  border-color: rgba(232, 160, 32, 0.09);
}

.services .cosmos-bg .nebula-glow.n1 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(60, 100, 200, 0.12), transparent 70%);
  --ndur: 12s;
}

/* ---------- PRICING SECTION SPECIFIC ---------- */
.pricing .cosmos-bg .orbit-ring.r1 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -100px;
  --spin: 70s;
}

.pricing .cosmos-bg .orbit-ring.r2 {
  width: 200px;
  height: 200px;
  top: 5%;
  right: 8%;
  --spin: 45s;
  animation-direction: reverse;
  border-color: rgba(232, 160, 32, 0.07);
}

.pricing .cosmos-bg .nebula-glow.n1 {
  width: 400px;
  height: 400px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.1), transparent 70%);
  --ndur: 9s;
}

.pricing .cosmos-bg .nebula-glow.n2 {
  width: 300px;
  height: 300px;
  bottom: -40px;
  left: 20%;
  background: radial-gradient(circle, rgba(120, 60, 200, 0.1), transparent 70%);
  --ndur: 14s;
  --ndelay: 3s;
}

/* ---------- FAQ SECTION SPECIFIC ---------- */
.faq .cosmos-bg .orbit-ring.r1 {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -130px;
  --spin: 85s;
  border-color: rgba(232, 160, 32, 0.04);
}

.faq .cosmos-bg .orbit-ring.r2 {
  width: 190px;
  height: 190px;
  bottom: 5%;
  right: 5%;
  --spin: 40s;
  animation-direction: reverse;
}

.faq .cosmos-bg .nebula-glow.n1 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(120, 60, 200, 0.12), transparent 70%);
  --ndur: 11s;
}

/* ---------- ENQUIRY SECTION SPECIFIC ---------- */
.enquiry .cosmos-bg .orbit-ring.r1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -100px;
  --spin: 65s;
}

.enquiry .cosmos-bg .orbit-ring.r2 {
  width: 420px;
  height: 420px;
  bottom: -150px;
  left: -150px;
  --spin: 95s;
  animation-direction: reverse;
  border-color: rgba(232, 160, 32, 0.035);
}

.enquiry .cosmos-bg .nebula-glow.n1 {
  width: 360px;
  height: 360px;
  top: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.1), transparent 70%);
  --ndur: 10s;
  --ndelay: 1s;
}

.enquiry .cosmos-bg .nebula-glow.n2 {
  width: 280px;
  height: 280px;
  bottom: 0;
  right: 10%;
  background: radial-gradient(circle, rgba(60, 100, 200, 0.1), transparent 70%);
  --ndur: 12s;
}

/* Ensure content always renders above cosmos layer */
.about .wrap,
.services .wrap,
.pricing .wrap,
.faq .wrap,
.enquiry .wrap {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   BOLD ASTROLOGY ANIMATIONS STRIP
   ========================================================================== */

.astro-anim-strip {
  background: linear-gradient(180deg, #f5f5f7 0%, #fbfbfc 50%, #f6f6f8 100%);
  padding: 40px 0 50px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(232, 160, 32, 0.15);
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

/* ── Rasi Ticker ── */
.rasi-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 48px;
  background: rgba(232, 160, 32, 0.05);
  border-top: 1px solid rgba(232, 160, 32, 0.15);
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
  padding: 10px 24px;
}

.rasi-ticker-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 15, 14, 0.7);
  white-space: nowrap;
  min-width: 110px;
}

.rasi-ticker-track {
  overflow: hidden;
  flex: 1;
}

.rasi-ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 50s linear infinite;
}

.nava-inner {
  animation: tickerScroll 70s linear infinite;
  animation-direction: reverse;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

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

.rasi-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 20px;
  border-right: 1px solid rgba(232, 160, 32, 0.15);
  cursor: default;
  transition: background 0.2s;
}

.rasi-item:hover {
  background: rgba(232, 160, 32, 0.08);
}

.rasi-sym {
  font-size: 1.5rem;
  color: #4b4a4a;
  line-height: 1;
}

.rasi-ta {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(18, 18, 18, 0.85);
  letter-spacing: 0.01em;
}

.rasi-en {
  font-size: 0.7rem;
  color: rgba(232, 160, 32, 0.6);
  letter-spacing: 0.05em;
}

/* ── Zodiac Center Stage ── */
.zodiac-center-stage {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zodiac-outer-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateZodiac 40s linear infinite;
  transform-origin: center center;
  filter: drop-shadow(0 0 12px rgba(232, 160, 32, 0.25));
}

.jathagam-grid-svg {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 0 14px rgba(232, 160, 32, 0.3));
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(232, 160, 32, 0.25));
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(232, 160, 32, 0.55));
  }
}

/* ── Planet Orbits ── */
.planet-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(232, 160, 32, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinOrbit linear infinite;
}

.planet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px currentColor;
}

.surya-dot {
  background: #ffa500;
  color: #ffa500;
  width: 13px;
  height: 13px;
  top: -6px;
  box-shadow: 0 0 14px #ffa500;
}

.chandra-dot {
  background: #c8e6ff;
  color: #c8e6ff;
}

.kuja-dot {
  background: #ff5555;
  color: #ff5555;
}

.guru-dot {
  background: #ffe066;
  color: #ffe066;
  width: 12px;
  height: 12px;
  top: -6px;
}

.sani-dot {
  background: #aab0ee;
  color: #aab0ee;
}

.orbit-surya {
  width: 260px;
  height: 260px;
  animation-duration: 10s;
  border-color: rgba(255, 165, 0, 0.25);
}

.orbit-chandra {
  width: 300px;
  height: 300px;
  animation-duration: 7s;
  border-color: rgba(200, 230, 255, 0.2);
  animation-direction: reverse;
}

.orbit-kuja {
  width: 340px;
  height: 340px;
  animation-duration: 15s;
  border-color: rgba(255, 80, 80, 0.2);
}

.orbit-guru {
  width: 390px;
  height: 390px;
  animation-duration: 20s;
  border-color: rgba(255, 224, 100, 0.2);
}

.orbit-sani {
  width: 450px;
  height: 450px;
  animation-duration: 28s;
  border-color: rgba(170, 176, 238, 0.2);
  animation-direction: reverse;
}

/* ── Navagraha Ticker ── */
.navagraha-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  background: rgba(232, 160, 32, 0.04);
  border-top: 1px solid rgba(232, 160, 32, 0.12);
  border-bottom: 1px solid rgba(232, 160, 32, 0.12);
}

.nava-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(30, 28, 28, 0.8);
  white-space: nowrap;
}

.nava-item em {
  font-style: normal;
  color: rgba(232, 160, 32, 0.6);
  font-size: 0.72rem;
  font-weight: 400;
}

.nava-sym {
  font-size: 1.1rem;
  color: #fac115;
}

.nava-sep {
  color: rgba(232, 160, 32, 0.35);
  font-size: 1.2rem;
  padding: 0 2px;
}

/* ── Section-level Bold Zodiac Glyphs (per section) ── */
.about .cosmos-bg .zodiac-glyph,
.services .cosmos-bg .zodiac-glyph,
.pricing .cosmos-bg .zodiac-glyph,
.faq .cosmos-bg .zodiac-glyph,
.enquiry .cosmos-bg .zodiac-glyph {
  --op: 0.14 !important;
  text-shadow: 0 0 30px rgba(232, 160, 32, 0.4);
}

/* Upgrade orbit ring visibility for sections */
.about .cosmos-bg .orbit-ring,
.services .cosmos-bg .orbit-ring,
.pricing .cosmos-bg .orbit-ring,
.faq .cosmos-bg .orbit-ring,
.enquiry .cosmos-bg .orbit-ring {
  border-color: rgba(232, 160, 32, 0.13) !important;
  box-shadow: 0 0 20px rgba(232, 160, 32, 0.04) inset;
}

.about .cosmos-bg .orbit-ring::after,
.services .cosmos-bg .orbit-ring::after,
.pricing .cosmos-bg .orbit-ring::after,
.faq .cosmos-bg .orbit-ring::after,
.enquiry .cosmos-bg .orbit-ring::after {
  width: 10px;
  height: 10px;
  top: -5px;
  background: rgba(232, 160, 32, 0.55);
  box-shadow: 0 0 14px rgba(232, 160, 32, 0.7), 0 0 28px rgba(232, 160, 32, 0.3);
}

/* Upgrade nebula glow opacity for sections */
.about .cosmos-bg .nebula-glow,
.services .cosmos-bg .nebula-glow,
.pricing .cosmos-bg .nebula-glow,
.faq .cosmos-bg .nebula-glow,
.enquiry .cosmos-bg .nebula-glow {
  filter: blur(50px);
}

@keyframes nebulaPulse {

  0%,
  100% {
    opacity: 0.07;
    transform: scale(1);
  }

  50% {
    opacity: 0.18;
    transform: scale(1.12);
  }
}

/* shooting stars brighter */
.shooting-star {
  height: 2px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(250, 193, 21, 0.6), transparent) !important;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

/* Responsive: stack zodiac stage on mobile */
@media (max-width: 600px) {
  .zodiac-center-stage {
    width: 300px;
    height: 300px;
  }

  .orbit-surya {
    width: 160px;
    height: 160px;
  }

  .orbit-chandra {
    width: 190px;
    height: 190px;
  }

  .orbit-kuja {
    width: 210px;
    height: 210px;
  }

  .orbit-guru {
    width: 240px;
    height: 240px;
  }

  .orbit-sani {
    width: 280px;
    height: 280px;
  }

  .jathagam-grid-svg {
    width: 140px;
    height: 140px;
  }
}