/* ═══════════════════════════════════════════════════════
   ASTROLOGY WEBSITE – Pure CSS
   Updated: LIVE badges, testimonial photos, dual phones,
            nav call dropdown – all original styles intact
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --background:       hsl(270, 30%, 5%);
  --foreground:       hsl(45, 20%, 95%);
  --border:           hsl(270, 25%, 15%);
  --card:             hsl(270, 25%, 10%);
  --card-foreground:  hsl(45, 20%, 95%);
  --primary:          hsl(43, 90%, 55%);
  --primary-dark:     #e0aa3e;
  --secondary:        hsl(280, 60%, 20%);
  --muted:            hsl(270, 25%, 15%);
  --muted-foreground: hsl(270, 20%, 65%);
  --accent:           hsl(320, 80%, 55%);
  --radius:           0.75rem;

  --gold:   #f6d365;
  --gold2:  #ffb347;
  --pink:   #e91e8c;
  --pink2:  #c2185b;
  --purple: #9c27b0;
  --wa:     #25d366;
  --wa2:    #128c7e;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Outfit', sans-serif; background: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utilities ───────────────────────────────────────── */
.gold-gradient-text {
  background: linear-gradient(to right, #f6d365 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(26, 17, 33, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(224, 170, 62, 0.1);
  border-radius: var(--radius);
}

.glass-nav {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 170, 62, 0.2);
}

/* ── Announcement Bar ────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 36px;
  background: linear-gradient(90deg, #e91e8c 0%, #c2185b 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.announcement-text {
  display: inline-block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0 2rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Navbar ──────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 50;
  padding: 0 1.5rem;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-sun-icon {
  font-size: 1.6rem;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(246,211,101,0.7);
  animation: spinSlow 10s linear infinite;
  display: inline-block;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.navbar-logo-text {
  font-family: 'Noto Sans Devanagari', 'Mukta', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffb347;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.navbar-link {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 3px;
}
.navbar-link:hover,
.navbar-link.active { color: var(--gold); }
.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-lang-btns { display: flex; gap: 4px; }
.navbar-lang-btn {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.navbar-lang-btn.active,
.navbar-lang-btn:hover { background: rgba(246,211,101,0.15); border-color: var(--gold); color: var(--gold); }

/* ── Nav Call Dropdown ───────────────────────────────── */
.navbar-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 6px;
  background: var(--wa2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.navbar-wa-btn:hover { background: #075e54; }

.nav-call-dropdown { position: relative; }
.nav-call-trigger  { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; }

.nav-call-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(224,170,62,0.2);
  border-radius: 10px;
  min-width: 210px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-call-menu.open { display: block; }
.nav-call-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  transition: background 0.15s, color 0.15s;
}
.nav-call-menu a:hover { background: rgba(246,211,101,0.1); color: var(--gold); }
.nav-call-menu a i { width: 16px; text-align: center; }
.nav-call-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 2px 0;
}

/* ── Hamburger ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 5px;
  z-index: 1000;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Floating Right Strip ────────────────────────────── */
.floating-strip {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);
}
.fstrip-btn {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: filter 0.2s, transform 0.2s;
  font-size: 1.1rem;
}
.fstrip-btn:hover { filter: brightness(1.15); transform: scaleX(1.06); }
.fstrip-chat        { background: #d81b60; }
.fstrip-call        { background: var(--pink); }
.fstrip-call-outline {
  background: #2c003a;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fstrip-wa { background: #c8a600; }

/* ── HERO SECTION ────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(36px + 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,6,18,0.92) 0%, rgba(20,10,35,0.88) 40%, rgba(40,10,60,0.75) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex; align-items: center; gap: 3rem;
  width: 100%;
}
.hero-content { flex: 1; max-width: 600px; }

/* Stars */
.hero-star {
  position: absolute; border-radius: 50%; background: #fff;
  opacity: 0; animation: starTwinkle 3s ease-in-out infinite; z-index: 2;
}
@keyframes starTwinkle {
  0%,100% { opacity: 0; transform: scale(0.5); }
  50%     { opacity: 0.9; transform: scale(1.4); box-shadow: 0 0 6px 2px rgba(255,220,100,0.8); }
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(224,170,62,0.4);
  background: rgba(224,170,62,0.1);
  color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
}

/* Headings */
.hero-hindi-heading {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.25; color: #fff;
  text-shadow: 0 2px 20px rgba(200,100,255,0.3);
}
.hero-hindi-sub {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800; color: var(--gold);
  text-shadow: 0 0 20px rgba(246,211,101,0.5);
  letter-spacing: 0.01em;
}
.hero-trident  { color: #fff; margin: 0 4px; }
.hero-gold-star { color: var(--gold); }
.hero-hindi-small {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; color: #fff;
}
.hero-hindi-caption {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem); color: rgba(255,255,255,0.65);
}

/* Stats */
.hero-stats-row { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num  { font-size: 1.5rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-family: 'Noto Sans Devanagari','Mukta',sans-serif; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* CTA Buttons */
.hero-cta-row { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.hero-dual-call { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.hero-btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-radius: 50px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink2) 100%);
  color: #fff; font-size: 0.9rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(233,30,140,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  border: none; cursor: pointer;
}
.hero-btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,0.6); }
.hero-btn-call-2 {
  background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%) !important;
  box-shadow: 0 4px 24px rgba(156,39,176,0.45) !important;
}
.hero-btn-call-2:hover { box-shadow: 0 8px 30px rgba(156,39,176,0.6) !important; }

.hero-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 50px;
  background: transparent; color: #fff;
  font-size: 0.9rem; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  cursor: pointer;
}
.hero-btn-whatsapp:hover { background: rgba(37,211,102,0.15); border-color: var(--wa); transform: translateY(-2px); }

/* ── Hero Visual — Zodiac + Pandit ───────────────────── */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.zodiac-wrapper {
  position: relative;
  width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.zodiac-wheel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateWheel 30s linear infinite;
  /* Allow LIVE badges to render outside the element box */
  overflow: visible;
}
@keyframes rotateWheel {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.pandit-img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 340px; width: auto;
  z-index: 5;
  animation: floatPandit 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(200,100,255,0.4));
  object-fit: contain;
}
@keyframes floatPandit {
  0%,100% { transform: translateX(-50%) translateY(0px); }
  50%     { transform: translateX(-50%) translateY(-14px); }
}
.zodiac-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,100,255,0.15) 0%, transparent 70%);
  z-index: 3;
}

/* Scroll indicator */
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100% { top: 6px; opacity: 1; }
  80%     { top: 18px; opacity: 0.3; }
}

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 40vh;
  padding-top: calc(36px + 64px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 4rem 2rem 3rem;
}

/* ── SECTION BLOCKS ──────────────────────────────────── */
.section-block { padding: 5rem 0; }
.section-block#services { padding-top: 0; }
.section-dark  { background: rgba(0,0,0,0.25); }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  padding: 5px 16px; border-radius: 999px;
  border: 1px solid rgba(224,170,62,0.35);
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 0.8rem;
  text-align: center;
}
.section-title-gradient {
  background: linear-gradient(to right, #f6d365 0%, #fff 50%, #f6d365 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* ── SERVICES GRID ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(224,170,62,0.12); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.service-icon-gold   { background: rgba(246,211,101,0.15); color: var(--gold); }
.service-icon-pink   { background: rgba(233,30,140,0.15);  color: var(--pink); }
.service-icon-purple { background: rgba(156,39,176,0.15);  color: var(--purple); }
.service-card-title { font-family: 'Noto Sans Devanagari','Mukta',serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.service-card-desc  { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; flex: 1; }
.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  transition: gap 0.2s; margin-top: auto;
}
.service-cta:hover { gap: 10px; }

/* ── POSTS GRID (14 Post Cards) ───────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}
@media (max-width: 640px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.post-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(246, 211, 101, 0.3);
  border-color: var(--gold2);
}
.post-card-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-bottom: 2px solid var(--gold);
  background: #000;
}
@media (max-width: 640px) {
  .post-card-image { height: 150px; }
}
.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.95) 100%);
}
@media (max-width: 640px) {
  .post-card-content { padding: 1rem; }
}
.post-card-title {
  font-family: 'Noto Sans Devanagari', 'Mukta', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .post-card-title { font-size: 1rem; }
}
.post-card-desc {
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 640px) {
  .post-card-desc { font-size: 0.82rem; }
}
.post-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0d0618;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
  font-family: 'Noto Sans Devanagari', 'Mukta', sans-serif;
  border: none;
  cursor: pointer;
}
@media (max-width: 640px) {
  .post-card-btn { padding: 10px 16px; font-size: 0.85rem; }
}
.post-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 211, 101, 0.5);
}

/* ── WHY GRID ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(224,170,62,0.12);
  border-radius: var(--radius);
  padding: 2rem; text-align: center;
  transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon  { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }
.why-num   { font-family: 'Playfair Display',serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.why-label { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-text  {
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7;
  flex: 1; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem; margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(224,170,62,0.1);
}

/* Letter avatar (fallback) */
.testimonial-avatar {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  border: 2px solid var(--gold);
}

/* ── Testimonial profile photo ───────────────────────── */
.testimonial-photo {
  width: 55px; height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(246,211,101,0.3);
  display: block;
}

.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 700; color: #fff; font-size: 0.95rem; font-family: 'Noto Sans Devanagari','Mukta',sans-serif; line-height: 1.2; }
.testimonial-city {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  display: flex; align-items: center; gap: 4px;
}
.testimonial-city i { font-size: 0.65rem; color: var(--gold); }

/* ── CERTIFICATES ─────────────────────────────────────── */
.certificates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.certificate-card {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.certificate-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(224,170,62,0.15); }
.certificate-img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(224,170,62,0.3);
  object-fit: contain;
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.certificate-img:hover {
  transform: scale(1.02);
}
.certificate-caption { text-align: center; margin-top: 0.5rem; }

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}
.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.lightbox-close:hover {
  color: var(--gold);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.certificate-title {
  font-family: 'Noto Sans Devanagari','Mukta',serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.3rem;
}
.certificate-desc {
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(224,170,62,0.1); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 0.95rem; font-weight: 600;
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif;
  text-align: left;
}
.faq-icon { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(233,30,140,0.25) 0%, rgba(156,39,176,0.25) 100%);
  border-top: 1px solid rgba(233,30,140,0.2);
  border-bottom: 1px solid rgba(233,30,140,0.2);
  padding: 4rem 0;
}
.cta-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.cta-title { font-family: 'Playfair Display',serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
.cta-sub   { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1rem; }
.cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-intro-grid  { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
.about-img-wrap    { position: relative; display: flex; justify-content: center; }
.about-pandit-img  { width: 100%; max-width: 380px; border-radius: var(--radius); filter: drop-shadow(0 20px 40px rgba(200,100,255,0.3)); object-fit: contain; }
.about-badge-card  { position: absolute; bottom: -20px; right: 10px; padding: 1.2rem 1.5rem; text-align: center; min-width: 120px; }
.about-badge-num   { font-family: 'Playfair Display',serif; font-size: 2.2rem; font-weight: 800; }
.about-badge-label { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.about-para        { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.about-tags        { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.about-tag         { padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(224,170,62,0.3); background: rgba(224,170,62,0.08); color: var(--gold); font-size: 0.78rem; font-weight: 600; font-family: 'Noto Sans Devanagari','Mukta',sans-serif; }
.credentials-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cred-card         { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.mv-grid           { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card           { padding: 2.5rem; }
.mv-icon           { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.mv-title          { font-family: 'Playfair Display',serif; font-size: 1.4rem; color: #fff; margin-bottom: 1rem; }
.mv-text           { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.92rem; }
.stats-row         { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.stat-card         { text-align: center; padding: 1.5rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(224,170,62,0.1); border-radius: var(--radius); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-grid      { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.contact-info-value { font-weight: 700; color: #fff; font-size: 0.95rem; }
.contact-info-value:hover { color: var(--gold); }
.contact-info-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; font-family: 'Noto Sans Devanagari','Mukta',sans-serif; }
.contact-form-card  { padding: 2rem; }
.form-card-title    { font-family: 'Playfair Display',serif; font-size: 1.3rem; color: #fff; margin-bottom: 0.4rem; }
.form-card-sub      { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1.5rem; }
.contact-form       { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row           { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group         { display: flex; flex-direction: column; gap: 5px; }
.form-label         { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.req { color: var(--pink); }
.form-input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 10px 14px; color: #fff;
  font-size: 0.9rem; font-family: 'Noto Sans Devanagari','Mukta','Outfit',sans-serif;
  transition: border-color 0.2s, background 0.2s; outline: none; width: 100%;
}
.form-input:focus     { border-color: var(--gold); background: rgba(246,211,101,0.05); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-select { cursor: pointer; }
.form-select option { background: #1a0d22; color: #fff; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit-btn { width: 100%; justify-content: center; font-size: 1rem; border: none; cursor: pointer; }
.form-privacy-note { text-align: center; font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.form-privacy-note i { margin-right: 4px; }
.form-success-msg, .form-error-msg {
  padding: 1rem 1.2rem; border-radius: 8px;
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.88rem;
}
.form-success-msg { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #4cdf87; }
.form-error-msg   { background: rgba(255,50,50,0.12);  border: 1px solid rgba(255,50,50,0.3);  color: #ff7070; }
.form-success-msg i, .form-error-msg i { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.quick-card { padding: 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; transition: transform 0.25s; }
.quick-card:hover { transform: translateY(-4px); }
.quick-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; margin-bottom: 0.3rem; }
.quick-card h3 { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
.quick-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-family: 'Outfit',sans-serif; }
.quick-tag     { padding: 3px 12px; border-radius: 999px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55); font-size: 0.72rem; font-family: 'Noto Sans Devanagari','Mukta',sans-serif; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(224,170,62,0.15); padding-bottom: 4.5rem; }
.footer-top  { max-width: 1200px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-tagline { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link.wa:hover { border-color: var(--wa); color: var(--wa); }
.footer-heading { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-list li { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; color: rgba(255,255,255,0.5); font-size: 0.82rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }
.footer-contact-list a { color: inherit; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem; text-align: center; }
.footer-bottom p { font-family: 'Noto Sans Devanagari','Mukta',sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { margin-top: 0.3rem; }

/* ── MOBILE BOTTOM NAV ───────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(9,9,11,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(224,170,62,0.15);
  z-index: 90;
}
.mob-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; flex: 1; height: 100%; color: #fff;
  font-size: 0.62rem; font-family: 'Outfit',sans-serif; font-weight: 600;
  transition: background 0.2s;
}
.mob-nav-btn i { font-size: 1rem; }
.mob-call    { background: rgba(233,30,140,0.85); }
.mob-wa      { background: rgba(18,140,126,0.85); }
.mob-contact { background: rgba(156,39,176,0.85); }
.mob-nav-btn:hover { filter: brightness(1.15); }

/* ── AOS scroll animations ───────────────────────────── */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-down"]  { transform: translateY(-30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1; transform: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: repeat(2,1fr); }
  .posts-grid        { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .stats-row         { grid-template-columns: repeat(3,1fr); }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .about-intro-grid  { gap: 2.5rem; }
  .hero-visual       { width: 360px; height: 360px; }
  .zodiac-wrapper    { width: 360px; height: 360px; }
  .pandit-img        { height: 290px; }
  .zodiac-wheel      { width: 340px; height: 340px; }
}

@media (max-width: 768px) {
  .nav-links      { display: none !important; }
  .nav-hamburger  { display: flex !important; }
  .nav-lang-btns  { display: none !important; }
  .nav-right      { display: flex !important; }
  .nav-call-dropdown { display: none !important; }
  .nav-container  { padding: 0 1rem; }
  .nav-logo       { flex: 1; }
  .nav-hamburger  { 
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    pointer-events: auto !important;
  }
  .nav-right {
    pointer-events: auto !important;
  }

  .nav-links.open {
    display: flex !important; flex-direction: column;
    position: fixed;
    top: calc(36px + 64px); left: 0; right: 0;
    background: rgba(9,9,11,0.97);
    backdrop-filter: blur(16px);
    padding: 2rem 1.5rem; gap: 1.2rem;
    border-bottom: 1px solid rgba(224,170,62,0.15);
    z-index: 1000;
  }

  .hero-inner {
    flex-direction: column-reverse;
    padding: 2rem 1.5rem 3rem; gap: 1.5rem;
  }
  .hero-content  { max-width: 100%; }
  .hero-visual   { width: 280px; height: 280px; }
  .zodiac-wrapper { width: 280px; height: 280px; }
  .pandit-img    { height: 220px; }
  .zodiac-wheel  { width: 250px; height: 250px; }

  .hero-dual-call { flex-direction: column; }
  .hero-btn-call, .hero-btn-whatsapp { width: 100%; justify-content: center; font-size: 0.88rem; padding: 12px 18px; }

  /* Testimonial photo responsive */
  .testimonial-photo { width: 50px; height: 50px; }
  .testimonial-avatar { width: 50px; height: 50px; font-size: 1.1rem; }

  .services-grid     { grid-template-columns: 1fr; }
  .posts-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .quick-contact-grid { grid-template-columns: 1fr; }
  .stats-row         { grid-template-columns: repeat(2,1fr); }
  .about-intro-grid  { grid-template-columns: 1fr; }
  .about-img-side    { order: -1; }
  .mv-grid           { grid-template-columns: 1fr; }
  .credentials-grid  { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; }

  .floating-strip { top: auto; bottom: 70px; transform: none; border-radius: 10px 0 0 10px; }
  .mobile-bottom-nav { display: flex; }
  .section-block { padding: 3.5rem 0; }

  .nav-call-menu { right: auto; left: 0; }
}

@media (max-width: 480px) {
  .why-grid  { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .hero-stats-row { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .hero-stat-divider { display: none; }
  .zodiac-wheel { width: 220px; height: 220px; }
  .hero-visual   { width: 240px; height: 240px; }
  .zodiac-wrapper { width: 240px; height: 240px; }
  .pandit-img    { height: 190px; }
}
