@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --saffron: #E8600A;
  --saffron-light: #F5843A;
  --gold: #C8991A;
  --gold-light: #E0B830;
  --maroon: #6B0000;
  --bg-dark: #140800;
  --bg-mid: #260F00;
  --cream: #FDF6EC;
  --cream-dark: #F2E6D0;
  --text-dark: #1C0A00;
  --text-muted: #7A5030;
  --border: rgba(200,153,26,0.25);
  --shadow-sm: 0 2px 12px rgba(232,96,10,0.1);
  --shadow-md: 0 6px 28px rgba(232,96,10,0.18);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.2);
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: all 0.22s ease;
  --max-w: 1180px;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 4px; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,248,235,0.7);
  font-size: 12px;
  font-family: var(--font-body);
  padding: 7px 0;
  border-bottom: 1px solid rgba(232,96,10,0.2);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--saffron-light); }
.topbar-left, .topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-sep { color: rgba(255,255,255,0.2); }

/* ===== HEADER ===== */
header {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(232,96,10,0.3);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-icon {
  width: 46px; height: 46px;
  background: radial-gradient(circle at 40% 40%, var(--gold-light), var(--saffron));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 18px rgba(232,96,10,0.5);
  animation: glow-pulse 3.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(232,96,10,0.5); }
  50% { box-shadow: 0 0 32px rgba(232,96,10,0.85), 0 0 55px rgba(200,153,26,0.3); }
}
.logo-text .brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.5px; line-height: 1; }
.logo-text .brand-tag { font-size: 10px; color: var(--saffron-light); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(253,246,236,0.85);
  padding: 7px 13px; border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); background: rgba(232,96,10,0.15); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--bg-dark);
  border: 1px solid rgba(232,96,10,0.25);
  border-radius: var(--radius);
  min-width: 175px;
  box-shadow: var(--shadow-lg);
  overflow: hidden; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 16px; font-size: 13px; border-bottom: 1px solid rgba(232,96,10,0.08); border-radius: 0; color: rgba(253,246,236,0.8); }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(232,96,10,0.12); color: var(--gold-light); }

.nav-cta-btn {
  background: linear-gradient(135deg, var(--saffron), #C04A00);
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  box-shadow: 0 3px 14px rgba(232,96,10,0.4);
}
.nav-cta-btn:hover { box-shadow: 0 5px 20px rgba(232,96,10,0.65) !important; transform: translateY(-1px); }

.user-greeting { color: var(--gold-light); font-size: 13px; font-weight: 500; }
.user-nav-btns { display: flex; align-items: center; gap: 8px; }
.user-nav-btns a { color: var(--cream); font-size: 12.5px; padding: 5px 12px; background: rgba(232,96,10,0.2); border-radius: 6px; }
.logout-btn { background: none !important; border: 1px solid rgba(232,96,10,0.3) !important; color: rgba(253,246,236,0.5) !important; padding: 5px 10px; border-radius: 6px; font-size: 12px; }
.logout-btn:hover { color: rgba(253,246,236,0.85) !important; border-color: rgba(232,96,10,0.6) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--bg-dark); z-index: 999;
  flex-direction: column; padding: 70px 24px 24px;
  gap: 4px; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(253,246,236,0.85); font-size: 17px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid rgba(232,96,10,0.1); display: flex; align-items: center; gap: 10px; }
.nav-mobile-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--cream); font-size: 26px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: 9px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  letter-spacing: 0.3px; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--saffron), #C04A00); color: white; box-shadow: 0 4px 18px rgba(232,96,10,0.38); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(232,96,10,0.55); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--bg-dark); font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,153,26,0.5); }
.btn-outline { background: transparent; border: 2px solid var(--saffron); color: var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: white; }
.btn-ghost { background: rgba(255,255,255,0.1); color: rgba(253,246,236,0.9); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-sm { padding: 7px 15px; font-size: 12.5px; border-radius: 7px; }
.btn-lg { padding: 15px 36px; font-size: 15.5px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0E0500 0%, #280E00 45%, #180800 100%);
  position: relative; overflow: hidden;
  padding: 80px 0 64px; min-height: 580px;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232,96,10,0.07) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(200,153,26,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.star-field { position: absolute; inset: 0; pointer-events: none; }
.star-dot {
  position: absolute; border-radius: 50%;
  background: var(--gold-light);
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle { 0%,100%{opacity:0.15;transform:scale(1)} 50%{opacity:0.9;transform:scale(1.4)} }

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--saffron-light);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--saffron-light); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 700; color: var(--gold-light);
  line-height: 1.17; margin-bottom: 18px;
}
.hero h1 em { color: var(--saffron-light); font-style: normal; }
.hero-desc { font-size: 1.05rem; color: rgba(253,246,236,0.72); line-height: 1.75; margin-bottom: 32px; max-width: 490px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.trust-bar { display: flex; gap: 24px; }
.trust-item { text-align: center; }
.trust-number { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.trust-label { font-size: 10.5px; color: rgba(253,246,236,0.5); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 3px; }
.trust-divider { width: 1px; background: rgba(232,96,10,0.25); }

/* HERO FORM CARD */
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,153,26,0.2);
  border-radius: 18px;
  padding: 30px;
}
.hero-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--gold-light); text-align: center; margin-bottom: 22px;
}
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(253,246,236,0.6); margin-bottom: 6px; }
.form-field input, .form-field select {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,96,10,0.25);
  border-radius: 8px; color: var(--cream);
  font-size: 13.5px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus { border-color: var(--saffron); background: rgba(255,255,255,0.1); }
.form-field input::placeholder { color: rgba(253,246,236,0.35); }
.form-field select option { background: var(--bg-dark); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== ZODIAC TICKER ===== */
.zodiac-ticker {
  background: var(--bg-dark);
  border-top: 1px solid rgba(232,96,10,0.2);
  border-bottom: 1px solid rgba(232,96,10,0.2);
  overflow: hidden; padding: 18px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.zodiac-chip {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 0 26px;
  border-right: 1px solid rgba(232,96,10,0.12);
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s;
}
.zodiac-chip:hover { transform: translateY(-3px); }
.zodiac-chip .zsym { font-size: 26px; }
.zodiac-chip .zname { font-size: 10.5px; color: var(--gold-light); font-weight: 500; letter-spacing: 0.3px; }

/* ===== SECTIONS ===== */
section { padding: 72px 0; }

.sec-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--saffron); background: rgba(232,96,10,0.09);
  border: 1px solid rgba(232,96,10,0.22);
  padding: 4px 13px; border-radius: 20px; margin-bottom: 12px;
}
.sec-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.7rem); font-weight: 700; color: var(--maroon); line-height: 1.25; margin-bottom: 13px; }
.sec-title em { color: var(--saffron); font-style: normal; }
.sec-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.sec-header { text-align: center; margin-bottom: 50px; }

/* light theme text on dark bg */
.on-dark .sec-title { color: var(--gold-light); }
.on-dark .sec-subtitle { color: rgba(253,246,236,0.65); }

/* ===== SERVICES GRID ===== */
.services-bg { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer; display: block; color: inherit;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(232,96,10,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(232,96,10,0.09), rgba(200,153,26,0.09));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px;
  transition: transform 0.3s;
}
.service-card:hover .svc-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--maroon); margin-bottom: 9px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.svc-badge { margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.badge-free { color: #16a34a; }
.badge-paid { color: var(--saffron); }

/* ===== HOROSCOPE ===== */
.horoscope-bg { background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%); }
.horoscope-tabs { display: flex; gap: 6px; justify-content: center; margin-bottom: 40px; background: white; padding: 5px; border-radius: 11px; width: fit-content; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-sm); }
.tab-btn { padding: 9px 22px; border: none; background: transparent; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.tab-btn.active { background: linear-gradient(135deg, var(--saffron), #C04A00); color: white; box-shadow: 0 2px 10px rgba(232,96,10,0.35); }
.horoscope-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.horo-card {
  background: white; border-radius: var(--radius); padding: 18px 12px;
  text-align: center; border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition); cursor: pointer; display: block; color: inherit;
}
.horo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(232,96,10,0.14); border-color: var(--saffron-light); }
.horo-sym { font-size: 34px; margin-bottom: 8px; display: block; }
.horo-name { font-family: var(--font-display); font-size: 0.82rem; color: var(--maroon); font-weight: 600; margin-bottom: 3px; }
.horo-dates { font-size: 9.5px; color: var(--text-muted); }
.horo-lucky { margin-top: 9px; font-size: 11px; color: var(--saffron); font-weight: 600; }

/* ===== KUNDLI SECTION ===== */
.kundli-bg {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  position: relative; overflow: hidden;
}
.kundli-bg::before { content: '🕉'; position: absolute; right: -30px; top: 50%; transform: translateY(-50%); font-size: 280px; opacity: 0.03; pointer-events: none; }
.kundli-form-wrap { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; }
.kundli-form-wrap .form-field label { color: rgba(253,246,236,0.65); }
.kundli-form-wrap .form-field input, .kundli-form-wrap .form-field select { background: rgba(255,255,255,0.07); border-color: rgba(232,96,10,0.22); color: var(--cream); }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.kundli-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.kundli-feat { text-align: center; color: var(--cream); }
.kundli-feat .feat-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.kundli-feat h4 { font-family: var(--font-display); font-size: 0.93rem; color: var(--gold-light); margin-bottom: 6px; }
.kundli-feat p { font-size: 0.83rem; color: rgba(253,246,236,0.55); }

/* ===== ASTROLOGERS ===== */
.astro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.astro-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.astro-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(232,96,10,0.14); }
.astro-photo {
  height: 170px;
  background: linear-gradient(135deg, var(--bg-mid), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  font-size: 68px; position: relative;
}
.online-dot { position: absolute; top: 12px; right: 12px; background: #22c55e; color: white; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.astro-body { padding: 18px; }
.astro-body h4 { font-family: var(--font-display); font-size: 1rem; color: var(--maroon); margin-bottom: 3px; }
.astro-spec { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; }
.astro-rating { display: flex; align-items: center; gap: 6px; font-size: 12.5px; margin-bottom: 12px; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }
.astro-meta { font-size: 12px; color: var(--text-muted); }
.astro-footer { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-top: 1px solid var(--cream-dark); }
.astro-price { font-size: 13px; font-weight: 700; color: var(--saffron); }

/* ===== STATS ===== */
.stats-strip { background: var(--maroon); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(253,246,236,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; display: block; }

/* ===== BLOG ===== */
.blog-bg { background: var(--cream-dark); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 22px; }
.blog-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); display: block; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { display: flex; align-items: center; justify-content: center; font-size: 52px; background: linear-gradient(135deg, var(--bg-dark), var(--maroon)); }
.blog-card.featured .blog-thumb { height: 240px; font-size: 76px; }
.blog-card:not(.featured) .blog-thumb { height: 160px; font-size: 46px; }
.blog-body { padding: 20px; }
.blog-tag-pill { display: inline-block; background: rgba(232,96,10,0.1); color: var(--saffron); font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body h3 { font-family: var(--font-display); font-size: 1.02rem; color: var(--maroon); margin-bottom: 9px; line-height: 1.4; }
.blog-card.featured .blog-body h3 { font-size: 1.25rem; }
.blog-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.blog-footer { padding: 12px 20px; border-top: 1px solid var(--cream-dark); font-size: 11.5px; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ===== TESTIMONIALS ===== */
.testi-bg { background: var(--maroon); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(200,153,26,0.2); border-radius: var(--radius-lg); padding: 26px; transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(200,153,26,0.45); }
.testi-quote { font-size: 32px; opacity: 0.5; margin-bottom: 12px; }
.testi-text { color: rgba(253,246,236,0.82); font-size: 0.94rem; line-height: 1.72; font-style: italic; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.testi-name { font-weight: 600; color: var(--gold-light); font-size: 0.9rem; }
.testi-location { font-size: 11.5px; color: rgba(253,246,236,0.5); margin-top: 1px; }
.testi-stars { color: var(--gold); font-size: 12px; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--saffron), #A03800); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.4rem); color: white; font-weight: 700; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white { background: white; color: var(--saffron); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.2); }

/* ===== APP SECTION ===== */
.app-bg { background: var(--cream); }
.app-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: center; }
.app-features { list-style: none; margin: 18px 0 26px; }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.app-features li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: rgba(34,197,94,0.12); color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.app-badges { display: flex; gap: 13px; }
.app-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-dark); color: var(--cream);
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid rgba(200,153,26,0.2);
  transition: var(--transition);
}
.app-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.badge-icon { font-size: 22px; }
.badge-sub { font-size: 9.5px; color: rgba(253,246,236,0.55); display: block; }
.badge-main { font-size: 14px; font-weight: 700; color: var(--cream); }
.app-mockup { text-align: center; font-size: 120px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); color: rgba(253,246,236,0.65); }
.footer-main { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 16px 0 20px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); cursor: pointer; }
.social-btn:hover { background: rgba(232,96,10,0.3); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-light); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(253,246,236,0.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; }
.footer-bottom a { color: rgba(253,246,236,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== AUTH MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  z-index: 2000; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-dark);
  border: 1px solid rgba(200,153,26,0.2);
  border-radius: 18px; width: 100%; max-width: 420px;
  padding: 34px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: fadeUp 0.28s ease;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; color: rgba(253,246,236,0.5); font-size: 22px; cursor: pointer; }
.modal-close:hover { color: var(--cream); }
.modal-logo { text-align: center; margin-bottom: 18px; }
.modal-logo .logo-icon { margin: 0 auto 8px; }
.modal-logo h2 { font-family: var(--font-display); color: var(--gold-light); font-size: 1.4rem; }
.modal-logo p { color: rgba(253,246,236,0.5); font-size: 13px; margin-top: 4px; }
.modal-tabs { display: flex; gap: 5px; background: rgba(255,255,255,0.06); padding: 4px; border-radius: 9px; margin-bottom: 22px; }
.modal-tab { flex: 1; padding: 9px; border: none; background: transparent; color: rgba(253,246,236,0.6); font-size: 14px; font-weight: 500; border-radius: 7px; transition: var(--transition); font-family: var(--font-body); }
.modal-tab.active { background: linear-gradient(135deg, var(--saffron), #C04A00); color: white; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 22px; right: 22px;
  padding: 13px 20px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500;
  z-index: 9999; max-width: 310px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: toastIn 0.28s ease;
  color: white;
}
@keyframes toastIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ===== HELPERS ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 36px; }
.mt-12 { margin-top: 52px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .astro-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0 48px; }
  .hero-actions .btn-lg { padding: 13px 26px; font-size: 14px; }
  .trust-bar { gap: 16px; }
  .horoscope-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured .blog-thumb { height: 180px; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .app-grid { grid-template-columns: 1fr; }
  .app-mockup { font-size: 80px; }
  .kundli-features, .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .horoscope-grid { grid-template-columns: repeat(3, 1fr); }
  .astro-grid { grid-template-columns: 1fr; }
  .kundli-features, .form-grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.9rem; }
}
