/* ==========================================================================
   AuraAstro - Ultra-Modern Full-Width Light-Mode WordPress Theme Stylesheet
   ========================================================================== */

:root {
  /* Brand Luxury Royal Gold (#cdb466) & Midnight Cosmic (#120f2b) System */
  --gold-primary: #cdb466;
  --gold-hover: #bda252;
  --gold-dark: #a88d3e;
  --gold-deep: #120f2b;
  --gold-light: rgba(205, 180, 102, 0.14);
  --gold-subtle: rgba(205, 180, 102, 0.06);
  --gold-gradient: linear-gradient(135deg, #cdb466 0%, #b39845 100%);
  --gold-gradient-soft: linear-gradient(135deg, #ffffff 0%, rgba(205, 180, 102, 0.16) 100%);
  --gold-glow: radial-gradient(circle, rgba(205, 180, 102, 0.3) 0%, rgba(205, 180, 102, 0) 70%);

  /* Royal Midnight & Clean Surfaces */
  --color-midnight: #120f2b;
  --color-midnight-light: #1d1844;
  --color-gold: #cdb466;
  --color-black: #000000;
  --color-white: #ffffff;

  --bg-page: #FFFFFF;
  --bg-subtle: #FAFAF7;
  --bg-cream: #F5F3EB;
  --bg-parchment: #EFECE0;
  --card-bg: #FFFFFF;
  --card-glass: rgba(255, 255, 255, 0.96);

  /* High-Contrast Modern Typography using #120f2b and #000000 */
  --text-main: #120f2b;
  --text-dark: #000000;
  --text-body: #1e1a38;
  --text-muted: #5e5a78;
  --text-light: #8e8aa8;

  /* Borders & Dividers */
  --border-light: rgba(18, 15, 43, 0.1);
  --border-warm: rgba(205, 180, 102, 0.45);
  --border-subtle: rgba(18, 15, 43, 0.05);

  /* Functional Status Colors */
  --status-online: #10B981;
  --status-online-bg: #ECFDF5;
  --status-purple: #120f2b;
  --status-purple-bg: rgba(18, 15, 43, 0.08);
  --status-blue: #2563EB;
  --status-blue-bg: #EFF6FF;

  /* Elevation Shadows with Midnight & Gold hints */
  --shadow-sm: 0 1px 3px rgba(18, 15, 43, 0.06), 0 1px 2px rgba(18, 15, 43, 0.03);
  --shadow-md: 0 4px 16px -2px rgba(18, 15, 43, 0.08), 0 2px 6px -1px rgba(18, 15, 43, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(18, 15, 43, 0.12), 0 4px 12px -2px rgba(205, 180, 102, 0.16);
  --shadow-card-hover: 0 20px 40px -8px rgba(18, 15, 43, 0.18), 0 6px 16px -4px rgba(205, 180, 102, 0.28);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Transitions */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.25s;
}

/* ==========================================================================
   Base Reset & Layout Structure
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: all var(--duration) var(--ease);
}

/* Fluid Full-Width Container */
.full-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section-block {
  padding: clamp(48px, 6vw, 96px) 0;
  position: relative;
  width: 100%;
}

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ==========================================================================
   Typography & Universal Design Tokens
   ========================================================================== */

.gold-accent, .text-glow-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-white { color: #FFFFFF !important; }
.text-black { color: #000000 !important; }
.text-midnight { color: #120F2B !important; }
.text-gold { color: #CDB466 !important; }
.text-light { color: #8E8AA8 !important; }

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-light);
  border: 1px solid var(--border-warm);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.block-heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.block-subheading {
  font-size: clamp(0.92rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 16px;
}

/* Universal Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #120F2B;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(205, 180, 102, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(205, 180, 102, 0.5);
  background: linear-gradient(135deg, #dec578 0%, #b89d4d 100%);
  color: #000000;
}

.btn-outline-light {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-primary);
  color: #120F2B;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-outline-light:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #120F2B;
}

/* On dark headers */
.site-header .btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(205, 180, 102, 0.45);
  color: #FFFFFF;
}

.site-header .btn-outline-light:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #120F2B;
}

.btn-outline-dark {
  background: #FFFFFF;
  border: 1.5px solid #120F2B;
  color: #120F2B;
}

.btn-outline-dark:hover {
  background: #120F2B;
  border-color: #120F2B;
  color: var(--gold-primary);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Cosmic Transit Ticker Bar
   ========================================================================== */

.top-transit-bar {
  background: #000000;
  border-bottom: 1px solid rgba(205, 180, 102, 0.3);
  font-size: 0.82rem;
  padding: 8px 0;
  color: #FFFFFF;
}

.transit-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}

.transit-ticker-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(205, 180, 102, 0.7);
  animation: pulse-glow 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(205, 180, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(205, 180, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(205, 180, 102, 0); }
}

.ticker-badge {
  background: var(--gold-primary);
  color: #120F2B;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.ticker-text {
  color: #FFFFFF;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-quick-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.live-experts-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--status-online);
  border-radius: 50%;
}

.lang-currency-selector select {
  font-family: inherit;
  font-size: 0.78rem;
  background: #120F2B;
  color: #FFFFFF;
  border: 1px solid var(--gold-primary);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

/* ==========================================================================
   Social Media Links & Attractive Animations
   ========================================================================== */

.social-links-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 820px) {
  .header-social-links {
    display: none; /* Keep top bar clean on small devices */
  }
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 180, 102, 0.4);
  color: var(--gold-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
  flex-shrink: 0;
}

.social-icon-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.3s ease;
  fill: currentColor;
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.18);
}

.social-icon-btn:hover svg {
  transform: scale(1.12) rotate(8deg);
}

/* Brand-Specific Vibrant Themes on Hover */
.social-icon-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.75), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-icon-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(214, 36, 159, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-icon-btn.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-icon-btn.twitter:hover {
  background: #000000;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 18px rgba(205, 180, 102, 0.65), 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Footer Specific Richer Sizing & Tooltip */
.footer-social-box {
  margin-top: 20px;
}

.footer-social-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.footer-social-links .social-icon-btn {
  width: 40px;
  height: 40px;
  background: rgba(18, 15, 43, 0.7);
  border: 1.5px solid rgba(205, 180, 102, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-social-links .social-icon-btn svg {
  width: 18px;
  height: 18px;
}

/* Floating Tooltip */
.social-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  background: #120F2B;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.social-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: var(--gold-primary) transparent transparent transparent;
}

.social-icon-btn:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 15, 43, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(205, 180, 102, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(82px, 7vw, 96px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: clamp(62px, 6vw, 80px) !important;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  transition: transform var(--duration) var(--ease);
}

.brand-identity:hover .brand-logo-img {
  transform: scale(1.04);
}

.global-footer .brand-logo-img,
.footer-brand-column .brand-logo-img {
  height: clamp(74px, 7vw, 96px) !important;
  max-width: 280px;
  margin-bottom: 14px;
}

.auth-sun-badge .brand-logo-img,
.auth-header-block .brand-logo-img {
  height: clamp(68px, 6.5vw, 86px) !important;
  max-width: 260px;
}

.brand-symbol {
  width: 38px;
  height: 38px;
}

.brand-celestial-icon {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

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

.nav-links-wrapper ul, .primary-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
}

.nav-link, .primary-nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  padding: 6px 0;
  transition: color var(--duration) var(--ease);
}

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

.nav-link.active::after, .primary-nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--gold-primary);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(205, 180, 102, 0.6);
}

.mobile-auth-link {
  display: none !important;
}

@media (max-width: 900px) {
  .mobile-auth-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary) !important;
    font-weight: 700;
  }
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(205, 180, 102, 0.12);
  border: 1px solid var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--gold-primary);
  cursor: pointer;
  font-weight: 700;
  transition: all var(--duration) var(--ease);
}

.wallet-chip:hover {
  background: var(--gold-primary);
  color: #120F2B;
}

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 180, 102, 0.4);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.nav-user-chip svg {
  stroke: var(--gold-primary);
  transition: stroke var(--duration) var(--ease);
}

.nav-user-chip:hover {
  background: var(--gold-primary);
  color: #120F2B;
  border-color: var(--gold-primary);
}

.nav-user-chip:hover svg {
  stroke: #120F2B;
}

#instantConsultBtn {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 180, 102, 0.3);
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* ==========================================================================
   Full-Width Light-Mode Hero Section
   ========================================================================== */

.hero-cosmic-section {
  position: relative;
  padding: clamp(40px, 5vw, 80px) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF9EC 100%);
  border-bottom: 1px solid var(--border-light);
}

.cosmic-canvas-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-gold {
  width: 450px;
  height: 450px;
  background: rgba(245, 158, 11, 0.12);
  top: -100px;
  right: 5%;
}

.orb-indigo {
  width: 420px;
  height: 420px;
  background: rgba(254, 240, 138, 0.35);
  top: 10%;
  left: -80px;
}

.orb-cyan {
  width: 280px;
  height: 280px;
  background: rgba(253, 230, 138, 0.2);
  bottom: 0;
  right: 25%;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-warm);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.hero-lead-text {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

/* Query Box */
.hero-query-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.query-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 8px 6px 14px;
  margin-bottom: 12px;
}

.query-icon {
  font-size: 1.1rem;
}

.query-input-wrapper input {
  flex-grow: 1;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  min-width: 0;
}

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

.btn-search {
  padding: 10px 20px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.quick-topics-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.topic-chip {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
}

.topic-chip:hover {
  background: var(--gold-light);
  border-color: var(--gold-primary);
  color: var(--gold-deep);
}

/* Trust Metric Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-metric {
  display: flex;
  flex-direction: column;
}

.trust-metric strong {
  font-size: 1.05rem;
  color: var(--text-main);
  font-family: var(--font-display);
}

.trust-metric span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border-light);
}

/* Hero Right Showcase Card */
.celestial-showcase-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3.5vw, 32px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.master-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--status-online-bg);
  border: 1px solid #A7F3D0;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-glow 1.8s infinite;
}

.wait-time-tag {
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.featured-master-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.master-avatar-holder {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.master-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-primary);
}

.seal-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.master-details h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.rating-pill {
  font-size: 0.76rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.master-bio-chip {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 3px 0 6px;
}

.master-lang-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lang-tag, .exp-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.lang-tag {
  background: #F1F5F9;
  color: var(--text-body);
}

.exp-tag {
  background: var(--gold-light);
  color: var(--gold-deep);
  font-weight: 700;
}

/* Audio Waveform Simulator */
.audio-preview-bar {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}

.play-audio-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.play-icon {
  width: 26px;
  height: 26px;
  background: var(--gold-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.wave-visualizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.wave-bar {
  width: 3px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.wave-visualizer.playing .wave-bar {
  animation: soundwave 1s ease-in-out infinite alternate;
}

.wave-visualizer.playing .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-visualizer.playing .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-visualizer.playing .wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-visualizer.playing .wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes soundwave {
  0% { height: 4px; }
  100% { height: 20px; }
}

.intro-pricing {
  text-align: right;
  white-space: nowrap;
}

.intro-pricing small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.intro-pricing strong {
  font-size: 1.1rem;
  color: var(--gold-dark);
}

.showcase-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.showcase-actions-grid .btn {
  font-size: 0.88rem;
  padding: 11px 14px;
  font-weight: 800;
  width: 100%;
}

/* Full-Width Stats Strip */
.full-width-stats-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 26px 0;
  margin-top: clamp(36px, 5vw, 54px);
}

.stats-flex-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-separator {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* ==========================================================================
   Modern Astrologer Directory Section
   ========================================================================== */

.astrologer-directory-section {
  background: #FFFDF9;
}

.directory-filter-bar {
  display: flex;
  align-items: center;
  overflow-x: auto;
  max-width: 100%;
}

.filter-pills-row {
  display: flex;
  background: #FFFFFF;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-pills-row::-webkit-scrollbar {
  display: none;
}

.dir-filter-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.dir-filter-btn.active, .dir-filter-btn:hover {
  background: var(--gold-light);
  color: var(--gold-deep);
}

.modern-astro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.astro-modern-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--duration) var(--ease);
}

.astro-modern-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-card-hover);
}

.card-top-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.online-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #15803D;
  background: #DCFCE7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.online-indicator .dot {
  width: 6px;
  height: 6px;
  background: #16A34A;
  border-radius: 50%;
}

.experience-chip {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.astro-profile-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.avatar-ring {
  position: relative;
  width: 66px;
  height: 66px;
  flex-shrink: 0;
}

.astro-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-warm);
}

.verified-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #16A34A;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.astro-title-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.name-badge-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.elite-pill {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--gold-light);
  color: var(--gold-deep);
  padding: 2px 6px;
  border-radius: 4px;
}

.elite-pill.purple { background: #F3E8FF; color: #7E22CE; }
.elite-pill.green { background: #DCFCE7; color: #15803D; }

.specialization-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.languages-text {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 2px;
}

.astro-rating-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 14px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.rating-display small {
  color: var(--text-light);
  font-size: 0.72rem;
}

.pricing-display {
  text-align: right;
}

.old-price {
  font-size: 0.72rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
}

.new-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.new-price small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.astro-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-chat-action, .btn-call-action {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.btn-chat-action {
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid var(--border-warm);
}

.btn-chat-action:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.btn-call-action {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.btn-call-action:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}

/* ==========================================================================
   Interactive Cosmic Forecast Dashboard (Horoscope)
   ========================================================================== */

.horoscope-block-section {
  background: #FFFFFF;
}

.period-tabs-wrapper {
  display: flex;
  background: #F1F5F9;
  padding: 4px;
  border-radius: var(--radius-full);
  overflow-x: auto;
}

.time-pill-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.time-pill-btn.active, .time-pill-btn:hover {
  background: #FFFFFF;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

.zodiac-interactive-bar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.zodiac-chip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 6px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.zodiac-chip-card:hover {
  border-color: var(--border-warm);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}

.zodiac-chip-card.active {
  border-color: var(--gold-primary);
  background: var(--gold-light);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.18);
}

.z-glyph {
  font-size: 1.7rem;
  margin-bottom: 4px;
  line-height: 1;
}

.z-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.zodiac-chip-card small {
  font-size: 0.65rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Horoscope Display Glass */
.horoscope-display-glass {
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3.5vw, 40px);
  box-shadow: var(--shadow-lg);
}

.h-glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #FEF3C7;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.h-sign-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.h-glyph-bubble {
  width: 54px;
  height: 54px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28);
  flex-shrink: 0;
}

.h-sign-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

.h-sign-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.h-luck-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.luck-chip {
  font-size: 0.78rem;
  background: var(--gold-subtle);
  border: 1px solid var(--border-warm);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  color: var(--gold-deep);
}

.luck-chip strong {
  color: #120F2B;
}

.h-glass-body-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(20px, 3.5vw, 40px);
  align-items: center;
}

.h-detailed-prediction {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.h-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cosmic Meters */
.h-meters-col {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cosmic-meter-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 600;
}

.meter-labels strong {
  color: var(--text-main);
}

.meter-track {
  width: 100%;
  height: 8px;
  background: #E2E8F0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.meter-bar {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease);
}

.bar-love { background: linear-gradient(90deg, #F43F5E, #FB7185); }
.bar-career { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.bar-wealth { background: linear-gradient(90deg, #CDB466, #E5D59A); }
.bar-health { background: linear-gradient(90deg, #10B981, #34D399); }

/* ==========================================================================
   Modern Bento-Grid Life Guidance Spheres
   ========================================================================== */

.spheres-block-section {
  background: #FFFDF9;
}

.bento-spheres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.bento-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-warm);
}

.bento-love:hover { background: #FFF1F2; border-color: #FDA4AF; }
.bento-career:hover { background: #EFF6FF; border-color: #93C5FD; }
.bento-marriage:hover { background: #FFFBEB; border-color: #FDE68A; }
.bento-wealth:hover { background: #F0FDF4; border-color: #86EFAC; }
.bento-vastu:hover { background: #FFF7ED; border-color: #FDBA74; }
.bento-gem:hover { background: #F5F3FF; border-color: #C4B5FD; }

.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #FFFBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.bento-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.bento-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bento-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ==========================================================================
   Vedic Shop / Store Showcase Section
   ========================================================================== */

.vedic-shop-section {
  background: #FFFFFF;
}

.shop-category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.shop-category-pills::-webkit-scrollbar {
  display: none;
}

.shop-cat-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.shop-cat-btn.active, .shop-cat-btn:hover {
  background: var(--gold-light);
  color: var(--gold-deep);
  border-color: var(--border-warm);
}

.vedic-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.vedic-product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.vedic-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-card-hover);
}

.product-badge-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.product-img-holder {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F8FAFC;
  margin-bottom: 14px;
}

.product-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vedic-product-card:hover .product-img-holder img {
  transform: scale(1.06);
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.75rem;
}

.product-category-tag {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.product-blessed-tag {
  color: #15803D;
  background: #DCFCE7;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.product-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 6px;
}

.product-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-pricing-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-regular {
  font-size: 0.72rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-sale {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.btn-add-cart {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* ==========================================================================
   Interactive Instant Birth Chart & Kundli Tool
   ========================================================================== */

.kundli-tool-section {
  background: #FFFDF9;
}

.kundli-tool-wrapper {
  background: linear-gradient(135deg, #FFFDF8 0%, #FEF3C7 100%);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.kundli-tool-wrapper .block-heading {
  color: var(--color-midnight) !important;
}

.tool-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
  color: #334155 !important;
}

.modern-kundli-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.form-field input, .form-field select {
  width: 100%;
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--duration) ease;
}

.form-field input:focus, .form-field select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.kundli-canvas-frame {
  background: #FFFFFF;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.canvas-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold-deep);
}

.canvas-header small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.canvas-svg-holder {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.interactive-chart-svg {
  width: 210px;
  height: 210px;
  max-width: 100%;
}

.chart-summary-chip {
  background: #FFFBEB;
  border: 1px solid var(--border-warm);
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ==========================================================================
   Reviews Carousel Section
   ========================================================================== */

.reviews-section {
  background: #FFFFFF;
}

.carousel-nav-group {
  display: flex;
  gap: 8px;
}

.nav-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.nav-arrow-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: var(--gold-primary);
}

.review-slide-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4.5vw, 44px);
  box-shadow: var(--shadow-lg);
}

.rev-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.rev-rating-stars {
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.rev-verified-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #15803D;
  background: #DCFCE7;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.rev-quote-text {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.rev-client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-warm);
}

.rev-client-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.rev-client-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Full-Width Mobile App Showcase
   ========================================================================== */

.app-showcase-section {
  background: #FFFDF9;
}

.app-showcase-card {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.app-main-heading {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 14px;
}

.app-sub-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.app-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.app-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.perk-icon {
  font-size: 1.05rem;
}

.app-download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #120F2B;
  color: #FFFFFF;
  border: 1px solid rgba(205, 180, 102, 0.3);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  transition: all var(--duration) ease;
}

.store-badge-btn:hover {
  background: #000000;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-text small {
  font-size: 0.62rem;
  color: #CBD5E1;
  text-transform: uppercase;
  display: block;
}

.store-text strong {
  font-size: 0.9rem;
  line-height: 1.1;
  color: #FFFFFF;
}

/* Phone Mockup Frame */
.sleek-phone-frame {
  width: 260px;
  height: 460px;
  background: #120F2B;
  border: 4px solid var(--gold-primary);
  border-radius: 38px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 20px 44px rgba(18, 15, 43, 0.35);
  position: relative;
}

.phone-camera-island {
  width: 76px;
  height: 15px;
  background: #120F2B;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-inner-display {
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 22px;
}

.app-nav-top {
  background: #FFFDF9;
  border-bottom: 1px solid #FEF3C7;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-astro-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-avatar {
  width: 26px;
  height: 26px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.app-astro-pill strong {
  font-size: 0.75rem;
  color: var(--text-main);
  display: block;
}

.app-astro-pill small {
  font-size: 0.62rem;
  color: #10B981;
}

.call-timer-tag {
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.app-chat-flow {
  flex-grow: 1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FDFBF7;
  overflow-y: auto;
}

.msg-bubble {
  max-width: 85%;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.msg-bubble.inbound {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.msg-bubble.outbound {
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.app-chat-footer {
  padding: 8px 10px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-light);
}

.send-btn {
  width: 22px;
  height: 22px;
  background: var(--gold-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
}

/* ==========================================================================
   Editorial Journal Section
   ========================================================================== */

.editorial-block-section {
  background: #FFFFFF;
}

.editorial-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.editorial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.editorial-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.art-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.editorial-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 8px;
}

.editorial-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.art-read-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-block-section {
  background: #FFFDF9;
}

.faq-grid-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
}

.faq-support-box {
  margin-top: 28px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.faq-sup-icon {
  font-size: 1.6rem;
}

.faq-support-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 3px;
}

.faq-support-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.faq-support-box .btn {
  background: var(--gold-gradient) !important;
  color: #120F2B !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(205, 180, 102, 0.35) !important;
  display: inline-flex;
}

.faq-support-box .btn:hover {
  background: linear-gradient(135deg, #dec578 0%, #b89d4d 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(205, 180, 102, 0.5) !important;
}

.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) ease;
}

.faq-item.active {
  border-color: var(--border-warm);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  gap: 12px;
}

.faq-icon {
  font-size: 1.15rem;
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer-panel {
  max-height: 240px;
  padding: 0 20px 18px;
}

.faq-answer-panel p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Full-Width Global Footer
   ========================================================================== */

.global-footer {
  background: #120F2B;
  color: #E2E0F0;
  border-top: 2px solid var(--gold-primary);
  padding: clamp(48px, 6vw, 72px) 0 30px;
}

.footer-top-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
  gap: clamp(24px, 3.5vw, 40px);
  margin-bottom: 40px;
}

.footer-bio {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin: 14px 0 18px;
}

.footer-contact-item {
  font-size: 0.82rem;
  color: #FFFFFF;
}

.security-pills-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec-pill {
  font-size: 0.76rem;
  color: var(--gold-primary);
  background: rgba(205, 180, 102, 0.1);
  border: 1px solid rgba(205, 180, 102, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.footer-nav-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  border-bottom: 2px solid rgba(205, 180, 102, 0.3);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link-list a {
  font-size: 0.82rem;
  color: #CBD5E1;
  transition: all var(--duration) var(--ease);
}

.footer-link-list a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom-strip {
  border-top: 1px solid rgba(205, 180, 102, 0.2);
  padding-top: 24px;
}

.disclaimer-text {
  font-size: 0.72rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.bottom-copyright-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #CBD5E1;
  flex-wrap: wrap;
  gap: 12px;
}

.accepted-payments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.accepted-payments span {
  background: #000000;
  border: 1px solid rgba(205, 180, 102, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
}

/* ==========================================================================
   Mobile App-Like Bottom Navigation Dock
   ========================================================================== */

.mobile-app-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(18, 15, 43, 0.98);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(205, 180, 102, 0.35);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  padding: 6px 8px clamp(6px, 1.5vw, 10px);
  justify-content: space-around;
  align-items: center;
}

.app-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 2px;
  transition: all var(--duration) ease;
  position: relative;
  padding: 4px 8px;
}

.app-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  transition: transform 0.25s ease;
}

.app-tab-icon svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  transition: all 0.25s ease;
}

.app-nav-tab:hover .app-tab-icon svg,
.app-nav-tab.active .app-tab-icon svg {
  stroke: var(--gold-primary);
  filter: drop-shadow(0 0 6px rgba(205, 180, 102, 0.7));
}

.app-nav-tab:hover, .app-nav-tab.active {
  color: var(--gold-primary);
}

.app-nav-tab.active .app-tab-icon {
  transform: scale(1.15);
}

.app-nav-tab.active::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 2.5px;
  background: var(--gold-primary);
  border-radius: 2px;
}

/* Add body padding-bottom on mobile to prevent content overlap with app bar */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
  .mobile-app-bottom-bar {
    display: flex;
  }
  .wallet-chip,
  .nav-user-chip,
  #instantConsultBtn,
  .header-action-group .btn,
  .header-action-group a.btn {
    display: none !important;
  }
}

/* ==========================================================================
   Modals & Toasts
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-glass-container {
  background: #FFFFFF;
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3.5vw, 32px);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-glass-container {
  transform: translateY(0);
}

.modal-close-trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--text-muted);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-trigger:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

.modal-badge-chip {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-deep);
  background: var(--gold-light);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 6px;
}

.modal-main-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.modal-sub-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.modal-mode-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.mode-card-option {
  border: 1.5px solid var(--border-light);
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.mode-card-option input {
  position: absolute;
  opacity: 0;
}

.mode-card-option.selected {
  border-color: var(--gold-primary);
  background: var(--gold-light);
}

.mode-icon { font-size: 1.3rem; margin-bottom: 2px; }
.mode-name { font-size: 0.85rem; font-weight: 700; color: var(--text-main); }
.mode-rate { font-size: 0.72rem; color: var(--gold-dark); font-weight: 700; }

.modal-form-field {
  margin-bottom: 14px;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-form-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 5px;
}

.modal-form-field input, .modal-form-field select {
  width: 100%;
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.modal-form-field input:focus, .modal-form-field select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Toast Alerts */
.toast-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .toast-hub {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }
}

.toast-bubble {
  background: #120F2B;
  border: 1px solid rgba(205, 180, 102, 0.3);
  border-left: 4px solid var(--gold-primary);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: toast-in 0.3s ease;
}

@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Design Breakpoints
   1. @media (max-width: 1080px)
   2. @media (max-width: 720px)
   3. @media (max-width: 480px)
   4. @media (max-width: 360px)
   ========================================================================== */

/* Medium Desktops & Tablets Landscape (<= 1080px) */
@media (max-width: 1080px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-lead-text, .hero-query-box {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .quick-topics-row {
    justify-content: center;
  }

  .kundli-tool-wrapper {
    grid-template-columns: 1fr;
  }

  .app-showcase-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-perks-grid {
    justify-content: center;
  }

  .app-download-buttons {
    justify-content: center;
  }

  .faq-grid-wrapper {
    grid-template-columns: 1fr;
  }

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

/* Tablets Portrait & Large Mobiles (<= 720px) */
@media (max-width: 720px) {
  .top-transit-bar {
    display: none;
  }

  .header-inner {
    height: 64px;
  }

  .nav-links-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #120F2B;
    border-top: 1px solid rgba(205, 180, 102, 0.3);
    border-bottom: 2px solid var(--gold-primary);
    flex-direction: column;
    padding: 20px 24px;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }

  .nav-links-wrapper.active {
    display: flex;
  }

  .nav-links-wrapper ul, .primary-nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .nav-link, .primary-nav-list a {
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(205, 180, 102, 0.15);
    color: #FFFFFF;
    display: block;
  }

  .nav-hamburger {
    display: flex;
  }

  .wallet-chip,
  #instantConsultBtn,
  .header-action-group .btn,
  .header-action-group a.btn {
    display: none !important;
  }

  .stats-flex-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-separator {
    display: none;
  }

  .h-glass-body-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
  }

  .showcase-actions-grid {
    grid-template-columns: 1fr;
  }

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

  .bottom-copyright-line {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .accepted-payments {
    justify-content: center;
  }
}

/* Mobile Devices (<= 480px) */
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.95rem;
  }

  .block-heading {
    font-size: 1.55rem;
  }

  .hero-query-box {
    padding: 14px;
  }

  .query-input-wrapper {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
  }

  .btn-search {
    width: 100%;
  }

  .zodiac-interactive-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .bento-spheres-grid {
    grid-template-columns: 1fr;
  }

  .modern-astro-grid {
    grid-template-columns: 1fr;
  }

  .vedic-products-grid {
    grid-template-columns: 1fr;
  }

  .featured-master-profile {
    flex-direction: column;
    text-align: center;
  }

  .master-avatar-holder {
    margin: 0 auto;
  }

  .master-lang-row {
    justify-content: center;
  }

  .audio-preview-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }

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

  .app-perks-grid {
    grid-template-columns: 1fr;
  }

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

  .modal-mode-select {
    grid-template-columns: 1fr;
  }

  .h-sign-badge {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .h-action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .h-action-buttons .btn {
    width: 100%;
  }
}

/* Extra Small Phones (<= 360px) */
@media (max-width: 360px) {
  .hero-main-title {
    font-size: 1.75rem;
  }

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

  .stats-flex-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page Templates & Global Utilities: Tips, Contact, Blog & Content
   ========================================================================== */

/* Universal Eyebrow Pill Badge */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep, #120F2B);
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  border: 1px solid var(--border-warm, rgba(205, 180, 102, 0.45));
  padding: 4px 14px;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 12px;
}

.section-title-wrap {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-title-wrap.text-center {
  text-align: center;
}

.section-title-wrap.text-center .block-subheading {
  margin-left: auto;
  margin-right: auto;
}

.font-bold {
  font-weight: 700 !important;
}

/* Tag Pill */
.tag-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  color: var(--gold-dark, #a88d3e);
  border: 1px solid var(--border-warm, rgba(205, 180, 102, 0.45));
  border-radius: var(--radius-full, 9999px);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.tag-pill:hover {
  background: var(--gold-primary, #cdb466);
  color: var(--color-midnight, #120F2B);
}

/* WordPress Standard Page & Single Post Typography */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body, #1e1a38);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  color: var(--color-midnight, #120F2B);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.entry-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  border-bottom: 2px solid var(--gold-light, rgba(205, 180, 102, 0.14));
  padding-bottom: 8px;
}

.entry-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.entry-content p {
  margin-bottom: 1.2em;
}

.entry-content ul,
.entry-content ol {
  margin: 1em 0 1.5em 1.5em;
  padding-left: 1em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

.entry-content blockquote {
  border-left: 4px solid var(--gold-primary, #cdb466);
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  padding: 16px 24px;
  border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--color-midnight, #120F2B);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-md);
  margin: 1.5em 0;
}

.entry-content a {
  color: var(--gold-dark, #a88d3e);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.entry-content a:hover {
  color: var(--gold-primary, #cdb466);
}

/* ==========================================================================
   Astrologer Tips & Vedic Remedies Page
   ========================================================================== */
.tips-hero {
  background: radial-gradient(circle at 50% 20%, rgba(205, 180, 102, 0.14) 0%, rgba(18, 15, 43, 0.98) 75%), #120F2B;
  color: #FFFFFF;
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary, #cdb466);
}

.tips-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(205, 180, 102, 0.25) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  pointer-events: none;
}

.tips-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(205, 180, 102, 0.16);
  border: 1px solid var(--gold-primary, #cdb466);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary, #cdb466);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tips-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.18;
  max-width: 860px;
  margin: 0 auto 16px;
  color: #FFFFFF;
}

.tips-hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tips-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #E2E8F0;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.tips-section {
  padding: clamp(50px, 6vw, 80px) 0;
  background: #FAFAFB;
}

.totka-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.totka-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(18, 15, 43, 0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.totka-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary, #cdb466);
  box-shadow: 0 12px 30px rgba(205, 180, 102, 0.2);
}

.totka-tag {
  align-self: flex-start;
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  color: var(--gold-dark, #a88d3e);
  border: 1px solid var(--gold-primary, #cdb466);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.totka-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-midnight, #120F2B);
  margin-bottom: 12px;
  line-height: 1.35;
}

.totka-desc {
  font-size: 0.92rem;
  color: var(--text-body, #1e1a38);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.totka-action {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(18, 15, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.totka-action a {
  color: var(--color-midnight, #120F2B);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.totka-action a:hover {
  color: var(--gold-primary, #cdb466);
}

.zodiac-guidance-sec {
  background: #FFFFFF;
  padding: clamp(60px, 7vw, 90px) 0;
  border-top: 1px solid var(--border-light, rgba(18, 15, 43, 0.1));
  border-bottom: 1px solid var(--border-light, rgba(18, 15, 43, 0.1));
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.zodiac-card {
  background: #FFFFFF;
  border: 1px solid rgba(18, 15, 43, 0.1);
  border-radius: var(--radius-md, 12px);
  padding: 22px;
  transition: all 0.25s ease;
  position: relative;
}

.zodiac-card:hover {
  border-color: var(--gold-primary, #cdb466);
  box-shadow: 0 8px 24px rgba(18, 15, 43, 0.08);
  transform: translateY(-2px);
}

.zodiac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.zodiac-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-midnight, #120F2B);
}

.zodiac-symbol {
  font-size: 1.5rem;
  color: var(--gold-primary, #cdb466);
}

.zodiac-meta {
  font-size: 0.8rem;
  color: var(--text-muted, #5e5a78);
  margin-bottom: 8px;
}

.zodiac-gem {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  color: var(--color-midnight, #120F2B);
  border-radius: 4px;
  margin-bottom: 10px;
}

.zodiac-advice {
  font-size: 0.86rem;
  color: var(--text-body, #1e1a38);
  line-height: 1.55;
}

.consult-banner {
  background: var(--color-midnight, #120F2B);
  color: #FFFFFF;
  border-radius: var(--radius-xl, 20px);
  padding: clamp(40px, 6vw, 60px);
  text-align: center;
  border: 2px solid var(--gold-primary, #cdb466);
  box-shadow: 0 16px 40px rgba(18, 15, 43, 0.35);
  margin: clamp(40px, 6vw, 80px) 0 0 0;
  position: relative;
  overflow: hidden;
}

.consult-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  color: #FFFFFF;
}

.consult-banner p {
  font-size: 1.05rem;
  color: #CBD5E1;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.consult-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact Us Page
   ========================================================================== */
.contact-hero {
  background: radial-gradient(circle at 50% 20%, rgba(205, 180, 102, 0.14) 0%, rgba(18, 15, 43, 0.98) 80%), #120F2B;
  color: #FFFFFF;
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary, #cdb466);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.18;
  max-width: 860px;
  margin: 0 auto 16px;
  color: #FFFFFF;
}

.contact-hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #E2E8F0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content-sec {
  padding: clamp(50px, 6vw, 80px) 0;
  background: #FAFAFB;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(18, 15, 43, 0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.info-card:hover {
  border-color: var(--gold-primary, #cdb466);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 180, 102, 0.15);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  border: 1.5px solid var(--gold-primary, #cdb466);
  color: var(--color-midnight, #120F2B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-midnight, #120F2B);
  margin-bottom: 6px;
}

.info-body p {
  font-size: 0.9rem;
  color: var(--text-body, #1e1a38);
  line-height: 1.55;
  margin-bottom: 4px;
}

.info-body a {
  color: var(--color-midnight, #120F2B);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.info-body a:hover {
  color: var(--gold-primary, #cdb466);
}

.contact-form-card {
  background: #FFFFFF;
  border: 2px solid rgba(205, 180, 102, 0.35);
  border-radius: var(--radius-xl, 20px);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-midnight, #120F2B);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.92rem;
  color: var(--text-muted, #5e5a78);
  margin-bottom: 24px;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-midnight, #120F2B);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1.5px solid rgba(18, 15, 43, 0.15);
  border-radius: var(--radius-sm, 8px);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-midnight, #120F2B);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary, #cdb466);
  box-shadow: 0 0 0 3px rgba(205, 180, 102, 0.2);
}

.map-sec {
  padding-bottom: clamp(50px, 6vw, 80px);
  background: #FAFAFB;
}

.map-frame-wrapper {
  background: #FFFFFF;
  border: 2px solid var(--gold-primary, #cdb466);
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: 420px;
  position: relative;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Blog & Insights Page
   ========================================================================== */
.blog-hero {
  background: radial-gradient(circle at 50% 20%, rgba(205, 180, 102, 0.14) 0%, rgba(18, 15, 43, 0.98) 80%), #120F2B;
  color: #FFFFFF;
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold-primary, #cdb466);
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.18;
  max-width: 860px;
  margin: 0 auto 16px;
  color: #FFFFFF;
}

.blog-hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #E2E8F0;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.blog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.blog-cat-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(205, 180, 102, 0.35);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: var(--gold-primary, #cdb466);
  color: var(--color-midnight, #120F2B);
  border-color: var(--gold-primary, #cdb466);
  font-weight: 700;
}

.blog-layout-sec {
  padding: clamp(50px, 6vw, 80px) 0;
  background: #FAFAFB;
}

.blog-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .blog-main-grid {
    grid-template-columns: 1fr;
  }
}

.featured-article {
  background: #FFFFFF;
  border: 1.5px solid rgba(205, 180, 102, 0.35);
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 36px;
  transition: transform 0.3s;
}

.featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(205, 180, 102, 0.2);
}

.featured-content {
  padding: clamp(24px, 4vw, 36px);
}

.article-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark, #a88d3e);
  background: var(--gold-light, rgba(205, 180, 102, 0.14));
  border: 1px solid var(--gold-primary, #cdb466);
  padding: 3px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-midnight, #120F2B);
  margin-bottom: 12px;
  line-height: 1.25;
}

.featured-excerpt {
  font-size: 0.96rem;
  color: var(--text-body, #1e1a38);
  line-height: 1.65;
  margin-bottom: 20px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted, #5e5a78);
  border-top: 1px solid rgba(18, 15, 43, 0.08);
  padding-top: 16px;
  flex-wrap: wrap;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.post-card {
  background: #FFFFFF;
  border: 1px solid rgba(18, 15, 43, 0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: var(--gold-primary, #cdb466);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205, 180, 102, 0.15);
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-midnight, #120F2B);
  margin: 10px 0;
  line-height: 1.35;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.post-card-title a:hover {
  color: var(--gold-primary, #cdb466);
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-body, #1e1a38);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.post-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(18, 15, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-link {
  color: var(--color-midnight, #120F2B);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.read-more-link:hover {
  color: var(--gold-primary, #cdb466);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid rgba(18, 15, 43, 0.1);
  border-radius: var(--radius-lg, 16px);
  padding: 26px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-midnight, #120F2B);
  border-bottom: 2px solid var(--gold-primary, #cdb466);
  padding-bottom: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  margin-bottom: 10px;
}

.cat-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-body, #1e1a38);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: color 0.2s;
}

.cat-list a:hover {
  color: var(--gold-primary, #cdb466);
}

.clinic-card-widget {
  background: var(--color-midnight, #120F2B);
  color: #FFFFFF;
  border: 2px solid var(--gold-primary, #cdb466);
  border-radius: var(--radius-lg, 16px);
  padding: 26px;
  text-align: center;
}

.clinic-card-widget h4 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.clinic-card-widget p {
  color: #CBD5E1;
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
