/* ═══════════════════════════════════════════════════════
   DIVINE MATCH — Main Stylesheet
   Maroon / Gold / Almond brand theme
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #FAF3E7;
  --bg-soft: #F3E7D3;
  --card-bg: #FFFFFF;
  --card-border: #E6D2AE;
  --maroon: #7A1F2B;
  --maroon-dark: #5C1620;
  --maroon-soft: #9B3142;
  --gold: #C9972E;
  --gold-light: #E0B85C;
  --gold-deep: #A6761E;
  --amber: #D97B3F;
  --ink: #3B2A1E;
  --ink-soft: #6B5A4A;
  --muted: #9C8A76;
  --success: #3F7D4A;
  --success-soft: #6FA577;
  --warn: #C97A1E;
  --danger: #A33B3B;
  --male: #2F6F9E;
  --female: #B5485E;
  --shadow: 0 2px 14px rgba(122,31,43,0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Noto Sans Devanagari', 'Mangal', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; }

@keyframes twinkle { 0%,100% { opacity: .18; } 50% { opacity: .7; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.fade-up { animation: fadeUp .5s ease; }

.floating-dots { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.floating-dots span {
  position: absolute; border-radius: 50%; background: var(--gold-light);
  opacity: .35; animation: twinkle 6s ease-in-out infinite;
}

.ambient-glow-1 {
  position: fixed; top: 5%; left: 15%; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,184,92,0.13), transparent 70%);
  filter: blur(70px); pointer-events: none; z-index: 0;
}
.ambient-glow-2 {
  position: fixed; bottom: 10%; right: 10%; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,49,66,0.1), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #3B2A0E; border: none; padding: 11px 28px; border-radius: 99px;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  font-family: 'Georgia', serif; letter-spacing: .5px; transition: all .3s;
  box-shadow: 0 4px 16px rgba(201,151,46,0.35); text-decoration: none; display: inline-block;
}
.gold-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,151,46,0.47); }
.gold-btn:disabled, .gold-btn.disabled { opacity: .4; cursor: not-allowed; transform: none; }
.gold-btn.blue { background: linear-gradient(135deg, var(--male), #4F90C0); color: #fff; }
.gold-btn.rose { background: linear-gradient(135deg, var(--female), #D17188); color: #fff; }
.gold-btn.green { background: linear-gradient(135deg, var(--success), var(--success-soft)); color: #fff; }
.gold-btn.whatsapp { background: linear-gradient(135deg, #25D366, #1DA851); color: #fff; }

input, select {
  background: #fff; border: 1px solid var(--card-border); color: var(--ink);
  padding: 10px 13px; border-radius: 9px; font-size: .86rem; outline: none;
  font-family: Arial, sans-serif; width: 100%; box-sizing: border-box; transition: border .25s;
}
input:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,151,46,0.13); }
input::placeholder { color: #C9B89A; }

label {
  font-size: .72rem; color: var(--maroon-soft); display: block;
  margin-bottom: 5px; letter-spacing: .5px; font-weight: 600;
}

/* ── Header ── */
.site-header { position: relative; z-index: 2; text-align: center; padding: 28px 20px 16px; animation: fadeUp .8s ease; }
.lang-toggle {
  position: absolute; top: 18px; right: 18px; background: #fff;
  border: 1px solid rgba(201,151,46,0.53); color: var(--maroon);
  border-radius: 99px; padding: 6px 14px; font-size: .72rem; font-weight: 700;
  cursor: pointer; letter-spacing: 1px; font-family: Arial, sans-serif; box-shadow: var(--shadow);
  text-decoration: none; display: inline-block;
}
.logo-wrap { display: flex; justify-content: center; margin-bottom: 8px; }
.brand-line { font-size: .58rem; color: var(--gold); letter-spacing: 6px; margin-bottom: 2px; font-weight: 600; }
.site-title {
  margin: 0 0 2px; font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 700; letter-spacing: 1px;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-soft) 40%, var(--amber) 75%, var(--gold) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 6s ease infinite;
}
.site-tagline { font-size: .68rem; color: var(--gold-deep); letter-spacing: 3px; font-weight: 600; }
.title-divider { width: 70px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 12px auto 0; }

/* ── Nav ── */
.main-nav, .info-nav {
  position: relative; z-index: 2; display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap; padding: 0 14px 10px;
}
.info-nav { padding-bottom: 18px; gap: 5px; }
.nav-btn {
  background: #fff; border: 1px solid var(--card-border); color: var(--ink-soft);
  padding: 8px 16px; cursor: pointer; border-radius: 99px; font-size: .76rem;
  transition: all .25s; font-family: Arial, sans-serif; letter-spacing: .5px; font-weight: 500;
  box-shadow: var(--shadow); text-decoration: none; display: inline-block;
}
.nav-btn.active { background: linear-gradient(135deg, var(--maroon), var(--maroon-soft)); border: none; color: #fff; font-weight: 700; box-shadow: 0 3px 12px rgba(122,31,43,0.27); }
.nav-btn-sm {
  background: transparent; border: 1px solid var(--card-border); color: var(--muted);
  padding: 5px 12px; cursor: pointer; border-radius: 99px; font-size: .66rem;
  transition: all .25s; font-family: Arial, sans-serif; letter-spacing: .3px; font-weight: 500;
  text-decoration: none; display: inline-block;
}
.nav-btn-sm.active { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; color: #3B2A0E; font-weight: 700; }

/* ── Content ── */
.content-wrap { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 0 28px 60px; width: 100%; }

@media (max-width: 1100px) {
  .content-wrap { padding: 0 20px 60px; }
}
@media (max-width: 600px) {
  .content-wrap { padding: 0 14px 60px; }
}

.section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-head .sh-icon { font-size: 1rem; }
.section-head .sh-title { font-size: .8rem; color: var(--maroon); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; font-family: Georgia, serif; }
.section-head .sh-line { flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,151,46,0.33), transparent); }

.tag {
  display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: .7rem;
  margin: 2px 3px; font-weight: 600;
}

.bar-row { margin-bottom: 9px; }
.bar-row .bar-label-row { display: flex; justify-content: space-between; font-size: .73rem; color: var(--ink-soft); margin-bottom: 3px; }
.bar-track { background: var(--bg-soft); border-radius: 99px; height: 8px; overflow: hidden; border: 1px solid var(--card-border); }
.bar-fill { height: 100%; border-radius: 99px; transition: width 1.2s ease; }

/* ── Lo Shu Grid ── */
.loshu-grid { display: inline-block; }
.loshu-row { display: flex; gap: 3px; margin-bottom: 3px; }
.loshu-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 8px; position: relative; transition: all .3s;
}
.loshu-cell .cell-marker { position: absolute; top: 2px; right: 3px; font-size: .4rem; font-weight: 700; }
.loshu-cell .cell-dot { position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); font-size: .38rem; color: #888; font-weight: 700; }

/* ── Home page cards ── */
.gender-card { padding: 18px; }
.gender-card.male { border-top: 3px solid var(--male); }
.gender-card.female { border-top: 3px solid var(--female); }
.gender-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.gender-icon-circle {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.num-badge-row { margin-top: 12px; display: flex; gap: 8px; justify-content: center; }
.num-badge {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .95rem; font-weight: 800; margin: 0 auto;
}
.num-badge-lg { width: 52px; height: 52px; font-size: 1.3rem; }
.num-badge.gold { background: rgba(201,151,46,0.08); border: 2px solid var(--gold); color: var(--gold-deep); }
.num-badge.maroon { background: rgba(122,31,43,0.07); border: 2px solid var(--maroon); color: var(--maroon); }
.num-badge-label { font-size: .58rem; color: var(--muted); margin-top: 3px; text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.feature-card { padding: 14px; text-align: center; }
.feature-card .fc-icon { font-size: 1.4rem; margin-bottom: 6px; }
.feature-card .fc-title { font-size: .72rem; color: var(--maroon); font-weight: 700; margin-bottom: 3px; }
.feature-card .fc-desc { font-size: .62rem; color: var(--muted); }

/* ── Info boxes ── */
.info-box { padding: 10px 14px; border-radius: 8px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 8px; }
.info-box .ib-badge {
  min-width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: .85rem; font-weight: 800; flex-shrink: 0;
}

.callout {
  padding: 12px 14px; border-radius: 8px; font-size: .8rem; line-height: 1.8; margin-bottom: 10px;
}

/* ── Plane / arrow cards ── */
.plane-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.plane-card { padding: 14px; border-radius: 10px; text-align: center; }
.plane-nums { display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.plane-num-box { width: 26px; height: 26px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Generic layout helpers ── */
.center { text-align: center; }
.muted { color: var(--muted); }
.flex-row { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-14 { gap: 14px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }

/* ── Footer ── */
.site-footer { position: relative; z-index: 2; text-align: center; padding: 20px; border-top: 1px solid var(--card-border); }
.footer-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.footer-links a { font-size: .62rem; color: var(--maroon-soft); text-decoration: underline; text-decoration-color: rgba(201,151,46,0.4); }
.footer-phone { font-size: .62rem; color: var(--muted); margin-top: 10px; }
.footer-phone a { color: var(--maroon); text-decoration: none; font-weight: 600; }

/* ── Page shell (About/Contact/Privacy/Terms) ── */
.page-hero { padding: 28px 24px; margin-bottom: 16px; text-align: center; }
.page-hero .ph-icon { font-size: 2.2rem; margin-bottom: 8px; }
.page-hero h2 { margin: 0 0 4px; font-size: 1.5rem; font-family: Georgia, serif; color: var(--maroon); font-weight: 700; }
.page-hero .ph-sub { font-size: .72rem; color: var(--muted); letter-spacing: 1px; }
.page-hero .ph-line { width: 50px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 12px auto 0; }

.policy-section { margin-bottom: 18px; }
.policy-section .ps-heading {
  font-size: .85rem; color: var(--maroon); font-weight: 700; margin-bottom: 8px;
  font-family: Georgia, serif; border-bottom: 1px solid var(--card-border); padding-bottom: 6px;
}
.policy-section .ps-body { font-size: .82rem; color: var(--ink-soft); line-height: 1.85; }

.contact-phone-pill {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px;
  background: linear-gradient(135deg, var(--success), var(--success-soft));
  border-radius: 99px; margin-bottom: 14px; box-shadow: 0 4px 16px rgba(63,125,74,0.27);
  text-decoration: none;
}
.contact-phone-pill .cp-icon { font-size: 1.3rem; }
.contact-phone-pill .cp-label { font-size: .62rem; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
.contact-phone-pill .cp-value { font-size: 1.05rem; color: #fff; font-weight: 700; }

.contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.contact-detail-box { padding: 14px; background: var(--bg-soft); border-radius: 10px; text-align: left; }
.contact-detail-box .cd-label { font-size: .65rem; color: var(--maroon); font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail-box .cd-value { font-size: .8rem; color: var(--ink-soft); }

/* ── Print / PDF page ── */
@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
}

/* ════════════════════════════════════════
   HERO SLIDER — full-width numerology slideshow
   ════════════════════════════════════════ */
.hero-slider {
  position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto 28px;
  border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(122,31,43,0.18);
  border: 1px solid var(--card-border);
}
.hero-slider-track {
  display: flex; transition: transform .6s cubic-bezier(.65,0,.35,1);
}
.hero-slide {
  position: relative; min-width: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  padding: 36px 28px; box-sizing: border-box; overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide-motif {
  position: absolute; z-index: 1; opacity: 0.16; pointer-events: none;
}
.hero-slide-content {
  position: relative; z-index: 2; max-width: 720px; text-align: center;
}
.hero-slide-eyebrow {
  font-size: .68rem; letter-spacing: 4px; font-weight: 700; text-transform: uppercase;
  margin-bottom: 10px; opacity: .92;
}
.hero-slide-title {
  font-family: Georgia, 'Noto Sans Devanagari', serif; font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.3rem); line-height: 1.25; margin: 0 0 12px;
}
.hero-slide-desc {
  font-size: clamp(.82rem, 1.4vw, .98rem); line-height: 1.8; opacity: .96; margin: 0 auto;
  max-width: 560px;
}
.hero-slide-numbers {
  display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap;
}
.hero-slide-num-badge {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 1rem; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(2px);
}

.hero-slider-dots {
  position: absolute; bottom: 14px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 8px; justify-content: center;
}
.hero-slider-dot {
  width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0; transition: all .25s;
}
.hero-slider-dot.active { background: #fff; width: 24px; }

.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  backdrop-filter: blur(3px); transition: background .2s;
}
.hero-slider-arrow:hover { background: rgba(255,255,255,0.32); }
.hero-slider-arrow.prev { left: 14px; }
.hero-slider-arrow.next { right: 14px; }

@media (max-width: 640px) {
  .hero-slide { min-height: 280px; padding: 28px 18px; }
  .hero-slider-arrow { width: 32px; height: 32px; font-size: .95rem; }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .two-col, .plane-grid, .feature-grid, .contact-detail-grid { grid-template-columns: 1fr; }
}
