/* ===== AstroVikram — Shared Stylesheet (White + Bright Theme) ===== */
:root{
  --navy:#FFFFFF;                 /* main background — white */
  --navy-deep:#1B0E3D;            /* deep contrast band (footer / marquee) */
  --purple:#F6F0FF;               /* light lavender card panel */
  --purple-light:#ECE0FF;         /* deeper lavender hover panel */
  --gold:#FF5A36;                 /* bright orange accent */
  --gold-bright:#E91E8C;          /* bright magenta accent */
  --cream:#2E2350;                /* main body text — dark plum ink */
  --ivory:#1B1140;                /* heading / emphasis text — dark ink */
  --violet:#00BFA6;               /* bright teal accent */
  --teal:#7C3AED;                 /* bright violet accent */
  --line: rgba(124,58,237,0.16);
  --ink:#1B1140;
  --ink-soft:#4A3A6B;
  --panel-warm:#FFF6EE;
  --footer-text:#C9B8E8;
  --footer-text-soft:#9686C4;
  --shadow: 0 10px 34px rgba(27,17,64,0.09);
  --max: 1200px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--navy);
  color:var(--cream);
  font-family:'Inter', sans-serif;
  font-weight:300;
  line-height:1.65;
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important;}
}

/* ===================================================================
   ANIMATION LIBRARY (14 keyframe animations used across every page)
   =================================================================== */
@keyframes fadeInUp{ from{ opacity:0; transform:translateY(28px); } to{ opacity:1; transform:translateY(0); } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }
@keyframes twinkle{ 0%,100%{opacity:.25;} 50%{opacity:1;} }
@keyframes spin{ from{transform:translateY(-50%) rotate(0deg);} to{transform:translateY(-50%) rotate(360deg);} }
@keyframes marquee-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@keyframes pulseGlow{ 0%,100%{ box-shadow:0 0 0 0 rgba(255,90,54,0.45);} 50%{ box-shadow:0 0 0 12px rgba(255,90,54,0);} }
@keyframes popIn{ from{ opacity:0; transform:scale(.85);} to{ opacity:1; transform:scale(1);} }
@keyframes gradientMove{ 0%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(-3%,3%) scale(1.08);} 100%{ transform:translate(0,0) scale(1);} }
@keyframes shimmer{ 0%{ transform:translateX(-120%);} 100%{ transform:translateX(220%);} }
@keyframes slideInLeft{ from{ opacity:0; transform:translateX(-32px);} to{ opacity:1; transform:translateX(0);} }
@keyframes slideInRight{ from{ opacity:0; transform:translateX(32px);} to{ opacity:1; transform:translateX(0);} }
@keyframes bounceArrow{ 0%,100%{ transform:translateX(0);} 50%{ transform:translateX(5px);} }
@keyframes rotateIn{ from{ opacity:0; transform:rotate(-18deg) scale(.7);} to{ opacity:1; transform:rotate(0) scale(1);} }
@keyframes wiggle{ 0%,100%{ transform:rotate(0);} 25%{ transform:rotate(-4deg);} 75%{ transform:rotate(4deg);} }

/* Scroll-reveal (paired with IntersectionObserver in script.js) */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-left{ opacity:0; transform:translateX(-32px); transition:opacity .7s ease, transform .7s ease; }
.reveal-left.in-view{ opacity:1; transform:translateX(0); }
.reveal-right{ opacity:0; transform:translateX(32px); transition:opacity .7s ease, transform .7s ease; }
.reveal-right.in-view{ opacity:1; transform:translateX(0); }
.reveal.in-view:nth-child(2){ transition-delay:.08s; }
.reveal.in-view:nth-child(3){ transition-delay:.16s; }
.reveal.in-view:nth-child(4){ transition-delay:.24s; }
.reveal.in-view:nth-child(5){ transition-delay:.32s; }
.reveal.in-view:nth-child(6){ transition-delay:.4s; }
.reveal.in-view:nth-child(7){ transition-delay:.48s; }
.reveal.in-view:nth-child(8){ transition-delay:.56s; }

h1,h2,h3,h4{
  font-family:'Playfair Display', serif;
  font-weight:600;
  letter-spacing:0.01em;
  color:var(--ivory);
}
.mono{ font-family:'Space Mono', monospace; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
.section{ padding:100px 0; position:relative; overflow:hidden; }
.section > .wrap{ position:relative; z-index:2; }
.section-dark{ background:var(--navy); }
.section-warm{ background:var(--panel-warm); }
.section-purple{ background:linear-gradient(180deg, var(--navy) 0%, var(--purple) 50%, var(--navy) 100%); }
.section-ivory{ background:var(--panel-warm); color:var(--ink); }
.section-ivory h1, .section-ivory h2, .section-ivory h3, .section-ivory h4{ color:var(--ink); }
.eyebrow{
  font-family:'Space Mono', monospace;
  font-size:12px;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  animation:popIn .6s ease both;
}
.eyebrow::before{ content:''; width:26px; height:1px; background:var(--gold); display:inline-block; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h1, .section-head h2{ font-size:clamp(28px,4vw,42px); margin-bottom:16px; }
.section-head p{ color:var(--ink-soft); font-size:17px; }
.section-ivory .section-head p{ color:var(--ink-soft); }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px;
  font-family:'Space Mono', monospace;
  font-size:13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  border-radius:2px;
  cursor:pointer;
  border:1px solid transparent;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}
.btn-gold{ background:var(--gold); color:#FFFFFF; font-weight:700;}
.btn-gold:hover{ background:var(--gold-bright); transform:translateY(-3px); animation:pulseGlow 1.1s ease infinite; }
.btn-outline{ border-color:var(--gold); color:var(--gold-bright); background:transparent; }
.btn-outline:hover{ background:rgba(255,90,54,0.08); transform:translateY(-3px); }
.btn-sm{ padding:11px 22px; font-size:11.5px; }

/* ===== NAV ===== */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  box-shadow:0 2px 22px rgba(27,17,64,0.06);
}
nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; max-width:var(--max); margin:0 auto; }
.logo{ font-family:'Playfair Display',serif; font-size:19px; letter-spacing:0.03em; color:var(--ink); display:flex; align-items:center; gap:8px;}
.logo img{ width:32px; height:32px; flex-shrink:0; }
.logo img.logo-mark-img{ animation:spin 40s linear infinite; }
.logo:hover img.logo-mark-img{ animation-duration:4s; }
.logo span{ color:var(--gold-bright); }
.navlinks{ display:flex; gap:22px; font-size:13.5px; letter-spacing:0.02em; flex-wrap:wrap; }
.navlinks a{ opacity:.8; color:var(--ink); transition:opacity .2s, color .2s; position:relative; white-space:nowrap;}
.navlinks a:hover, .navlinks a.active{ opacity:1; color:var(--gold); }
.nav-cta{ display:flex; gap:12px; align-items:center; flex-shrink:0; }
.burger{ display:none; background:none; border:none; color:var(--ink); font-size:24px; cursor:pointer; }
@media (max-width:1100px){
  .navlinks{ display:none; }
}
@media (max-width:640px){
  .nav-cta .btn-outline{ display:none; }
}

/* Footer overrides the shared .logo colours because it sits on a dark band */
footer .logo{ color:var(--footer-text); }
footer .logo span{ color:var(--gold-bright); }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero{
  padding:170px 0 70px;
  position:relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(255,90,54,0.14), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 10%, rgba(233,30,140,0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  animation:fadeIn .8s ease both;
}
.page-hero::before{
  content:''; position:absolute; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,191,166,0.14), transparent 70%);
  top:-120px; right:-120px; z-index:0;
  animation:gradientMove 12s ease-in-out infinite;
}
.page-hero h1{ font-size:clamp(30px,4.6vw,48px); margin-bottom:14px; animation:fadeInUp .7s ease both; }
.page-hero p{ color:var(--ink-soft); max-width:620px; font-size:16.5px; animation:fadeInUp .8s ease .1s both; }
.breadcrumb{ font-family:'Space Mono',monospace; font-size:11.5px; color:var(--ink-soft); letter-spacing:0.06em; margin-bottom:18px; text-transform:uppercase;}
.breadcrumb a{ color:var(--gold-bright); }

/* ===== HOME HERO ===== */
.hero{
  position:relative;
  min-height:96vh;
  display:flex; align-items:center;
  background:
    radial-gradient(ellipse 75% 65% at 50% -10%, rgba(255,90,54,0.16), transparent 60%),
    radial-gradient(ellipse 60% 55% at 88% 85%, rgba(0,191,166,0.14), transparent 60%),
    radial-gradient(ellipse 50% 45% at 8% 80%, rgba(233,30,140,0.12), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 60%, #FFF6EE 130%);
  overflow:hidden;
  padding-top:110px;
}
.stars{ position:absolute; inset:0; z-index:0; }
.star{ position:absolute; background:var(--teal); border-radius:50%; opacity:0.7; animation:twinkle 4s ease-in-out infinite; }
.zodiac-wheel{
  position:absolute;
  right:-180px; top:50%; transform:translateY(-50%);
  width:780px; height:780px;
  opacity:0.9;
  animation:spin 160s linear infinite;
}
@media (max-width:1100px){ .zodiac-wheel{ right:-320px; opacity:0.45; } }
@media (max-width:700px){ .zodiac-wheel{ right:-380px; width:600px; height:600px; } }
.hero-inner{ position:relative; z-index:2; max-width:var(--max); margin:0 auto; padding:0 28px; width:100%; }
.hero-content{ max-width:640px; animation:fadeInUp .9s ease both; }
.hero h1{ font-size:clamp(34px, 5.4vw, 60px); line-height:1.14; margin-bottom:22px; }
.hero h1 em{ font-style:normal; color:var(--gold-bright); }
.hero p.tagline{ font-family:'Playfair Display',serif; font-style:italic; font-size:19px; color:var(--gold); margin-bottom:16px;}
.hero p.sub{ font-size:17px; color:var(--ink-soft); max-width:520px; margin-bottom:34px; }
.hero-btns{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:52px;}
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top:26px; }
.hero-stats .num{ font-family:'Space Mono',monospace; font-size:24px; color:var(--gold-bright); }
.hero-stats .lbl{ font-size:11.5px; letter-spacing:0.07em; color:var(--ink-soft); text-transform:uppercase; margin-top:4px;}

/* ===== ABOUT ===== */
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center; }
@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } }
.astrologer-card{
  position:relative;
  border:1px solid var(--line);
  background:linear-gradient(160deg, var(--purple-light), var(--purple));
  padding:36px;
  border-radius:10px;
  box-shadow:var(--shadow);
  animation:floatY 6s ease-in-out infinite;
}
.astrologer-card .frame{ aspect-ratio:3/4; border:2px solid var(--gold); padding:10px; margin-bottom:24px; border-radius:6px; }
.astrologer-card .frame-inner{ width:100%; height:100%; overflow:hidden; border-radius:2px; }
.astrologer-card .frame-inner img{ width:100%; height:100%; object-fit:cover; }
.astrologer-card h3{ font-size:21px; margin-bottom:4px; }
.astrologer-card .role{ color:var(--gold-bright); font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; font-family:'Space Mono',monospace;}
.cred-list{ list-style:none; display:flex; flex-direction:column; gap:13px; }
.cred-list li{ display:flex; gap:11px; font-size:14px; color:var(--ink-soft); align-items:flex-start; }
.cred-list li::before{ content:'✦'; color:var(--gold); flex-shrink:0; margin-top:2px; font-size:11px;}
.expertise-list{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:8px; }
@media (max-width:640px){ .expertise-list{ grid-template-columns:1fr; } }
.expertise-item{ padding-left:18px; border-left:2px solid var(--teal); transition:border-color .25s ease, transform .25s ease; }
.expertise-item:hover{ border-color:var(--gold-bright); transform:translateX(4px); }
.expertise-item h4{ font-size:15.5px; margin-bottom:6px; color:var(--gold-bright); font-family:'Inter',sans-serif; font-weight:600; letter-spacing:0.02em;}
.expertise-item p{ font-size:14px; color:var(--ink-soft); }

/* ===== SERVICES ===== */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .services-grid{ grid-template-columns:1fr;} }
.service-card{
  background:var(--purple);
  border:1px solid var(--line);
  padding:30px 26px;
  display:flex; flex-direction:column; gap:12px;
  border-radius:10px;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-card::after{
  content:''; position:absolute; top:0; left:0; width:60%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform:translateX(-120%);
  pointer-events:none;
}
.service-card:hover{ transform:translateY(-6px); border-color:var(--gold-bright); background:var(--purple-light); box-shadow:var(--shadow); }
.service-card:hover::after{ animation:shimmer 1s ease; }
.service-card .icon{ font-size:26px; color:var(--gold); font-family:'Playfair Display',serif; display:inline-block; transition:transform .3s ease; }
.service-card:hover .icon{ animation:wiggle .5s ease; }
.service-card h3{ font-size:18px; }
.service-card .tag{ font-family:'Playfair Display',serif; font-style:italic; font-size:12.5px; color:var(--gold-bright); margin-top:-6px;}
.service-card p{ font-size:13.5px; color:var(--ink-soft); flex-grow:1; }
.service-card .price-row{ font-family:'Space Mono',monospace; font-size:14px; color:var(--gold-bright); border-top:1px solid var(--line); padding-top:12px; margin-top:4px;}
.service-card .booknow{ font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); display:flex; justify-content:space-between; align-items:center; cursor:pointer;}
.service-card .booknow:hover{ color:var(--gold-bright); }
.service-card .booknow:hover span{ display:inline-block; animation:bounceArrow .6s ease infinite; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:50px; align-items:start; }
@media (max-width:900px){ .service-detail-grid{ grid-template-columns:1fr; } }
.service-detail-body h2{ font-size:26px; margin-bottom:16px; }
.service-detail-body p{ color:var(--ink-soft); font-size:15.5px; margin-bottom:18px; }
.service-detail-body ul{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.service-detail-body ul li{ display:flex; gap:10px; font-size:14.5px; color:var(--ink-soft); }
.service-detail-body ul li::before{ content:'✦'; color:var(--gold); flex-shrink:0; }
.price-panel{ background:var(--purple); border:1px solid var(--line); border-radius:10px; padding:32px; position:sticky; top:100px; box-shadow:var(--shadow); }
.price-panel .amount{ font-family:'Space Mono',monospace; font-size:36px; color:var(--gold-bright); margin:10px 0 4px;}
.price-panel .duration{ font-size:12.5px; color:var(--ink-soft); margin-bottom:22px; font-family:'Space Mono',monospace;}
.price-panel .btn{ width:100%; }
.price-panel .note{ font-size:12px; color:var(--ink-soft); margin-top:16px; line-height:1.6; }

/* ===== CHART GALLERY ===== */
.chart-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:980px){ .chart-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .chart-grid{ grid-template-columns:1fr;} }
.chart-card{ background:var(--purple); border:1px solid var(--line); border-radius:10px; padding:22px; display:flex; flex-direction:column; gap:12px; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.chart-card:hover{ transform:translateY(-5px) scale(1.02); border-color:var(--gold-bright); box-shadow:var(--shadow); }
.chart-card .chart-svg-wrap{ background:#FFFFFF; border:1px solid var(--line); border-radius:8px; padding:16px; display:flex; align-items:center; justify-content:center; aspect-ratio:1/1; }
.chart-card h4{ font-size:15px; }
.chart-card p{ font-size:12px; color:var(--ink-soft); }

/* ===== PRICING ===== */
.pricing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:980px){ .pricing-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .pricing-grid{ grid-template-columns:1fr;} }
.price-card{ background:var(--panel-warm); color:var(--ink); border:1px solid var(--line); border-radius:10px; padding:28px 24px; display:flex; flex-direction:column; position:relative; transition:transform .25s ease, box-shadow .25s ease; }
.price-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.price-card h4{ font-size:15.5px; margin-bottom:10px; font-family:'Inter',sans-serif; font-weight:600; }
.price-tag{ font-family:'Space Mono',monospace; font-size:28px; color:var(--gold-bright); margin-bottom:4px; }
.price-card .duration{ font-size:12px; opacity:.65; margin-bottom:14px; font-family:'Space Mono',monospace; }
.price-card p.desc{ font-size:13px; color:var(--ink-soft); flex-grow:1; margin-bottom:18px; }
.price-card .btn{ width:100%; padding:12px; font-size:11.5px; }

/* ---------- Multi-currency chip row ---------- */
.cur-chip-row{ display:flex; flex-wrap:wrap; gap:6px; margin:10px 0 16px; }
.cur-chip{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:0.01em; padding:4px 8px; border-radius:5px; white-space:nowrap; display:inline-flex; align-items:baseline; gap:4px; }
.cur-chip .cur-code{ font-size:9px; opacity:.6; font-weight:700; letter-spacing:0.04em; }
/* Light price-card context (pricing.html) */
.price-card .cur-chip-row{ margin:0 0 14px; }
.price-card .cur-chip{ background:rgba(233,30,140,0.08); color:#A3195B; border:1px solid rgba(233,30,140,0.2); }
/* Service-card context (home / services page) */
.service-card .cur-chip-row{ margin:8px 0 16px; }
.service-card .cur-chip{ background:rgba(233,30,140,0.08); color:var(--gold-bright); border:1px solid var(--line); }
/* Booking step price display */
#step1PriceDisplay .cur-chip{ background:rgba(233,30,140,0.1); color:var(--gold-bright); border:1px solid var(--line); }
.pay-strip{ margin-top:46px; text-align:center; }
.pay-strip .eyebrow{ justify-content:center; }
.pay-strip .eyebrow::before{ display:none; }
.pay-methods{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-top:18px; }
.pay-chip{ border:1px solid var(--line); padding:9px 18px; border-radius:6px; font-family:'Space Mono',monospace; font-size:12px; letter-spacing:0.05em; color:var(--ink-soft); }
.bank-card{ max-width:560px; margin:30px auto 0; background:var(--purple); border:1px solid var(--line); border-radius:10px; padding:26px 30px; text-align:left; }
.bank-card .row{ display:grid; grid-template-columns:1fr 1fr; gap:12px 22px; font-size:13.5px; }
.bank-card .lbl{ color:var(--ink-soft); font-size:11px; font-family:'Space Mono',monospace; text-transform:uppercase; margin-bottom:3px;}
.qr-row{ display:flex; justify-content:center; gap:22px; flex-wrap:wrap; margin-top:16px; }
.qr-box{ background:var(--purple); border:1px solid var(--line); border-radius:8px; padding:16px; width:200px; text-align:center; }
.qr-box img{ width:100%; border-radius:6px; margin-bottom:10px; }
.qr-box .lbl{ font-size:12px; color:var(--ink-soft); }

/* ===== BOOKING FORM ===== */
.booking-shell{ display:grid; grid-template-columns:0.9fr 1.4fr; gap:50px; }
@media (max-width:960px){ .booking-shell{ grid-template-columns:1fr; } }
.booking-side h2{ font-size:clamp(24px,3.4vw,34px); margin-bottom:16px; }
.booking-side p{ color:var(--ink-soft); margin-bottom:26px; font-size:15px; }
.contact-methods{ display:flex; flex-direction:column; gap:14px; }
.contact-method{ display:flex; align-items:center; gap:14px; padding:14px; border:1px solid var(--line); border-radius:8px; background:var(--purple); transition:transform .2s ease; }
.contact-method:hover{ transform:translateX(4px); }
.contact-method .ic{ width:38px; height:38px; border:1px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; font-size:15px;}
.contact-method .lbl{ font-size:10.5px; letter-spacing:0.09em; text-transform:uppercase; color:var(--ink-soft); font-family:'Space Mono',monospace;}
.contact-method .val{ font-size:14px; color:var(--ink); }
form.booking-form{ background:var(--purple); border:1px solid var(--line); border-radius:10px; padding:36px; }
.form-group-title{ font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:0.13em; text-transform:uppercase; color:var(--gold); margin:24px 0 14px; }
.form-group-title:first-child{ margin-top:0; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field label{ display:block; font-size:12px; color:var(--ink-soft); margin-bottom:6px; }
.field input, .field select, .field textarea{ width:100%; background:#FFFFFF; border:1px solid var(--line); color:var(--ink); padding:11px 13px; font-family:'Inter',sans-serif; font-size:14px; border-radius:6px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--gold-bright); box-shadow:0 0 0 3px rgba(233,30,140,0.12); }
.field textarea{ resize:vertical; min-height:84px; }
.form-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.field-file{ border:1px dashed var(--line); border-radius:8px; padding:16px; text-align:center; font-size:12.5px; color:var(--ink-soft); }
.booking-policy{ display:inline-flex; flex-wrap:wrap; gap:26px; justify-content:center; padding:20px 28px; background:#FFFFFF; border:1px solid var(--line); border-radius:8px; margin-top:20px;}
.booking-policy .lbl{ font-family:'Space Mono',monospace; font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }

/* ===== TESTIMONIALS ===== */
.testi-track{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:940px){ .testi-track{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:620px){ .testi-track{ grid-template-columns:1fr;} }
.testi-card{ background:var(--panel-warm); color:var(--ink); padding:26px; border-radius:10px; border-top:3px solid var(--gold-bright); transition:transform .25s ease, box-shadow .25s ease; }
.testi-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.stars-row{ color:var(--gold); font-size:13.5px; margin-bottom:13px; letter-spacing:2px;}
.testi-card p.quote{ font-size:14px; color:var(--ink-soft); margin-bottom:16px; }
.testi-who{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:13px;}
.testi-who .name{ font-weight:600; font-size:13.5px; }
.testi-who .loc{ font-size:11.5px; color:var(--gold); font-family:'Space Mono',monospace;}

/* ===== BLOG ===== */
.blog-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:940px){ .blog-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .blog-grid{ grid-template-columns:1fr;} }

/* Today's Zodiac Snapshot grid */
.zsnap-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.zsnap-card{ background:var(--purple); border:1px solid var(--line); border-radius:10px; padding:20px 10px; text-align:center; text-decoration:none; color:var(--ink); position:relative; overflow:hidden; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.zsnap-card::after{ content:''; position:absolute; top:0; left:-60%; width:40%; height:100%; background:linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent); transform:translateX(-120%); }
.zsnap-card:hover{ transform:translateY(-5px); border-color:var(--gold-bright); background:var(--purple-light); box-shadow:var(--shadow); }
.zsnap-card:hover::after{ animation:shimmer 1s ease; }
.zsnap-card .sym{ font-size:32px; font-family:'Playfair Display',serif; color:var(--gold); display:block; margin-bottom:8px; transition:transform .3s ease; }
.zsnap-card:hover .sym{ animation:wiggle .5s ease; }
.zsnap-card .nm{ font-size:12.5px; font-weight:600; }
@media (max-width:900px){ .zsnap-grid{ grid-template-columns:repeat(4,1fr);} }
@media (max-width:560px){ .zsnap-grid{ grid-template-columns:repeat(3,1fr); gap:10px;} .zsnap-card{ padding:14px 6px;} .zsnap-card .sym{ font-size:26px;} }

/* Free Tools icon grid (secondary, homepage) */
.ftools2-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.ftools2-card{ background:var(--panel-warm); border:1px solid var(--line); border-radius:10px; padding:24px 18px; text-decoration:none; color:var(--ink); display:flex; align-items:center; gap:16px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ftools2-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--gold-bright); }
.ftools2-card .badge{ flex:0 0 auto; width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; font-family:'Playfair Display',serif; color:#fff; background:linear-gradient(135deg, var(--gold), var(--gold-bright)); }
.ftools2-card .txt h4{ font-size:15px; margin-bottom:2px; }
.ftools2-card .txt span{ font-size:12px; color:var(--ink-soft); }
@media (max-width:900px){ .ftools2-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .ftools2-grid{ grid-template-columns:1fr;} }
.blog-card{ border:1px solid var(--line); border-radius:10px; overflow:hidden; background:var(--purple); display:flex; flex-direction:column; transition:transform .25s ease, box-shadow .25s ease; }
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.blog-thumb{ height:130px; background:linear-gradient(135deg,#FFD9EC,#FFE8CC); display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; color:var(--gold-bright); font-size:32px;}
.blog-body{ padding:20px; }
.blog-cat{ font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-bright); margin-bottom:9px; }
.blog-body h4{ font-size:15px; margin-bottom:9px; line-height:1.4; }
.blog-body p{ font-size:12.5px; color:var(--ink-soft); margin-bottom:14px; }
.blog-read{ font-size:11.5px; font-family:'Space Mono',monospace; color:var(--gold); }

/* ===== FAQ ===== */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-group{ margin-bottom:8px; }
.faq-group-title{ font-family:'Playfair Display',serif; font-size:20px; color:var(--gold-bright); margin:44px 0 6px; }
.faq-group:first-child .faq-group-title{ margin-top:0; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ display:flex; justify-content:space-between; align-items:center; padding:22px 4px; cursor:pointer; font-size:15.5px; color:var(--ink); font-family:'Inter',sans-serif; font-weight:500;}
.faq-q .plus{ font-family:'Space Mono',monospace; color:var(--gold); font-size:17px; transition:transform .25s ease; flex-shrink:0; margin-left:18px;}
.faq-item.open .plus{ transform:rotate(45deg); color:var(--gold-bright); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a p{ padding:0 4px 22px; font-size:14px; color:var(--ink-soft); max-width:680px; }

/* ===== FEATURES STRIP ===== */
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:10px; overflow:hidden; }
@media (max-width:860px){ .feat-grid{ grid-template-columns:repeat(2,1fr);} }
.feat-item{ background:#FFFFFF; padding:28px 24px; transition:background .25s ease; }
.feat-item:hover{ background:var(--panel-warm); }
.feat-item .n{ font-family:'Space Mono',monospace; color:var(--gold); font-size:11.5px; margin-bottom:9px; display:inline-block; }
.feat-item:hover .n{ animation:rotateIn .4s ease; }
.feat-item h4{ font-size:14.5px; margin-bottom:7px; font-family:'Inter',sans-serif; font-weight:600; }
.feat-item p{ font-size:12.5px; color:var(--ink-soft); }

/* ===== SOCIAL ICONS ===== */
.social-row{ display:flex; gap:12px; margin-bottom:16px; }
.social-btn{ width:38px; height:38px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold-bright); transition:transform .2s ease, background .2s ease; }
.social-btn:hover{ transform:translateY(-3px) scale(1.08); background:rgba(255,255,255,0.08); }
.contact-link-row{ display:flex; justify-content:center; gap:22px; flex-wrap:wrap; font-size:13.5px; }
.contact-link-row a{ display:inline-flex; align-items:center; gap:7px; }

/* ===== FOOTER ===== */
footer{ background:var(--navy-deep); border-top:1px solid var(--line); padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.2fr 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr 0.85fr; gap:22px; margin-bottom:44px; }
@media (max-width:1320px){ .footer-grid{ grid-template-columns:1fr 1fr 1fr 1fr; } }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr 1fr; } }
@media (max-width:640px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid .foot-head{ font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer-grid ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ font-size:13px; color:var(--footer-text); transition:color .2s;}
.footer-grid a:hover{ color:var(--gold-bright); }
.footer-grid li{ color:var(--footer-text); font-size:13px; }
.footer-bottom{ border-top:1px solid var(--line); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:12px; color:var(--footer-text-soft); }
.footer-bottom a{ color:var(--footer-text-soft); }
.footer-bottom a:hover{ color:var(--gold-bright); }

/* ===== SACRED SYMBOLS & MANTRAS MARQUEE ===== */
.marquee-band{
  background: var(--navy-deep);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  padding:26px 0;
  position:relative;
}
.marquee-band::before, .marquee-band::after{
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
}
.marquee-band::before{ left:0; background:linear-gradient(90deg, var(--navy-deep), transparent); }
.marquee-band::after{ right:0; background:linear-gradient(270deg, var(--navy-deep), transparent); }
.marquee-track{
  display:flex;
  align-items:center;
  gap:56px;
  width:max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-band:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.marquee-item .glyph{
  font-family:'Playfair Display',serif;
  font-size:30px;
  color:var(--gold);
  line-height:1;
  flex-shrink:0;
}
.marquee-item .glyph svg{ display:block; }
.marquee-item .text{ display:flex; flex-direction:column; gap:2px; }
.marquee-item .hi{
  font-family:'Playfair Display',serif;
  font-size:15px;
  color:var(--gold-bright);
}
.marquee-item .en{
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--footer-text-soft);
}
.marquee-caption{ text-align:center; padding:16px 0 0; }
.marquee-caption .eyebrow{ justify-content:center; margin-bottom:0; }

/* Sticky mobile CTA */
.mobile-cta{ position:fixed; bottom:0; left:0; right:0; z-index:90; display:none; background:var(--navy-deep); border-top:1px solid var(--line); padding:12px 16px; gap:10px; }
@media (max-width:640px){ .mobile-cta{ display:flex; } body{ padding-bottom:64px; } .fab-whatsapp{ display:none; } }
.mobile-cta .btn{ flex:1; padding:12px; font-size:11px; }

/* ===================================================================
   DIVINE VISUALS + PRACTICE ANIMATIONS
   (Tarot / Numerology / Palmistry / KP Astrology / Lal Kitab pages)
   =================================================================== */
:root{
  --vg-1:#FF5A36; --vg-2:#E91E8C; --vg-3:#7C3AED; --vg-4:#00BFA6; --vg-5:#FFC93C;
}
@keyframes haloSpin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
@keyframes haloSpinRev{ from{ transform:rotate(360deg);} to{ transform:rotate(0deg);} }
@keyframes diyaFlicker{ 0%,100%{ opacity:1; transform:scaleY(1) translateY(0);} 40%{ opacity:.82; transform:scaleY(1.08) translateY(-1px);} 60%{ opacity:.92; transform:scaleY(.94) translateY(1px);} 80%{ opacity:.88; transform:scaleY(1.04);} }
@keyframes cardFlip3d{ 0%{ transform:rotateY(0deg);} 45%{ transform:rotateY(180deg);} 55%{ transform:rotateY(180deg);} 100%{ transform:rotateY(360deg);} }
@keyframes numberCycle{ 0%,18%{ opacity:1; transform:translateY(0);} 22%{ opacity:0; transform:translateY(-14px);} 24%{ opacity:0; transform:translateY(14px);} 28%,100%{ opacity:1; transform:translateY(0);} }
@keyframes palmDraw{ from{ stroke-dashoffset:340;} to{ stroke-dashoffset:0;} }
@keyframes wheelSpinSlow{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
@keyframes lotusBloom{ 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.09);} }
@keyframes coinFall{ 0%{ transform:translateY(-16px); opacity:0;} 15%{ opacity:1;} 100%{ transform:translateY(50px); opacity:0;} }
@keyframes glowPulseVibrant{ 0%,100%{ filter:drop-shadow(0 0 4px rgba(233,30,140,0.35));} 50%{ filter:drop-shadow(0 0 14px rgba(255,90,54,0.55));} }
@keyframes vibrantShift{ 0%,100%{ background-position:0% 50%;} 50%{ background-position:100% 50%;} }

/* Vibrant page-hero overrides per practice — applied in addition to .page-hero */
.hero-vibrant-tarot, .hero-vibrant-numerology, .hero-vibrant-palm, .hero-vibrant-kp, .hero-vibrant-lalkitab{
  background-size:220% 220%;
  animation:vibrantShift 12s ease-in-out infinite;
  position:relative;
}
.hero-vibrant-tarot{ background-image:linear-gradient(120deg,#2E1065 0%, #7C3AED 28%, #E91E8C 60%, #FF5A36 100%); }
.hero-vibrant-numerology{ background-image:linear-gradient(120deg,#1B0E3D 0%, #00BFA6 35%, #7C3AED 68%, #FFC93C 100%); }
.hero-vibrant-palm{ background-image:linear-gradient(120deg,#3D1E12 0%, #FF5A36 30%, #E91E8C 65%, #7C3AED 100%); }
.hero-vibrant-kp{ background-image:linear-gradient(120deg,#0F1D3D 0%, #7C3AED 30%, #00BFA6 65%, #E91E8C 100%); }
.hero-vibrant-lalkitab{ background-image:linear-gradient(120deg,#3D0E0E 0%, #FF5A36 30%, #FFC93C 62%, #E91E8C 100%); }
.hero-vibrant-tarot *, .hero-vibrant-numerology *, .hero-vibrant-palm *, .hero-vibrant-kp *, .hero-vibrant-lalkitab *{ color:#FFFFFF !important; }
.hero-vibrant-tarot .breadcrumb a, .hero-vibrant-numerology .breadcrumb a, .hero-vibrant-palm .breadcrumb a, .hero-vibrant-kp .breadcrumb a, .hero-vibrant-lalkitab .breadcrumb a{ color:#FFE8F7 !important; }
.hero-vibrant-tarot p, .hero-vibrant-numerology p, .hero-vibrant-palm p, .hero-vibrant-kp p, .hero-vibrant-lalkitab p{ color:#F3EBFF !important; }

/* ===== Divine Blessings Band (Kamdhenu / Ganesh / Lakshmi / Vishnu / Shrikrushna) ===== */
.divine-band{ padding:56px 0; background:linear-gradient(180deg,#1B0E3D 0%, #2E1065 100%); position:relative; overflow:hidden; }
.divine-band::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 30%, rgba(233,30,140,0.18), transparent 55%), radial-gradient(circle at 80% 70%, rgba(0,191,166,0.16), transparent 55%); pointer-events:none; }
.divine-band .wrap{ position:relative; z-index:2; }
.divine-band .divine-eyebrow{ text-align:center; color:var(--gold); font-family:'Space Mono',monospace; font-size:12px; letter-spacing:0.28em; text-transform:uppercase; margin-bottom:8px; }
.divine-band .divine-title{ text-align:center; color:#FFFFFF; font-family:'Playfair Display',serif; font-size:clamp(22px,3vw,30px); margin-bottom:36px; }
.divine-row{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
@media (max-width:860px){ .divine-row{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:520px){ .divine-row{ grid-template-columns:repeat(2,1fr); } }
.divine-icon-card{ text-align:center; padding:18px 10px; }
.divine-icon-ring{ width:84px; height:84px; margin:0 auto 14px; border-radius:50%; position:relative; display:flex; align-items:center; justify-content:center; background:radial-gradient(circle,rgba(255,255,255,0.06),transparent 70%); }
.divine-icon-ring::before{ content:''; position:absolute; inset:0; border-radius:50%; border:1.5px dashed rgba(255,201,60,0.55); animation:haloSpin 18s linear infinite; }
.divine-icon-ring svg{ width:44px; height:44px; position:relative; z-index:2; animation:floatY 4.2s ease-in-out infinite, glowPulseVibrant 3.6s ease-in-out infinite; }
.divine-icon-card:nth-child(2) .divine-icon-ring svg{ animation-delay:.3s,.3s; }
.divine-icon-card:nth-child(3) .divine-icon-ring svg{ animation-delay:.6s,.6s; }
.divine-icon-card:nth-child(4) .divine-icon-ring svg{ animation-delay:.9s,.9s; }
.divine-icon-card:nth-child(5) .divine-icon-ring svg{ animation-delay:1.2s,1.2s; }
.divine-icon-card .dname-hi{ font-family:'Playfair Display',serif; color:var(--gold-bright); font-size:15px; margin-bottom:2px; }
.divine-icon-card .dname-en{ font-family:'Space Mono',monospace; color:var(--footer-text-soft); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; }

/* ===== Practice-specific animated centerpiece ===== */
.practice-stage{ display:flex; align-items:center; justify-content:center; padding:44px 20px 8px; }
.practice-stage svg{ max-width:100%; height:auto; }

/* Tarot */
.tarot-stage-cards{ display:flex; gap:18px; perspective:900px; }
.tarot-card-anim{ width:70px; height:110px; border-radius:8px; background:linear-gradient(160deg,#7C3AED,#E91E8C); box-shadow:0 10px 26px rgba(124,58,237,0.35); position:relative; transform-style:preserve-3d; animation:cardFlip3d 5.5s ease-in-out infinite; display:flex; align-items:center; justify-content:center; }
.tarot-card-anim:nth-child(2){ animation-delay:.5s; background:linear-gradient(160deg,#FF5A36,#E91E8C); }
.tarot-card-anim:nth-child(3){ animation-delay:1s; background:linear-gradient(160deg,#00BFA6,#7C3AED); }
.tarot-card-anim .star{ color:rgba(255,255,255,0.85); font-size:22px; }

/* Numerology */
.numero-stage{ display:flex; gap:16px; align-items:center; justify-content:center; }
.numero-digit{ width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:#fff; background:conic-gradient(from 0deg,#FF5A36,#E91E8C,#7C3AED,#00BFA6,#FFC93C,#FF5A36); animation:floatY 3.4s ease-in-out infinite; position:relative; }
.numero-digit span{ position:relative; z-index:2; animation:numberCycle 3.2s ease-in-out infinite; }
.numero-digit:nth-child(2){ animation-delay:.4s; }
.numero-digit:nth-child(3){ animation-delay:.8s; }
.numero-digit:nth-child(4){ animation-delay:1.2s; }

/* Palmistry */
.palm-stage svg .palm-line{ fill:none; stroke-width:3; stroke-linecap:round; stroke-dasharray:340; stroke-dashoffset:340; animation:palmDraw 3s ease forwards infinite alternate; }
.palm-stage svg .line-heart{ stroke:#E91E8C; animation-delay:0s; }
.palm-stage svg .line-head{ stroke:#7C3AED; animation-delay:.3s; }
.palm-stage svg .line-life{ stroke:#FF5A36; animation-delay:.6s; }
.palm-stage svg .line-fate{ stroke:#00BFA6; animation-delay:.9s; }

/* KP Astrology wheel */
.kp-stage-wheel{ animation:wheelSpinSlow 26s linear infinite; transform-origin:center; }
.kp-stage-wheel .kp-inner{ animation:wheelSpinSlow 16s linear infinite reverse; transform-origin:center; }

/* Lal Kitab diya */
.lalkitab-stage .flame{ transform-origin:bottom center; animation:diyaFlicker 1.4s ease-in-out infinite; }

::selection{ background:var(--gold-bright); color:#FFFFFF; }

/* ===== Report Tools: email-gate modal + report action buttons ===== */
.rt-overlay{ position:fixed; inset:0; background:rgba(15,8,30,0.72); z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; }
.rt-modal{ background:var(--purple); border:1px solid var(--gold); border-radius:10px; max-width:420px; width:100%; padding:28px; }
.rt-modal h3{ font-family:'Playfair Display',serif; color:var(--gold-bright); font-size:20px; margin-bottom:10px; }
.rt-modal p{ color:var(--ivory); font-size:14px; margin-bottom:16px; line-height:1.5; }
.rt-modal input{ width:100%; padding:11px 12px; border-radius:5px; border:1px solid var(--line); background:rgba(0,0,0,0.25); color:var(--ivory); font-size:14.5px; margin-bottom:12px; }
.rt-modal input:focus{ outline:2px solid var(--gold); }
.rt-modal-actions{ display:flex; gap:10px; margin-top:4px; }
.rt-modal-actions .btn{ flex:1; text-align:center; }
.rt-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:20px; }
.rt-actions .btn{ font-size:13.5px; padding:11px 18px; }

/* ===== Report Content (long-form calculator reports) ===== */
.rc-block{ margin-top:8px; padding-top:14px; border-top:1px dashed var(--line); }
.rc-block:first-child{ border-top:none; padding-top:0; }
.rc-num-head{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.rc-num-badge{ font-family:'Playfair Display',serif; font-size:26px; color:var(--gold-bright); background:rgba(233,30,140,0.1); border:1px solid var(--line); border-radius:8px; width:44px; height:44px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-num-label{ font-family:'Playfair Display',serif; font-size:18px; color:var(--ivory); }
.rc-section{ margin-top:14px; }
.rc-h4{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gold); margin-bottom:5px; }
.rc-body{ font-size:14px; color:#5B4046; line-height:1.7; }
.rc-body p{ margin-bottom:6px; }
.rc-report-title{ text-align:center; font-family:'Playfair Display',serif; font-size:22px; color:var(--gold-bright); margin-bottom:4px; }
.rc-report-sub{ text-align:center; font-family:'Space Mono',monospace; font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:#8B7BB8; margin-bottom:18px; }
.rc-divider{ border:none; border-top:1px solid var(--line); margin:22px 0; }

/* ===== Trust strip (credential/social-proof bar for tool pages) ===== */
.trust-strip{ display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap; padding:16px 10px 22px; border-bottom:1px solid var(--line); margin-bottom:24px; }
.trust-item{ display:flex; flex-direction:column; align-items:center; text-align:center; min-width:90px; }
.trust-num{ font-family:'Playfair Display',serif; font-size:22px; color:var(--gold-bright); line-height:1.1; }
.trust-lbl{ font-size:10.5px; font-family:'Space Mono',monospace; text-transform:uppercase; letter-spacing:0.05em; color:#8B7BB8; margin-top:4px; }

/* ===== Chart wheel container ===== */
.chart-wheel-box{ max-width:220px; margin:0 auto 16px; }
.chart-wheel-box .chart-svg-wrap{ aspect-ratio:1/1; }
.chart-wheel-caption{ text-align:center; font-size:11px; font-family:'Space Mono',monospace; color:#8B7BB8; margin-top:6px; text-transform:uppercase; letter-spacing:0.05em; }

/* ===== Video trust asset embeds ===== */
.video-embed-wrap{ position:relative; width:100%; max-width:640px; margin:0 auto; aspect-ratio:16/9; border-radius:8px; overflow:hidden; border:1px solid var(--line); background:#0F0A1E; }
.video-embed-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:700px){ .video-grid{ grid-template-columns:1fr; } }
.video-card h4{ font-family:'Playfair Display',serif; font-size:16px; color:var(--gold-bright); margin:10px 0 4px; text-align:center; }
.video-card p{ font-size:13px; color:#5B4046; text-align:center; }

/* ===== Rashifal period tabs ===== */
.rf-period-tabs{ display:flex; gap:8px; flex-wrap:wrap; }
.rf-period-tab{ background:rgba(0,0,0,0.2); border:1px solid var(--line); color:var(--ivory); padding:8px 14px; border-radius:20px; font-size:12.5px; font-family:'Space Mono',monospace; cursor:pointer; text-transform:uppercase; letter-spacing:0.04em; }
.rf-period-tab.active{ background:var(--gold); color:#1B1032; border-color:var(--gold); font-weight:600; }
.rf-cat-label{ font-family:'Playfair Display',serif; font-size:16px; color:var(--gold-bright); margin-bottom:10px; }

/* ===== Article share bar (blog & guide pages) ===== */
.share-bar{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin:18px 0; }
.share-label{ font-size:11.5px; font-family:'Space Mono',monospace; text-transform:uppercase; letter-spacing:0.05em; color:#8B7BB8; }
.share-btn{ display:inline-block; padding:7px 14px; border-radius:20px; border:1px solid var(--line); font-size:12.5px; text-decoration:none; cursor:pointer; }
.share-bar-dark .share-btn{ color:var(--ivory); background:rgba(0,0,0,0.2); }
.share-bar-light .share-btn{ color:#5B4046; background:rgba(0,0,0,0.03); }
.share-btn:hover{ border-color:var(--gold); }
