/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #f5c842;
  --gold-light: #ffe680;
  --gold-dim: #c9a84c;
  --saffron: #ff6b1a;
  --saffron-light: #ff9a4d;
  --violet: #7c3aed;
  --violet-light: #a855f7;
  --teal: #06b6d4;
  --dark: #04000f;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(245,200,66,0.2);
  --text: #f0eaff;
  --muted: rgba(240,234,255,0.58);
}
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: #04000f; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cinzel', serif; }
h1 span, h2 span { color: var(--gold); }

/* ===== COSMOS CANVAS ===== */
#cosmos-bg { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 56px;
  background: rgba(4,0,15,0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245,200,66,0.15);
  transition: background 0.3s;
  box-shadow: 0 2px 40px rgba(124,58,237,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { display: flex; align-items: center; filter: drop-shadow(0 0 8px rgba(245,200,66,0.8)) drop-shadow(0 0 20px rgba(255,107,26,0.5)); animation: logo-bounce 2.5s infinite; }
@keyframes logo-bounce {
  0%,100%{transform:translateY(0)} 40%{transform:translateY(-5px)} 60%{transform:translateY(-2px)}
}
.nav-logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text { font-family: 'Cinzel', serif; font-size: 1.05rem; letter-spacing: 1.5px; background: linear-gradient(90deg, var(--gold-light), var(--saffron-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo-sub { font-size: 0.6rem; color: rgba(245,200,66,0.6); letter-spacing: 3px; }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background: linear-gradient(90deg, var(--saffron), var(--gold)); transition:width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn { background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #1a0000; padding: 9px 22px; border-radius: 30px; text-decoration: none; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; transition: box-shadow 0.3s, transform 0.2s; box-shadow: 0 0 16px rgba(255,107,26,0.3); }
.nav-btn:hover { box-shadow: 0 0 28px rgba(255,107,26,0.7), 0 0 50px rgba(245,200,66,0.3); transform: translateY(-1px); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--gold); }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 12px 30px; background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #1a0000; text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; border-radius: 30px; border: none; cursor: pointer; font-family: 'Lato', sans-serif; transition: transform 0.2s, box-shadow 0.3s; box-shadow: 0 0 20px rgba(255,107,26,0.3); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,107,26,0.6), 0 0 60px rgba(245,200,66,0.2); }
.btn-outline { display: inline-block; padding: 11px 28px; background: transparent; color: var(--gold); border: 1px solid rgba(245,200,66,0.5); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; border-radius: 30px; transition: all 0.3s; }
.btn-outline:hover { background: rgba(245,200,66,0.08); border-color: var(--gold); box-shadow: 0 0 20px rgba(245,200,66,0.2); }
.btn-sm { display: inline-block; padding: 7px 18px; background: transparent; color: var(--gold); border: 1px solid rgba(245,200,66,0.4); text-decoration: none; font-size: 0.78rem; border-radius: 20px; transition: all 0.3s; }
.btn-sm:hover { background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #1a0000; border-color: transparent; }

/* ===== SECTION BASE ===== */
.section { padding: 80px 56px; position: relative; }
.section-tag { font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.25; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.8; max-width: 560px; margin-bottom: 40px; }

/* ===== PILL TAG ===== */
.pill-tag { display: inline-block; background: linear-gradient(135deg, rgba(255,107,26,0.12), rgba(245,200,66,0.1)); border: 1px solid rgba(255,107,26,0.35); color: var(--saffron-light); font-size: 0.72rem; letter-spacing: 2px; padding: 6px 18px; border-radius: 30px; margin-bottom: 20px; }

/* ===== TICKER ===== */
.ticker { overflow: hidden; background: rgba(201,168,76,0.06); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 10px 0; }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 0.78rem; color: var(--gold-light); letter-spacing: 2px; white-space: nowrap; font-family: 'Cinzel', serif; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== HERO SPLIT ===== */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 56px 60px;
  gap: 60px;
}
.hero-split-left { flex: 1; min-width: 300px; }
.hero-split-left h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; margin-bottom: 20px; }
.hero-desc { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 480px; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats-row { display: flex; align-items: center; gap: 24px; }
.hstat strong { display: block; font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold); }
.hstat span { font-size: 0.72rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.hstat-divider { width: 1px; height: 36px; background: var(--glass-border); }
.hero-phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: #1a0000; font-size: 1rem; font-family: 'Cinzel', serif; letter-spacing: 1px; text-decoration: none; padding: 12px 28px; border-radius: 30px; background: linear-gradient(135deg, var(--saffron), var(--gold)); box-shadow: 0 0 24px rgba(255,107,26,0.5), 0 0 50px rgba(245,200,66,0.2); transition: box-shadow 0.3s, transform 0.2s; font-weight: 700; }
.hero-phone:hover { box-shadow: 0 0 36px rgba(255,107,26,0.8), 0 0 70px rgba(245,200,66,0.35); transform: translateY(-2px); }

/* ===== ASTRO ORB ===== */
.hero-split-right { flex: 0 0 420px; display: flex; align-items: center; justify-content: center; padding-right: 80px; }
.astro-orb-wrap { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; }
.astro-orb { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.orb-inner {
  font-size: 5rem;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.6));
  animation: orb-pulse 3s ease-in-out infinite alternate;
}
@keyframes orb-pulse {
  from { filter: drop-shadow(0 0 20px rgba(201,168,76,0.4)); transform: scale(1); }
  to   { filter: drop-shadow(0 0 50px rgba(201,168,76,0.8)); transform: scale(1.08); }
}
.orb-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--glass-border);
}
.orb-ring.r1 { width: 200px; height: 200px; border-color: rgba(201,168,76,0.25); animation: spin 12s linear infinite; }
.orb-ring.r2 { width: 290px; height: 290px; border-color: rgba(201,168,76,0.12); animation: spin 20s linear infinite reverse; }
.orb-ring.r3 { width: 370px; height: 370px; border-color: rgba(201,168,76,0.07); animation: spin 30s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.orb-dot {
  position: absolute;
  font-size: 1rem;
  color: rgba(201,168,76,0.5);
  width: 370px; height: 370px;
  display: flex; align-items: flex-start; justify-content: center;
  transform: rotate(var(--a));
  animation: spin 30s linear infinite reverse;
  padding-top: 4px;
}

/* ===== HERO IMAGE ===== */
.hero-img-wrap {
  position: relative;
  width: 420px;
  display: inline-block;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(245,200,66,0.4);
  box-shadow: 0 0 40px rgba(201,168,76,0.2), 0 0 80px rgba(124,58,237,0.12);
  position: relative;
  z-index: 1;
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-img-wrap { width: 100%; max-width: 340px; margin: 0 auto; }
}

/* ===== SERVICE / OFFER CARD IMAGES ===== */
.offer-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.offer-card:hover .offer-img { transform: scale(1.06); }

.offer-card .btn-sm { display: inline-block; margin-top: 16px; }

.sdc-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.sdc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-detail-card:hover .sdc-img { transform: scale(1.06); }

/* ===== OFFER SECTION ===== */
.offer-section { background: rgba(4,0,15,0.6); }
.offer-header { text-align: center; margin-bottom: 50px; }
.offer-header .section-sub { margin: 0 auto 0; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.offer-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(4,0,15,0.8));
  border: 1px solid rgba(245,200,66,0.12);
  border-radius: 22px;
  padding: 34px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.08), transparent);
  pointer-events: none;
  transition: opacity 0.3s;
}
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.offer-card:hover { transform: translateY(-8px); border-color: rgba(255,107,26,0.4); box-shadow: 0 16px 48px rgba(124,58,237,0.2), 0 0 30px rgba(255,107,26,0.1); cursor: pointer; }
.offer-card:hover::after { opacity: 1; }
.offer-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; filter: drop-shadow(0 0 10px rgba(255,107,26,0.4)); }
.offer-card h3 { font-size: 1rem; color: var(--gold-light); margin-bottom: 10px; }
.offer-card p { color: var(--muted); font-size: 0.84rem; line-height: 1.75; }
.offer-footer { text-align: center; margin-top: 44px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } }

/* ===== SPOTLIGHT ===== */
.spotlight-section { padding: 0 56px 80px; }
.spotlight-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 50px 56px;
  position: relative;
  overflow: hidden;
}
.spotlight-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,0,255,0.08), transparent);
  pointer-events: none;
}
.spotlight-left { flex: 0 0 auto; }
.spotlight-avatar {
  position: relative;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.spotlight-avatar span { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(201,168,76,0.5)); z-index: 1; }
.avatar-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.3);
  animation: spin 15s linear infinite;
}
.avatar-badge {
  position: absolute; bottom: -8px; right: -8px;
  background: linear-gradient(135deg, var(--gold), #9a6f20);
  color: #06001a; font-weight: 700; font-size: 0.72rem;
  padding: 6px 12px; border-radius: 20px;
}
.spotlight-right { flex: 1; }
.spotlight-right p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }
.spotlight-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.spotlight-tags span {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.72rem; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 20px;
}
@media (max-width: 760px) {
  .spotlight-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .spotlight-tags { justify-content: center; }
}

/* ===== NUMBERS STRIP ===== */
.numbers-strip {
  display: flex; justify-content: center; gap: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(6,0,26,0.6));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.num-item {
  flex: 1; min-width: 160px;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.num-item:last-child { border-right: none; }
.num-item:hover { background: rgba(201,168,76,0.04); }
.num-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.num-item strong { display: block; font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.num-item p { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===== PROCESS SECTION ===== */
.process-section { background: rgba(6,0,26,0.5); text-align: center; }
.process-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 10px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto;
}
.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  width: 220px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.process-step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #9a6f20);
  color: #06001a; font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
}
.step-icon { font-size: 2rem; margin: 14px 0 12px; display: block; }
.process-step h3 { color: var(--gold-light); font-size: 0.92rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.8rem; line-height: 1.6; }
.process-arrow { font-size: 1.4rem; color: rgba(201,168,76,0.3); align-self: center; margin-top: 20px; }
@media (max-width: 860px) {
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); }
}

/* ===== ZODIAC SECTION ===== */
.zodiac-section { background: rgba(0,0,0,0.3); text-align: center; }
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 30px;
}
.z-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 10px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 1.6rem;
}
.z-card span { font-size: 0.7rem; color: var(--muted); letter-spacing: 1px; font-family: 'Cinzel', serif; }
.z-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); transform: translateY(-4px); color: var(--gold); }
.z-card:hover span { color: var(--gold); }
@media (max-width: 700px) { .zodiac-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 480px) { .zodiac-grid { grid-template-columns: repeat(3,1fr); } }

/* Zodiac popup */
.zodiac-popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(6,0,26,0.97);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  z-index: 200;
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
  animation: fadeInUp 0.3s ease;
}
.zodiac-popup.active { display: block; }
.zpop-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: var(--muted);
  font-size: 1rem; cursor: pointer; transition: color 0.2s;
}
.zpop-close:hover { color: var(--gold); }
.zpop-sign { font-size: 3.5rem; margin-bottom: 10px; }
#zpop-name { color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
#zpop-desc { color: var(--muted); font-size: 0.86rem; line-height: 1.7; }
.zpop-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 199;
  backdrop-filter: blur(4px);
}
.zpop-overlay.active { display: block; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: rgba(6,0,26,0.5); }
.testi-scroll {
  display: flex; gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-scroll::-webkit-scrollbar { height: 4px; }
.testi-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
.testi-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.testi-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testi-quote {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.testi-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #9a6f20);
  color: #06001a; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-footer > div:nth-child(2) { flex: 1; }
.testi-footer strong { display: block; font-size: 0.82rem; color: var(--text); }
.testi-footer span { font-size: 0.72rem; color: var(--muted); }
.testi-stars { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; }

/* ===== FAQ ===== */
.faq-section { background: rgba(0,0,0,0.25); }
.faq-inner { display: flex; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: flex-start; flex-wrap: wrap; }
.faq-left { flex: 0 0 280px; }
.faq-right { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; font-size: 0.86rem; color: var(--text); font-family: 'Cinzel', serif; gap: 12px; }
.faq-arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== LOCATIONS ===== */
.locations-section { background: rgba(4,0,15,0.85); text-align: center; position: relative; overflow: hidden; }
.locations-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.07), transparent 70%);
  pointer-events: none;
}
.locations-header { margin-bottom: 56px; position: relative; z-index: 1; }
.locations-header .section-sub { margin: 0 auto; }

.loc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.loc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,200,66,0.1);
  border-radius: 18px;
  padding: 28px 26px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.loc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--saffron), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.loc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.08);
}
.loc-card:hover::before { opacity: 1; }

.loc-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.loc-pin-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(255,107,26,0.15));
  border: 1px solid rgba(245,200,66,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}
.loc-card-top h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
.loc-card-bold {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 600;
}
.loc-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 900px) { .loc-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .loc-cards-grid { grid-template-columns: 1fr; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(120,0,255,0.06), rgba(201,168,76,0.06), rgba(0,60,180,0.06));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08), transparent);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.cta-banner p { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; }
.cta-form { max-width: 700px; margin: 0 auto; text-align: left; }
.cta-form-row { display: flex; gap: 16px; }
.cta-form-row .form-group { flex: 1; }
@media (max-width: 600px) { .cta-form-row { flex-direction: column; } }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: rgba(6,0,26,0.95); border-top: 1px solid var(--glass-border); padding: 56px 56px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--glass-border); }
.footer-brand { flex: 2; min-width: 200px; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
.footer-nav { flex: 1; min-width: 130px; display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4 { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact h4 { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-contact p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: var(--muted); opacity: 0.6; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.float-btn svg { width: 26px; height: 26px; fill: #fff; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { min-height: 34vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 50px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ===== ABOUT PAGE ===== */
.bio-section { background: rgba(6,0,26,0.4); padding: 80px 56px; }
.bio-grid { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.bio-visual { flex: 0 0 auto; position: relative; display: flex; justify-content: center; }
.bio-circle { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.bio-circle span { font-size: 5rem; z-index: 1; filter: drop-shadow(0 0 18px rgba(201,168,76,0.4)); }
.bio-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--glass-border); animation: spin 18s linear infinite; }
.ap-badge { position: absolute; bottom: -10px; right: -10px; background: linear-gradient(135deg, var(--gold), #9a6f20); color: #06001a; padding: 10px 14px; border-radius: 10px; text-align: center; line-height: 1.3; }
.ap-badge strong { display: block; font-size: 1.3rem; font-family: 'Cinzel', serif; }
.ap-badge span { font-size: 0.7rem; font-weight: 700; }
.bio-text { flex: 1; min-width: 260px; }
.bio-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }

/* ===== EXPERTISE ===== */
.expertise-section { background: rgba(0,0,0,0.2); text-align: center; padding: 80px 56px; }
.expertise-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.exp-box { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 14px; padding: 24px 20px; width: 270px; text-align: left; transition: transform 0.3s, border-color 0.3s; }
.exp-box:hover { transform: translateY(-4px); border-color: var(--gold); }
.exp-box span { font-size: 1.8rem; }
.exp-box h4 { color: var(--gold); font-size: 0.88rem; margin: 10px 0 6px; }
.exp-box p { color: var(--muted); font-size: 0.8rem; line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 40px; background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(6,0,26,0.5)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); text-align: center; }
.stat-item strong { display: block; font-size: 1.8rem; color: var(--gold); font-family: 'Cinzel', serif; }
.stat-item span { font-size: 0.75rem; color: var(--muted); letter-spacing: 1px; }

/* ===== TIMELINE ===== */
.timeline-section { background: rgba(6,0,26,0.5); text-align: center; padding: 80px 56px; }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 600px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 90px; top: 0; bottom: 0; width: 1px; background: var(--glass-border); }
.tl-item { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.tl-year { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold); width: 70px; text-align: right; flex-shrink: 0; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 10px rgba(201,168,76,0.6); position: relative; z-index: 1; }
.tl-text { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== WHY SECTION ===== */
.why-section { background: rgba(0,0,0,0.25); text-align: center; padding: 80px 56px; }
.why-grid { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.why-box { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 14px; padding: 28px 22px; width: 200px; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.why-box:hover { transform: translateY(-4px); border-color: var(--gold); }
.why-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.why-box h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 6px; }
.why-box p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ===== SERVICES DETAIL ===== */
.svc-detail-section { background: rgba(6,0,26,0.4); text-align: center; padding: 80px 56px; }
.svc-detail-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.svc-detail-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 16px; overflow: hidden; width: 310px; text-align: left; transition: border-color 0.3s, transform 0.3s; }
.svc-detail-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.sdc-body { padding: 20px 22px 24px; }
.sdc-body h3 { color: var(--gold-light); font-size: 1rem; margin-bottom: 10px; }
.sdc-body p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }

/* ===== CTA STRIP ===== */
.cta-strip { text-align: center; padding: 80px 56px; background: linear-gradient(135deg, rgba(120,0,255,0.06), rgba(201,168,76,0.06)); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-strip p { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }

/* ===== SERVICE DETAIL PAGE ===== */
.svc-page-section { padding: 80px 56px; }
.svc-page-grid { display: flex; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: flex-start; flex-wrap: wrap; }
.svc-page-img-col { flex: 0 0 420px; }
.svc-page-img { width: 100%; border-radius: 16px; border: 2px solid rgba(245,200,66,0.3); box-shadow: 0 0 40px rgba(201,168,76,0.15); }
.svc-page-content-col { flex: 1; min-width: 280px; }
.svc-page-content-col p { color: var(--muted); font-size: 0.92rem; line-height: 1.85; margin-bottom: 16px; }
.svc-page-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.svc-highlight { display: flex; align-items: center; gap: 10px; background: rgba(245,200,66,0.05); border: 1px solid rgba(245,200,66,0.15); border-radius: 10px; padding: 10px 14px; font-size: 0.82rem; color: var(--text); }
.svc-highlight span { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
@media (max-width: 900px) {
  .svc-page-grid { flex-direction: column; }
  .svc-page-img-col { flex: none; width: 100%; }
  .svc-page-highlights { grid-template-columns: 1fr; }
}

/* ===== HOW IT WORKS ===== */
.how-section { background: rgba(0,0,0,0.2); text-align: center; padding: 80px 56px; }
.how-steps { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.how-step { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); border-radius: 14px; padding: 26px 20px; width: 210px; text-align: center; }
.how-num { font-size: 2rem; color: var(--gold); font-family: 'Cinzel', serif; opacity: 0.5; margin-bottom: 10px; }
.how-step h4 { color: var(--gold-light); font-size: 0.88rem; margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: 0.78rem; line-height: 1.6; }
.how-arrow { font-size: 1.4rem; color: var(--gold); opacity: 0.4; }

/* ===== CONTACT ===== */
.contact-wrap { padding: 60px 56px; }
.contact-grid { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.contact-info-col { flex: 1; min-width: 240px; }
.contact-info-col h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.contact-info-col h3 span { color: var(--gold); }
.c-info-item { display: flex; align-items: flex-start; gap: 14px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; transition: border-color 0.3s; }
.c-info-item:hover { border-color: var(--gold); }
.c-info-item .ci-icon { font-size: 1.4rem; }
.c-info-item h4 { color: var(--gold); font-size: 0.82rem; margin-bottom: 3px; }
.c-info-item p { color: var(--muted); font-size: 0.8rem; }
.c-info-item a { color: var(--muted); text-decoration: none; }
.contact-form-col { flex: 1.3; min-width: 280px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 16px; padding: 36px 30px; }
.contact-form-col h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.contact-form-col h3 span { color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.5px; }
.dob-row { display: flex; gap: 8px; }
.dob-select { flex: 1; min-width: 0; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text); font-size: 0.88rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #06001a; }
.form-success { margin-top: 16px; padding: 16px 20px; border-radius: 10px; font-size: 0.9rem; text-align: center; background: rgba(201,168,76,0.1); border: 1px solid var(--gold); color: var(--gold-light); animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.hidden { display: none; }

/* ===== ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #navbar { padding: 12px 20px; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: rgba(6,0,26,0.98); padding: 20px; gap: 18px; border-bottom: 1px solid var(--glass-border); }
  .hero-split { flex-direction: column; padding: 100px 24px 50px; text-align: center; }
  .hero-split-left .hero-desc { margin: 0 auto 28px; }
  .hero-cta-row { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-split-right { flex: none; width: 100%; display: flex; justify-content: center; padding-right: 0; }
  .astro-orb-wrap { width: 280px; height: 280px; }
  .orb-ring.r3, .orb-dot { display: none; }
  .section { padding: 60px 20px; }
  .spotlight-section { padding: 0 20px 60px; }
  .bio-grid { flex-direction: column; text-align: center; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); }
  .stats-bar { gap: 0; }
  .contact-wrap { padding: 40px 20px; }
  .contact-form-col { padding: 24px 18px; }
  footer { padding: 40px 20px 20px; }
  .timeline::before { left: 70px; }
  .faq-inner { flex-direction: column; }
  .cta-banner { padding: 60px 24px; }
}

/* ═══════════════════════════════════════════
   CREATIVE OVERHAUL — Vibrant Shiva Theme
═══════════════════════════════════════════ */

/* Richer section backgrounds */
.offer-section { background: linear-gradient(180deg, rgba(4,0,15,0.7), rgba(20,0,40,0.6)) !important; }
.spotlight-section .spotlight-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(4,0,15,0.95), rgba(255,107,26,0.06)) !important;
  border-color: rgba(245,200,66,0.2) !important;
  box-shadow: 0 0 80px rgba(124,58,237,0.15), inset 0 0 60px rgba(255,107,26,0.03) !important;
}
.spotlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-light), var(--saffron), var(--gold), transparent);
  z-index: 1;
}
.process-section { background: linear-gradient(180deg, rgba(20,0,40,0.5), rgba(4,0,15,0.7)) !important; }
.zodiac-section { background: linear-gradient(180deg, rgba(4,0,15,0.8), rgba(30,0,20,0.6)) !important; }
.testi-section { background: linear-gradient(180deg, rgba(20,0,40,0.6), rgba(4,0,15,0.8)) !important; }
.faq-section { background: linear-gradient(180deg, rgba(4,0,15,0.7), rgba(10,0,30,0.8)) !important; }

/* Offer cards — vibrant */
.offer-card {
  background: linear-gradient(145deg, rgba(124,58,237,0.07), rgba(4,0,15,0.85)) !important;
  border-color: rgba(245,200,66,0.1) !important;
}
.offer-card:hover {
  border-color: rgba(255,107,26,0.5) !important;
  box-shadow: 0 20px 50px rgba(124,58,237,0.25), 0 0 30px rgba(255,107,26,0.12) !important;
  transform: translateY(-10px) !important;
}
.offer-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.offer-card:hover::after { opacity: 1; }
.offer-icon { filter: drop-shadow(0 0 12px rgba(255,107,26,0.5)) !important; }

/* Process steps */
.process-step {
  background: linear-gradient(145deg, rgba(124,58,237,0.08), rgba(4,0,15,0.9)) !important;
  border-color: rgba(245,200,66,0.1) !important;
}
.process-step:hover {
  border-color: rgba(255,107,26,0.5) !important;
  box-shadow: 0 12px 40px rgba(124,58,237,0.2) !important;
}
.step-num { background: linear-gradient(135deg, var(--saffron), var(--gold)) !important; color: #1a0000 !important; }

/* Zodiac cards */
.z-card {
  background: linear-gradient(145deg, rgba(124,58,237,0.07), rgba(4,0,15,0.9)) !important;
  border-color: rgba(245,200,66,0.1) !important;
}
.z-card:hover {
  background: linear-gradient(145deg, rgba(255,107,26,0.1), rgba(124,58,237,0.1)) !important;
  border-color: var(--saffron) !important;
  box-shadow: 0 0 24px rgba(255,107,26,0.25) !important;
  color: var(--saffron-light) !important;
}
.z-card:hover span { color: var(--saffron-light) !important; }

/* Zodiac popup */
.zodiac-popup {
  background: linear-gradient(145deg, rgba(20,0,40,0.99), rgba(4,0,15,0.99)) !important;
  border-color: var(--saffron) !important;
  box-shadow: 0 0 80px rgba(255,107,26,0.3), 0 0 120px rgba(124,58,237,0.2) !important;
}

/* Testimonial cards */
.testi-card {
  background: linear-gradient(145deg, rgba(124,58,237,0.07), rgba(4,0,15,0.9)) !important;
  border-color: rgba(245,200,66,0.1) !important;
}
.testi-card:hover {
  border-color: rgba(255,107,26,0.4) !important;
  box-shadow: 0 12px 40px rgba(124,58,237,0.2) !important;
}
.testi-quote { color: var(--saffron) !important; opacity: 0.35 !important; }
.testi-avatar { background: linear-gradient(135deg, var(--saffron), var(--gold)) !important; }

/* FAQ */
.faq-item {
  background: linear-gradient(145deg, rgba(124,58,237,0.06), rgba(4,0,15,0.9)) !important;
  border-color: rgba(245,200,66,0.1) !important;
}
.faq-item:hover { border-color: rgba(255,107,26,0.4) !important; }
.faq-item.open { border-color: var(--saffron) !important; box-shadow: 0 0 20px rgba(255,107,26,0.1) !important; }

/* Numbers strip */
.numbers-strip {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(4,0,15,0.8), rgba(255,107,26,0.08)) !important;
  border-color: rgba(245,200,66,0.15) !important;
}
.num-item:hover { background: rgba(255,107,26,0.05) !important; }
.num-item strong { background: linear-gradient(135deg, var(--saffron-light), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(4,0,15,0.9), rgba(255,107,26,0.1)) !important;
  border-color: rgba(245,200,66,0.15) !important;
}
.cta-glow {
  background: radial-gradient(ellipse, rgba(255,107,26,0.12), rgba(245,200,66,0.06), transparent) !important;
  width: 600px !important; height: 300px !important;
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(4,0,15,0.98), rgba(10,0,25,1)) !important;
  border-color: rgba(245,200,66,0.12) !important;
}
.footer-logo { background: linear-gradient(90deg, var(--saffron-light), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Section tag — saffron accent */
.section-tag { color: var(--saffron-light) !important; letter-spacing: 4px; }

/* Orb rings — more vibrant */
.orb-ring.r1 { border-color: rgba(255,107,26,0.35) !important; }
.orb-ring.r2 { border-color: rgba(245,200,66,0.18) !important; }
.orb-ring.r3 { border-color: rgba(124,58,237,0.12) !important; }
.orb-dot { color: rgba(255,107,26,0.4) !important; }

/* Hero stats */
.hstat strong { background: linear-gradient(135deg, var(--saffron-light), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Spotlight avatar glow */
.spotlight-avatar span { filter: drop-shadow(0 0 28px rgba(255,107,26,0.7)) drop-shadow(0 0 50px rgba(245,200,66,0.3)) !important; }
.avatar-badge { background: linear-gradient(135deg, var(--saffron), var(--gold)) !important; box-shadow: 0 0 16px rgba(255,107,26,0.5) !important; }
.spotlight-tags span { background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(255,107,26,0.08)) !important; border-color: rgba(245,200,66,0.2) !important; color: var(--gold-light) !important; }
.spotlight-tags span:hover { border-color: var(--saffron) !important; color: var(--saffron-light) !important; }

/* Ticker */
.ticker { background: linear-gradient(90deg, rgba(124,58,237,0.08), rgba(255,107,26,0.06), rgba(124,58,237,0.08)) !important; }
.ticker-track span { color: var(--gold-light) !important; }

/* Responsive mobile nav bg */
@media (max-width: 900px) {
  .nav-links.open { background: rgba(4,0,15,0.99) !important; }
}

/* ===== SERVICE MODAL ===== */
.svc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 40px 20px;
}
.svc-modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
.svc-modal {
  background: linear-gradient(135deg, rgba(10,0,30,0.98), rgba(4,0,15,0.99));
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(124,58,237,0.3), 0 0 40px rgba(201,168,76,0.15);
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.svc-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,200,66,0.2);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.svc-modal-close:hover { background: rgba(245,200,66,0.15); transform: rotate(90deg); }
.svc-modal-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.svc-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-modal-body {
  padding: 36px 40px 40px;
}
.svc-modal-body h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--gold-light);
}
.svc-modal-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.svc-modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.svc-modal-highlights span {
  background: rgba(245,200,66,0.07);
  border: 1px solid rgba(245,200,66,0.22);
  color: var(--gold);
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.offer-card { cursor: pointer; }
.svc-detail-card { cursor: pointer; }
@media (max-width: 600px) {
  .svc-modal-img-wrap { height: 220px; }
  .svc-modal-body { padding: 24px 20px 28px; }
}
