@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Open+Sans:wght@400;600;700;800&display=swap");

:root {
  --bg: #070817;
  --panel: rgba(18, 22, 46, 0.68);
  --panel-strong: rgba(23, 28, 58, 0.88);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fbff;
  --muted: #aeb7d8;
  --gold: #FC8F01 /* #FC604F */;
  --violet: #a78bfa;
  --cyan: #67e8f9;
  --rose: #fb7185;
  --green: #34d399;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --soft-line: rgba(255, 255, 255, 0.08);
  --font-body: "Open Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Montserrat", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, rgba(167,139,250,.2), transparent 28%),
              radial-gradient(circle at 80% 0%, rgba(103,232,249,.16), transparent 25%),
              linear-gradient(145deg, #070817 0%, #101225 46%, #080917 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
main { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.cosmic-bg { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.cosmic-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 1px, transparent 1px),
    radial-gradient(circle, rgba(248,213,138,.55) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  animation: starDrift 36s linear infinite;
  opacity: .32;
}
.cosmic-bg span { position: absolute; width: 42vw; aspect-ratio: 1; border-radius: 50%; filter: blur(70px); opacity: .16; }
.cosmic-bg span:nth-child(1) { left: -18vw; top: 10vh; background: var(--violet); }
.cosmic-bg span:nth-child(2) { right: -14vw; top: 4vh; background: var(--cyan); }
.cosmic-bg span:nth-child(3) { left: 35vw; bottom: -28vw; background: var(--gold); }

.site-header {
  width: min(1160px, calc(100% - 36px));
  margin: 16px auto 0;
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(8, 10, 26, .78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), var(--cyan) 48%, var(--violet));
  color: #090a18;
  font-size: 13px;
  box-shadow: 0 0 32px rgba(167,139,250,.42);
}
.site-nav { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 750; }
.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,.07); transform: translateY(-1px); }
.nav-pill {
  padding: 0 15px;
  border-radius: 999px;
  color: #080918;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  box-shadow: 0 14px 32px rgba(167,139,250,.28);
}
.nav-pill:hover { color: #080918; background: linear-gradient(135deg, #ffe7a9, #b9a7ff); }
.nav-pill-muted { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.06); box-shadow: none; }
.nav-pill-muted:hover { color: var(--text); background: rgba(255,255,255,.1); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); color: var(--text); font-size: 22px; }

.hero { min-height: calc(100vh - 96px); display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: center; padding: 62px 0 36px; }
.eyebrow { color: var(--gold); text-transform: uppercase; font-weight: 900; font-size: 11px; letter-spacing: .14em; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 800; letter-spacing: 0; }
h1 { font-size: 58px; line-height: 1.08; margin-bottom: 20px; max-width: 760px; }
h2 { font-size: 38px; line-height: 1.16; margin-bottom: 14px; }
h3 { font-size: 18px; line-height: 1.28; margin-bottom: 10px; }
.hero-text { color: var(--muted); max-width: 660px; font-size: 16.5px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-weight: 800;
  font-size: 13.5px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.32); }
.btn-primary { background: linear-gradient(135deg, var(--gold), #d9b7ff 46%, var(--violet)); color: #080918; border: 0; box-shadow: 0 18px 44px rgba(167,139,250,.32); }
.btn-ghost { background: rgba(255,255,255,.06); }
.btn-small { min-height: 36px; padding: 0 12px; border-radius: 10px; }
.full { width: 100%; }
.hero-proof { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-proof span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); }

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.hero-panel { min-height: 480px; border-radius: 26px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; filter: saturate(1.15); }
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(248,213,138,.22);
  border-radius: 50%;
  animation: rotateSlow 18s linear infinite;
}
.orbit-card { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 18px; background: rgba(7,8,23,.62); border: 1px solid var(--line); }
.moon { width: 56px; height: 56px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, var(--gold) 35%, #a78bfa 72%); box-shadow: 0 0 48px rgba(248,213,138,.36); }
.orbit-card small, .metric-grid small { display: block; color: var(--muted); }
.orbit-card strong { font-size: 20px; }
.metric-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.metric-grid div, .panel, .table-card, .auth-card, .premium-form, .payment-card { border-radius: 22px; padding: 24px; }
.metric-grid div { background: rgba(7,8,23,.55); border: 1px solid var(--line); }
.metric-grid span, .big-stat { display: block; font-size: 30px; font-weight: 900; color: var(--gold); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 8px 0 40px;
  border: 1px solid var(--soft-line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.feature-strip article {
  padding: 22px;
  background: rgba(9,11,30,.68);
}
.feature-strip span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}
.feature-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.feature-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.report-preview {
  position: relative;
}
.report-preview::before {
  content: "";
  position: absolute;
  inset: 18px -8vw auto;
  height: 420px;
  z-index: -1;
  background: radial-gradient(circle at 50% 10%, rgba(248,213,138,.12), transparent 54%),
              radial-gradient(circle at 75% 25%, rgba(103,232,249,.1), transparent 46%);
}
.report-preview .section-head {
  max-width: 840px;
}
.report-preview .section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.report-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 20px;
  min-height: 360px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(248,213,138,.12), transparent 36%, rgba(103,232,249,.08));
  opacity: .7;
}
.report-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248,213,138,.34);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
}
.report-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.report-card-head span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #080918;
  font-weight: 950;
  font-size: 13px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 12px 34px rgba(103,232,249,.2);
}
.report-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.28;
}
.report-card-head p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.report-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.report-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.report-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(103,232,249,.48);
}

.section { padding: 58px 0 70px; }
.section-head {  margin-bottom: 28px; } /* max-width: 700px; */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.steps article { padding: 22px; border-radius: 20px; transition: transform .22s ease, border-color .22s ease; }
.steps article:hover { transform: translateY(-4px); border-color: rgba(248,213,138,.28); }
.steps span { color: var(--cyan); font-weight: 900; }
.steps p, .conversion-band p, .form-intro p, .dashboard-head p, .muted { color: var(--muted); line-height: 1.7; }
.conversion-band { margin: 24px 0 78px; padding: 30px; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.auth-shell, .payment-shell { min-height: calc(100vh - 140px); display: grid; place-items: center; padding: 60px 0; }
.auth-card, .payment-card { width: min(460px, 100%); }
label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 14px; }
input, select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: rgba(7,8,23,.68);
  color: var(--text);
  outline: none;
}
input:focus, select:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(167,139,250,.14); }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 32px; align-items: start; padding: 70px 0; }
.premium-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 16px; }
.span-2 { grid-column: span 2; }
.payment-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; padding: 18px; border-radius: 18px; background: rgba(7,8,23,.48); border: 1px solid var(--line); }
.payment-summary span { color: var(--muted); }

.dashboard { padding: 58px 0 80px; }
.dashboard-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 22px; }
.dashboard-head h1 { font-size: 42px; }
.dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 18px; }
.dash-grid.three { grid-template-columns: repeat(3, 1fr); }
.panel h2, .table-card h2 { font-size: 20px; }
.table-card { margin-top: 18px; }
.responsive-table { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
td { color: var(--muted); }
td strong { color: var(--text); }
.status { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: capitalize; background: rgba(255,255,255,.08); color: var(--text); }
.status.paid, .status.completed { background: rgba(52,211,153,.14); color: var(--green); }
.status.failed { background: rgba(251,113,133,.14); color: var(--rose); }
.status.processing { background: rgba(103,232,249,.14); color: var(--cyan); }
.status.pending, .status.unpaid { background: rgba(248,213,138,.14); color: var(--gold); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.timeline span { text-align: center; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.05); color: var(--muted); }
.timeline span.active { background: rgba(167,139,250,.18); color: var(--text); border: 1px solid rgba(167,139,250,.32); }
.timeline-row td { padding-top: 0; }

.stack-form { display: grid; gap: 12px; margin-bottom: 16px; }
.upload-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.upload-form input { max-width: 420px; padding-top: 12px; }
.code-box { white-space: pre-wrap; color: var(--muted); background: rgba(0,0,0,.28); border: 1px solid var(--line); border-radius: 16px; padding: 16px; overflow-x: auto; }
.flash { width: min(1180px, calc(100% - 32px)); margin: 18px auto 0; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: var(--text); }
.flash.success { border-color: rgba(52,211,153,.38); background: rgba(52,211,153,.12); }
.flash.error { border-color: rgba(251,113,133,.38); background: rgba(251,113,133,.12); }
.flash.warning { border-color: rgba(248,213,138,.38); background: rgba(248,213,138,.12); }

.site-footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 42px; color: var(--muted); display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.footer-links { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }

@keyframes starDrift { from { transform: translateY(0); } to { transform: translateY(-90px); } }
@keyframes rotateSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 12px; right: 12px; top: 70px; padding: 10px; border-radius: 18px; background: rgba(7,8,23,.96); border: 1px solid var(--line); flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { justify-content: space-between; border-radius: 14px; }
  .hero, .form-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; }
  .hero-panel { min-height: 420px; }
  .steps, .dash-grid, .dash-grid.three, .feature-strip, .report-grid { grid-template-columns: 1fr 1fr; }
  .conversion-band, .dashboard-head, .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  main, .site-header, .site-footer { width: min(100% - 24px, 1160px); }
  h1 { font-size: 34px; }
  h2 { font-size: 25px; }
  .hero-text { font-size: 15.5px; }
  .hero { min-height: auto; }
  .hero-panel { min-height: 360px; padding: 18px; }
  .metric-grid, .steps, .dash-grid, .dash-grid.three, .premium-form, .feature-strip, .report-grid { grid-template-columns: 1fr; }
  .report-card { min-height: auto; }
  .span-2 { grid-column: span 1; }
  .auth-card, .premium-form, .payment-card, .panel, .table-card { padding: 18px; border-radius: 18px; }
  .payment-summary { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

.hero-actions {
  align-items: center;
}

.hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe6a8 0%, #FC604F 38%, #b79cff 100%);
  color: #080918;
  font-weight: 900;
  box-shadow:
    0 18px 42px rgba(248, 213, 138, 0.24),
    0 12px 34px rgba(167, 139, 250, 0.28);
}

.hero-actions .btn-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -45%;
  width: 42%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  transform: rotate(18deg) translateX(-120%);
  transition: transform .75s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 54px rgba(248, 213, 138, 0.3),
    0 16px 42px rgba(167, 139, 250, 0.36);
}

.hero-actions .btn-primary:hover::after {
  transform: rotate(18deg) translateX(360%);
}

.hero-actions .btn-ghost {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.18);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(248,213,138,.34);
}

.hero-cta-note {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -8px 0 22px;
}

.hero-cta-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-cta-note span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(248,213,138,.55);
}

/* ===============================
   ASTROMATE24 FAQ SECTION
================================ */

.faq-section {
  max-width: 920px;
  margin: 120px auto;
  padding: 0 20px;
}

.faq-section h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.15;
}

.faq-section .lead {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
  color: #aeb8c7;
  font-size: 18px;
  line-height: 1.8;
}

.faq-section details {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.018)
  );
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-section details:hover,
.faq-section details[open] {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.faq-section summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 76px 24px 26px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  user-select: none;
  transition: color 0.25s ease;
}

.faq-section summary:hover {
  color: #f4d06f;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::marker {
  content: "";
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.13);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: #d4af37;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-section details[open] summary::after {
  content: "−";
  background: #d4af37;
  color: #09111f;
  transform: translateY(-50%) rotate(180deg);
}

.faq-section .answer {
  padding: 0 26px 26px;
  animation: faqFade 0.35s ease;
}

.faq-section .answer p {
  margin: 0;
  color: #b9c2d0;
  font-size: 16px;
  line-height: 1.9;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    margin: 80px auto;
    padding: 0 16px;
  }

  .faq-section h1 {
    font-size: 34px;
  }

  .faq-section .lead {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .faq-section summary {
    font-size: 16px;
    padding: 20px 62px 20px 20px;
  }

  .faq-section summary::after {
    right: 18px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .faq-section .answer {
    padding: 0 20px 22px;
  }

  .faq-section .answer p {
    font-size: 15px;
  }
}

/* पूरे ब्रांड ब्लॉक को एक लाइन में सेट करने के लिए */
.astromate-navbar-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important; /* लोगो और टेक्स्ट के बीच की दूरी */
  text-decoration: none !important;
}

/* लोगो के जाइंट साइज को कंट्रोल करने के लिए सबसे जरूरी कोड */
.brand-logo-fixed {
  height: 40px !important;    /* आप इसे अपने हिसाब से 35px या 45px कर सकते हैं */
  width: auto !important;     /* ताकि इमेज का शेप खराब न हो */
  max-width: 50px !important; /* इससे बड़ा लोगो कभी नहीं होगा */
  display: block !important;
  object-fit: contain !important;
}

/* टेक्स्ट की स्टाइलिंग ताकि वो लोगो के साथ सही दिखे */
.brand-text-fixed {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap; /* ताकि नाम टूटकर नीचे न जाए */
}


.astromate-form-container {
  max-width: 650px;
  margin: 40px auto;
  background: rgba(20, 16, 33, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.astromate-form {
  display: flex;
  flex-direction: column;
  gap: 25px; /* सेक्शन्स के बीच की दूरी */
}

/* फुल विड्थ ब्लॉक */
.astromate-form .full-width {
  width: 100%;
  box-sizing: border-box;
}

/* इनपुट कार्ड सब-सेक्शन्स (Date/Location Boxes) */
.astromate-form .form-section-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.astromate-form .section-card-title {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-left: 3px solid #a855f7;
  padding-left: 10px;
}

/* 2 और 3 कॉलम रो (Row) लेआउट */
.astromate-form .row-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.astromate-form .row-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* बाकी लेबल्स और इनपुट्स */
.astromate-form .form-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.astromate-form .label-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.astromate-form input, 
.astromate-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.astromate-form input:focus, 
.astromate-form select:focus {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.05);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.astromate-form .readonly-field input {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.03);
  color: #9ca3af;
}

/* Live Search Dropdown */
.astromate-form .search-group {
  position: relative;
}

.astromate-form #suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #191426 !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
  padding: 4px 0 !important;
  margin: 5px 0 0 0 !important;
  max-height: 180px !important;
  overflow-y: auto !important;
  z-index: 2000 !important;
  list-style: none !important;
}

.astromate-form #suggestions-list li {
  padding: 12px 16px !important;
  color: #e5e7eb !important;
  font-size: 0.9rem !important;
  cursor: pointer;
}

.astromate-form #suggestions-list li:hover {
  background: rgba(168, 85, 247, 0.2) !important;
  color: #fff !important;
}

/* Premium Submit Button */
.btn-submit-premium {
  margin-top: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #f97316 0%, #a855f7 50%, #6366f1 100%);
  background-size: 200% auto;
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
  transition: all 0.4s ease;
}

.btn-submit-premium:hover {
  background-position: right center;
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

/* Mobile Friendly Structure */
@media (max-width: 600px) {
  .astromate-form-container { padding: 20px; margin: 10px; }
  .astromate-form .row-two-col, 
  .astromate-form .row-three-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ड्रॉपडाउन के ऑप्शन्स का बैकग्राउंड डार्क करने के लिए */
.astromate-form select option {
  background-color: #191426 !important; /* आपके फॉर्म थीम का डार्क कलर */
  color: #fff !important;               /* सफेद टेक्स्ट जो अब साफ दिखेगा */
  padding: 10px !important;
}

/* Safari/Chrome मोबाइल के लिए अतिरिक्त सुरक्षा */
.astromate-form select {
  color: #fff !important;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.pagination a.active {
  background: #7c5cff;
}