/*
Theme Name: Hello Child
Template: hello-elementor
Version: 2.0
Description: Premium Pandit Subhash Chandra â€” Luxury Astrology Website
*/

/* =========================================
   DESIGN TOKENS
========================================= */
:root {
  --bg:          #FFFFFF;
  --bg-alt:      #F8F9FA;
  --gold:        #D4AF37;
  --gold-hover:  #e6c34d;
  --saffron:     #F59E0B;
  --white:       #111111; /* Now used for primary text (dark) */
  --muted:       #555555;
  --border:      rgba(0,0,0,0.08);
  --border-gold: rgba(212,175,55,0.25);

  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      24px;
  --radius-sm:   12px;
  --radius-pill: 50px;

  --shadow:      0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);

  --ease:        cubic-bezier(0.4,0,0.2,1);
  --transition:  all 0.35s var(--ease);

  --container:   1140px;
  --section-pad: 100px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

body.premium-homepage {
  background: var(--bg) !important;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.gold-text {
  color: var(--gold);
}

/* =========================================
   SECTION HEADERS
========================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================
   BUTTONS
========================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
  color: #000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(0,0,0,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  color: #fff;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal[data-reveal="up"] {
  transform: translateY(40px);
}
.reveal[data-reveal="left"] {
  transform: translateX(-40px);
}
.reveal[data-reveal="right"] {
  transform: translateX(40px);
}
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
   HEADER
========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  z-index: 10;
}

.logo-icon {
  font-size: 28px;
  color: var(--gold);
}

.header-nav ul {
  display: flex;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.header-nav a:hover {
  color: var(--white);
}
.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes glow-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.trust-item span {
  font-size: 13px;
  color: var(--muted);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Image */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  border: 2px solid var(--border-gold);
}

.hero-aura {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  animation: aura-breathe 4s ease-in-out infinite alternate;
}

@keyframes aura-breathe {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
}

.hero-ring-1 {
  width: 115%;
  height: 115%;
  border: 1px dashed rgba(212,175,55,0.2);
  animation: spin-slow 80s linear infinite;
}

.hero-ring-2 {
  width: 130%;
  height: 130%;
  border: 1px dotted rgba(212,175,55,0.1);
  animation: spin-slow 120s linear infinite reverse;
}

@keyframes spin-slow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================================
   TRUST STATS
========================================= */
.stats-section {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}

/* =========================================
   SERVICES
========================================= */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: block;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.svc-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.service-card:hover .svc-img {
  transform: scale(1.05);
}

.svc-body {
  padding: 28px;
}

.svc-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-body p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.svc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .svc-link {
  letter-spacing: 1px;
}

/* =========================================
   ABOUT
========================================= */
.about-section {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}

.about-exp-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #000;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-exp-badge span {
  font-size: 14px;
  font-weight: 600;
}

.about-content .section-tag {
  display: block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content > p {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about-hl {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}

.hl-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.about-hl strong {
  font-family: var(--font-head);
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.about-hl p {
  font-size: 14px;
  color: var(--muted);
}

.about-signature {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.signature-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}

.signature-title {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* =========================================
   WHY CHOOSE US (Glassmorphism)
========================================= */
.whyus-section {
  background: var(--bg);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.whyus-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.whyus-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background: #FFF;
}

.wc-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.whyus-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.whyus-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   VIDEO TESTIMONIALS
========================================= */
.videos-section {
  background: var(--bg-alt);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: var(--transition);
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #FFF;
}

.video-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  padding: 20px 24px 8px;
}

.video-card > p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 24px 24px;
}

/* =========================================
   CUSTOMER REVIEWS
========================================= */
.reviews-section {
  background: var(--bg);
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 380px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--border-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
}

.review-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
}

.review-author span {
  font-size: 13px;
  color: var(--muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.rev-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

/* =========================================
   PROCESS
========================================= */
.process-section {
  background: var(--bg-alt);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 20px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  align-self: center;
  margin-top: -40px;
}

/* =========================================
   BLOG
========================================= */
.blog-section {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
}

.blog-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-body {
  padding: 28px;
}

.blog-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--white) !important;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-body h3 {
  color: var(--gold) !important;
}

.blog-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-date {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
}

/* =========================================
   FAQ
========================================= */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(0,0,0,0.15);
}
.faq-item.active {
  border-color: var(--border-gold);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* =========================================
   FINAL CTA
========================================= */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 50%, #e8a318 100%);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-highlight {
  position: relative;
}
.cta-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(0,0,0,0.7);
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.footer-social a:hover svg {
  fill: #000;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col a {
  font-size: 15px;
  color: var(--muted);
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-contact strong {
  display: block;
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  margin-bottom: 2px;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
}
.footer-legal a:hover {
  color: var(--gold);
}

/* =========================================
   FLOATING BAR
========================================= */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 14px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.floating-bar.visible {
  transform: translateY(0);
}

.floating-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.float-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--gold);
}

.float-info span {
  font-size: 13px;
  color: var(--muted);
}

/* =========================================
   RESPONSIVE â€” TABLET
========================================= */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-inner {
    gap: 40px;
  }

  .services-grid,
  .blog-grid,
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-connector {
    display: none;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cta-section h2 {
    font-size: 40px;
  }
}

/* =========================================
   RESPONSIVE â€” MOBILE
========================================= */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  /* Header Mobile */
  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    z-index: 5;
    padding: 100px 32px 40px;
    flex-direction: column;
  }
  .header-nav.open {
    display: flex;
  }
  .header-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .header-nav li {
    border-bottom: 1px solid var(--border);
  }
  .header-nav a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    color: var(--white);
  }
  .header-nav a::after { display: none; }

  .header-actions .btn-gold { display: none; }
  .menu-toggle { display: flex; }

  /* Hero Mobile */
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-title {
    font-size: 36px;
    letter-spacing: 0;
  }
  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .trust-divider { display: none; }

  .hero-image-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Grids Mobile */
  .stats-grid,
  .whyus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .services-grid,
  .blog-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 300px;
  }

  .cta-section {
    padding: 80px 0;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn-dark,
  .cta-btns .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .floating-inner {
    gap: 12px;
  }
  .float-info span {
    display: none;
  }

  body.premium-homepage {
    padding-bottom: 70px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 260px; }
}

/* =========================================
   GOLD PARTICLE DOTS (CSS-only)
========================================= */
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle 8s ease-in-out infinite;
}

.hero-particles::before {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  right: 20%;
  animation-delay: 4s;
  width: 3px;
  height: 3px;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25%      { transform: translate(20px, -30px); opacity: 0.8; }
  50%      { transform: translate(-10px, -50px); opacity: 0.4; }
  75%      { transform: translate(15px, -20px); opacity: 0.7; }
}

/* Hide Elementor stuff on homepage */
body.premium-homepage .elementor-location-header,
body.premium-homepage .elementor-location-footer,
body.premium-homepage .site-header-elementor,
body.premium-homepage #content {
  display: none !important;
}

/* =========================================
   ABOUT PAGE (page-about.php)
========================================= */
body.premium-about-page {
  background: var(--bg) !important;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body.premium-about-page .elementor-location-header,
body.premium-about-page .elementor-location-footer,
body.premium-about-page .site-header-elementor,
body.premium-about-page #content {
  display: none !important;
}

.page-about-main {
  padding-top: 0;
}

/* ---------- About Hero ---------- */
.abt-hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

.abt-hero-title {
  font-family: var(--font-head);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -1px;
}

.abt-hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.abt-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Expertise Grid ---------- */
.abt-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.abt-exp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.abt-exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.abt-exp-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  background: rgba(212,175,55,0.05);
  transition: var(--transition);
}

.abt-exp-card:hover .abt-exp-icon {
  background: rgba(212,175,55,0.1);
  transform: scale(1.08);
}

.abt-exp-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.abt-exp-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Journey Timeline ---------- */
.abt-journey {
  background: var(--bg);
}

.abt-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

/* Vertical connector line */
.abt-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.15));
}

.abt-tl-item {
  position: relative;
  padding-bottom: 48px;
}

.abt-tl-item:last-child {
  padding-bottom: 0;
}

/* Circle dot on the line */
.abt-tl-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
  z-index: 2;
}

.abt-tl-year {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.abt-tl-content {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  transition: var(--transition);
}

.abt-tl-content:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow);
}

.abt-tl-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.abt-tl-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Responsive â€” Tablet ---------- */
@media (max-width: 1024px) {
  .abt-hero-title {
    font-size: 52px;
  }

  .abt-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Responsive â€” Mobile ---------- */
@media (max-width: 768px) {
  .abt-hero {
    padding: 140px 0 80px;
  }

  .abt-hero-title {
    font-size: 38px;
    letter-spacing: 0;
  }

  .abt-hero-subtitle {
    font-size: 16px;
  }

  .abt-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .abt-hero-btns .btn-gold,
  .abt-hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .abt-expertise-grid {
    grid-template-columns: 1fr;
  }

  .abt-timeline {
    padding-left: 50px;
  }

  .abt-timeline::before {
    left: 18px;
  }

  .abt-tl-item::before {
    left: -44px;
    width: 12px;
    height: 12px;
  }

  .abt-tl-content {
    padding: 22px 24px;
  }
}

/* =========================================
   SERVICES PAGE (page-services.php)
========================================= */
body.premium-services-page {
  background-color: #F5EFE6 !important;
  color: #6E4D37;
  font-family: var(--font-body);
}

.premium-services-page .site-header.scrolled {
  background: rgba(245,239,230,0.95);
}

/* Hide Elementor stuff on Services page too */
body.premium-services-page .elementor-location-header,
body.premium-services-page .elementor-location-footer,
body.premium-services-page .site-header-elementor,
body.premium-services-page #content {
  display: none !important;
}

.page-services-main {
  padding-top: 140px; /* Account for fixed header */
}

.premium-services-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F5EFE6;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.ps-header {
  text-align: center;
  margin-bottom: 40px;
}

.ps-title {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(90deg, #5B1D00, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: 1.1;
}

.ps-subtitle {
  font-size: 18px;
  color: #7A5B45;
  margin: 0 auto;
  max-width: 600px;
}

/* Filters */
.ps-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.ps-filter-btn {
  background: transparent !important;
  background-color: transparent !important;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #7A5B45;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}

.ps-filter-btn:hover {
  color: #D97706;
  background-color: transparent !important;
}

.ps-filter-btn.active {
  color: #D97706;
  font-weight: 600;
  background-color: transparent !important;
}

.ps-filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D97706;
  transition: width 0.3s ease;
}

.ps-filter-btn.active::after {
  width: 100%;
}

/* Grid */
.ps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.ps-card {
  background: #F2E6D5;
  border: 1px solid #E9A23B;
  border-left: 4px solid #F59E0B;
  border-radius: 0px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ps-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Filtering classes */
.ps-card.hide {
  display: none;
}

/* Label */
.ps-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  color: #8B5E3C;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245,158,11,0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Icon */
.ps-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #D97706;
  background: rgba(217,119,6,0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ps-card:hover .ps-icon {
  transform: scale(1.05);
  background: rgba(217,119,6,0.1);
}

/* Content */
.ps-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #4A1D00;
  line-height: 1.3;
  margin: 0 0 12px 0;
  text-align: center;
}

.ps-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #6E4D37;
  margin: 0 0 25px 0;
  text-align: center;
  flex-grow: 1; /* Pushes button to bottom */
}

/* Button */
.ps-btn {
  width: 100%;
  height: 48px;
  border: 1px solid #7A2E00;
  background: transparent;
  color: #5B1D00;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 0;
}

.ps-btn:hover {
  background: #7A2E00;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .ps-title {
    font-size: 46px;
  }
  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ps-title {
    font-size: 36px;
  }
  .ps-filters {
    gap: 15px;
    justify-content: center;
  }
  .ps-filter-btn {
    font-size: 14px;
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
  .premium-services-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}/* =========================================
   REPORTS PAGE STYLES
========================================= */
body.premium-reports-page {
  background: var(--bg) !important;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-reports-page .elementor-location-header,
body.premium-reports-page .elementor-location-footer,
body.premium-reports-page .site-header-elementor,
body.premium-reports-page #content {
  display: none !important;
}
.reports-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}
.reports-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.reports-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.reports-hero-subtitle {
  font-size: 18px;
  color: var(--muted);
}
.report-detail-section {
  position: relative;
  border-top: 1px solid var(--border);
}
.report-detail-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: flex-start;
}
.report-detail-grid.reverse {
  grid-template-columns: 6fr 4fr;
}
.report-detail-image {
  position: sticky;
  top: 120px;
}
.rd-image-wrapper {
  background: linear-gradient(145deg, #fff, #f8f9fa);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rd-icon-large {
  color: var(--gold);
  margin-bottom: 30px;
}
.rd-price-badge {
  background: var(--white);
  color: #fff;
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.rd-currency {
  font-size: 20px;
  color: var(--saffron);
  margin-right: 5px;
  vertical-align: super;
}
.report-detail-content h2 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.2;
}
.rd-qa-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rd-qa-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.rd-qa-box h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 15px;
}
.rd-qa-box p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}
.rd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rd-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--muted);
}
.rd-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}
.rd-list li:last-child {
  margin-bottom: 0;
}
.rd-actions {
  margin-top: 40px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}
.cta-section {
  padding: 100px 0;
  background: var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-highlight {
  color: var(--saffron);
}
.cta-inner p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .report-detail-grid,
  .report-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .report-detail-image {
    position: static;
  }
  .rd-image-wrapper {
    padding: 60px 20px;
  }
}

/* =========================================
   CONSULTATION PAGE STYLES
========================================= */
body.premium-consultation-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-consultation-page .elementor-location-header,
body.premium-consultation-page .elementor-location-footer,
body.premium-consultation-page .site-header-elementor,
body.premium-consultation-page #content {
  display: none !important;
}

/* --- Consultation Utility Classes --- */
.consult-gold { color: #D97706; }
.consult-gold-light { color: #E9A23B; }
.section-title-consult {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-sub-consult {
  font-size: 17px;
  color: #7A5B45;
  max-width: 620px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }
.consult-badge {
  display: inline-block;
  background: rgba(217,119,6,0.12);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.consult-badge.light {
  background: rgba(233,162,59,0.15);
  color: #E9A23B;
}

/* --- HERO --- */
.consult-hero {
  position: relative;
  padding: 180px 0 110px;
  text-align: center;
  background: #F5EFE6;
  overflow: hidden;
}
.consult-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(217,119,6,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.consult-hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.consult-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #3A1400;
  margin-bottom: 24px;
}
.consult-hero-sub {
  font-size: 18px;
  color: #7A5B45;
  max-width: 640px;
  margin: 0 auto 40px;
}
.consult-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
.consult-trust-item { text-align: center; }
.consult-trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #D97706;
}
.consult-trust-item span { font-size: 14px; color: #7A5B45; }
.consult-trust-divider {
  width: 1px; height: 40px;
  background: rgba(74,29,0,0.15);
}
.consult-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn-consult-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(217,119,6,0.35);
  border: none; cursor: pointer;
}
.btn-consult-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217,119,6,0.45);
}
.btn-consult-primary.btn-sm { padding: 12px 28px; font-size: 14px; }
.btn-consult-primary.btn-lg { padding: 18px 48px; font-size: 17px; }
.btn-consult-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
.btn-consult-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37,211,102,0.4);
}
.btn-consult-whatsapp.btn-lg { padding: 18px 48px; font-size: 17px; }
.btn-consult-outline {
  display: inline-block;
  background: transparent;
  color: #D97706;
  border: 2px solid #D97706;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-consult-outline:hover {
  background: #D97706; color: #fff;
  transform: translateY(-2px);
}

/* --- PACKAGES --- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.pkg-card {
  background: #F2E6D5;
  border: 1px solid #E9A23B;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.pkg-card-inner { padding: 40px; }
.pkg-icon-area { margin-bottom: 24px; }
.pkg-icon {
  width: 72px; height: 72px;
  background: rgba(217,119,6,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.pkg-content h3 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700;
  color: #3A1400; margin-bottom: 12px;
}
.pkg-desc {
  font-size: 15px; color: #7A5B45;
  margin-bottom: 24px; line-height: 1.6;
}
.pkg-options { margin-bottom: 24px; }
.pkg-option-group { margin-bottom: 14px; }
.pkg-option-label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7A5B45;
  margin-bottom: 8px;
}
.pkg-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pkg-pill {
  padding: 6px 18px;
  border: 1px solid rgba(74,29,0,0.15);
  border-radius: 50px;
  font-size: 13px; font-weight: 500;
  color: #7A5B45;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pkg-pill.active, .pkg-pill:hover {
  background: #D97706; color: #fff;
  border-color: #D97706;
}
.pkg-includes {
  list-style: none; padding: 0; margin: 0 0 30px;
}
.pkg-includes li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px; color: #4A1D00;
  border-bottom: 1px solid rgba(74,29,0,0.06);
}
.pkg-includes li:last-child { border-bottom: none; }
.pkg-includes li::before {
  content: '?';
  position: absolute; left: 0; top: 8px;
  color: #D97706; font-weight: 700;
}
.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pkg-price-label {
  display: block;
  font-size: 12px; color: #7A5B45;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pkg-price-value {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 700;
  color: #D97706;
}

/* --- PREMIUM SESSION (Dark) --- */
.premium-session {
  background: #1A0D05;
  padding: 100px 0;
  overflow: hidden;
}
.premium-session-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.premium-session-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(217,119,6,0.4);
}
.premium-session-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.premium-session-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,13,5,0.7) 100%);
  pointer-events: none;
}
.premium-session-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.premium-session-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 30px;
  line-height: 1.7;
}
.premium-benefits-list {
  list-style: none; padding: 0; margin: 0 0 35px;
}
.premium-benefits-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.premium-benefits-list li:last-child { border-bottom: none; }
.pb-icon { color: #E9A23B; font-size: 16px; }
.premium-price { margin-bottom: 30px; }
.premium-price-from {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.premium-price-value {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 700;
  color: #E9A23B;
}
.btn-premium-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #D97706, #92400E);
  color: #fff;
  padding: 16px 44px; border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(217,119,6,0.4);
  border: 1px solid rgba(233,162,59,0.3);
}
.btn-premium-reserve:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217,119,6,0.5);
}

/* --- SPECIALIZED SERVICES --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-card {
  background: #F2E6D5;
  border-left: 4px solid #D97706;
  border-radius: 0 18px 18px 0;
  padding: 30px 24px;
  transition: all 0.3s ease;
}
.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.spec-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.spec-card h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: #3A1400;
  margin-bottom: 8px;
}
.spec-card p {
  font-size: 14px; color: #7A5B45;
  line-height: 1.5; margin: 0;
}

/* --- BUSINESS CONSULTATION --- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.biz-card {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 18px;
  padding: 36px;
  transition: all 0.3s ease;
}
.biz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.biz-card-icon { margin-bottom: 20px; }
.biz-card h4 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 600;
  color: #3A1400; margin-bottom: 16px;
}
.biz-list {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.biz-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px; color: #7A5B45;
}
.biz-list li::before {
  content: '?'; position: absolute;
  left: 0; color: #D97706;
}
.biz-link {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600;
  color: #D97706; text-decoration: none;
  transition: color 0.2s;
}
.biz-link:hover { color: #92400E; }

/* --- VASTU --- */
.vastu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.vastu-card {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.15);
  border-radius: 18px;
  padding: 40px;
  transition: all 0.3s ease;
}
.vastu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.vastu-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.vastu-card-header h4 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 600;
  color: #3A1400; margin: 0;
}
.vastu-list {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.vastu-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px; color: #7A5B45;
  border-bottom: 1px solid rgba(74,29,0,0.06);
}
.vastu-list li:last-child { border-bottom: none; }
.vastu-list li::before {
  content: '?'; position: absolute;
  left: 0; top: 8px; color: #D97706;
  font-weight: 700;
}

/* --- WHAT YOU RECEIVE --- */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.receive-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 15px; font-weight: 500;
  color: #3A1400;
  transition: all 0.3s ease;
}
.receive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.receive-check {
  width: 32px; height: 32px;
  background: rgba(217,119,6,0.12);
  color: #D97706;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}

/* --- BENEFITS (Dark Glassmorphism) --- */
.benefits-dark {
  background: #1A0D05;
  padding: 100px 0;
}
.benefits-dark-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.benefit-glass:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.benefit-glass-icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.benefit-glass h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: #fff; margin-bottom: 10px;
}
.benefit-glass p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6; margin: 0;
}

/* --- PROCESS TIMELINE --- */
.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #D97706, rgba(217,119,6,0.15));
}
.process-step {
  display: flex; gap: 30px;
  margin-bottom: 50px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(217,119,6,0.3);
}
.process-content {
  padding-top: 8px;
}
.process-content h4 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 600;
  color: #3A1400; margin-bottom: 8px;
}
.process-content p {
  font-size: 15px; color: #7A5B45;
  line-height: 1.6; margin: 0;
}

/* --- FAQ (Consult) --- */
.faq-list-consult {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item-consult {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item-consult:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.faq-q-consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px; font-weight: 600;
  color: #3A1400;
  text-align: left;
  transition: color 0.2s;
}
.faq-q-consult:hover { color: #D97706; }
.faq-icon-consult {
  font-size: 24px;
  color: #D97706;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-a-consult {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item-consult.active .faq-a-consult {
  max-height: 300px;
  padding: 0 28px 22px;
}
.faq-item-consult.active .faq-icon-consult {
  transform: rotate(45deg);
}
.faq-a-consult p {
  font-size: 15px;
  color: #7A5B45;
  line-height: 1.7;
  margin: 0;
}

/* --- FINAL CTA --- */
.final-cta-consult {
  position: relative;
  background: #1A0D05;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 2;
}
.final-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.final-cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .receive-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-session-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .vastu-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .receive-grid { grid-template-columns: 1fr 1fr; }
  .consult-trust-row { gap: 20px; }
  .consult-trust-item strong { font-size: 28px; }
  .process-step { gap: 20px; }
  .process-number { width: 50px; height: 50px; font-size: 16px; }
  .process-line { left: 24px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .receive-grid { grid-template-columns: 1fr; }
  .consult-hero { padding: 140px 0 80px; }
  .pkg-card-inner { padding: 28px; }
  .pkg-price-row { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   PREMIUM CONSULTATION PAGE V2
========================================= */

/* --- Gold Gradient Text --- */
.c-gold-grad {
  background: linear-gradient(135deg, #F59E0B, #D97706, #B45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Layout --- */
.c-section { padding: 100px 0; }
.c-section--cream { background: #FAFAF9; }
.c-section--white { background: #FFFFFF; }
.c-section-deco--top {
  height: 80px;
  background: linear-gradient(180deg, #0F0A05 0%, transparent 100%);
  margin-top: -1px;
}
.c-section-head { text-align: center; margin-bottom: 60px; }
.c-section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #1A0D05;
  margin-bottom: 16px;
  line-height: 1.15;
}
.c-section-head p {
  font-size: 17px;
  color: #7A5B45;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.c-section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #D97706;
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}
.c-section-tag::before, .c-section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #D97706, transparent);
}
.c-section-tag::before { right: 100%; }
.c-section-tag::after { left: 100%; transform: rotate(180deg); }

/* --- Buttons --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 60px;
  padding: 14px 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.c-btn--gold {
  background: linear-gradient(135deg, #F59E0B, #D97706, #B45309);
  color: #fff;
  box-shadow: 0 8px 30px rgba(217,119,6,0.4);
}
.c-btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(217,119,6,0.55);
  color: #fff;
}
.c-btn--gold-outline {
  background: transparent;
  color: #F59E0B;
  border: 2px solid rgba(245,158,11,0.5);
}
.c-btn--gold-outline:hover {
  background: rgba(245,158,11,0.1);
  border-color: #F59E0B;
  color: #F59E0B;
  transform: translateY(-3px);
}
.c-btn--outline {
  background: transparent;
  color: #D97706;
  border: 2px solid #D97706;
}
.c-btn--outline:hover {
  background: #D97706;
  color: #fff;
  transform: translateY(-3px);
}
.c-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.c-btn--wa:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.45);
  color: #fff;
}
.c-btn--sm { padding: 12px 28px; font-size: 14px; }
.c-btn--lg { padding: 18px 48px; font-size: 16px; }

/* --- HERO V2 (Dark Premium) --- */
.c-hero {
  position: relative;
  padding: 180px 0 120px;
  background: #0F0A05;
  text-align: center;
  overflow: hidden;
}
.c-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,119,6,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(180,83,9,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.c-hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(245,158,11,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(245,158,11,0.2), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(245,158,11,0.25), transparent),
    radial-gradient(2px 2px at 80% 60%, rgba(245,158,11,0.15), transparent),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(233,162,59,0.2), transparent),
    radial-gradient(1.5px 1.5px at 90% 40%, rgba(233,162,59,0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.1), transparent);
  animation: c-twinkle 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes c-twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.c-hero-ornament {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(217,119,6,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.c-hero-ornament--left { top: 10%; left: -150px; }
.c-hero-ornament--right { bottom: 5%; right: -150px; }
.c-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.c-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 32px;
}
.c-hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.c-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.c-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
.c-stat { text-align: center; }
.c-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #F59E0B, #E9A23B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.c-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(245,158,11,0.3), transparent);
}
.c-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- PACKAGES V2 --- */
.c-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-pkg {
  position: relative;
  background: #FFFCF7;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 20px;
  padding: 40px 32px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.c-pkg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D97706, #F59E0B);
  border-radius: 0 0 4px 4px;
}
.c-pkg:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(217,119,6,0.2);
}
.c-pkg-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px 6px 14px;
  border-radius: 4px 0 0 4px;
}
.c-pkg-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border: 4px solid transparent;
  border-top-color: #92400E;
  border-right-color: #92400E;
}
.c-pkg-icon {
  font-size: 40px;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: rgba(217,119,6,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pkg h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #1A0D05;
  margin-bottom: 10px;
}
.c-pkg-desc {
  font-size: 14px;
  color: #7A5B45;
  line-height: 1.6;
  margin-bottom: 20px;
}
.c-pkg-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.c-pill {
  padding: 8px 20px;
  border: 1.5px solid rgba(74,29,0,0.12);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #7A5B45;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
}
.c-pill.active, .c-pill:hover {
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  border-color: #D97706;
  box-shadow: 0 4px 15px rgba(217,119,6,0.3);
}
.c-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.c-pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: #4A1D00;
  border-bottom: 1px solid rgba(74,29,0,0.05);
}
.c-pkg-features li:last-child { border-bottom: none; }
.c-check {
  width: 22px;
  height: 22px;
  background: rgba(217,119,6,0.1);
  color: #D97706;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.c-pkg-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(74,29,0,0.06);
  flex-wrap: wrap;
}
.c-pkg-from {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7A5B45;
}
.c-pkg-amount {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: #D97706;
}

/* --- PREMIUM SECTION --- */
.c-premium {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0F0A05 0%, #1A0D05 50%, #0F0A05 100%);
  overflow: hidden;
}
.c-premium-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(217,119,6,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.c-premium-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.c-premium-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.c-premium-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.c-premium-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.c-premium-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.c-sparkle { color: #F59E0B; }
.c-premium-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.c-premium-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, #F59E0B, #E9A23B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-premium-dur {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

/* --- SPECIALIZED GRID --- */
.c-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.c-spec {
  background: #FFFCF7;
  border: 1px solid rgba(217,119,6,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.c-spec::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D97706, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-spec:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.c-spec:hover::after { opacity: 1; }
.c-spec-icon { font-size: 36px; margin-bottom: 16px; }
.c-spec h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #1A0D05;
  margin-bottom: 8px;
}
.c-spec p {
  font-size: 14px;
  color: #7A5B45;
  line-height: 1.55;
  margin: 0;
}

/* --- VASTU GRID --- */
.c-vastu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.c-vastu {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.35s ease;
}
.c-vastu:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.c-vastu-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.c-vastu-emoji { font-size: 32px; }
.c-vastu h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #1A0D05;
  margin: 0;
}
.c-vastu > p {
  font-size: 14px;
  color: #7A5B45;
  line-height: 1.6;
  margin-bottom: 20px;
}
.c-vastu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.c-vastu-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: #4A1D00;
  border-bottom: 1px solid rgba(74,29,0,0.05);
}
.c-vastu-list li:last-child { border-bottom: none; }
.c-vastu-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  color: #D97706;
  font-weight: 700;
}

/* --- RECEIVE GRID --- */
.c-receive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.c-receive-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFCF7;
  border: 1px solid rgba(217,119,6,0.1);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1A0D05;
  transition: all 0.3s ease;
}
.c-receive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.c-receive-icon { font-size: 18px; flex-shrink: 0; }

/* --- BENEFITS (Glassmorphism Dark) --- */
.c-benefits {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0F0A05, #1A0D05);
  overflow: hidden;
}
.c-benefits-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.c-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.c-benefit {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
}
.c-benefit:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(245,158,11,0.2);
}
.c-benefit-icon { font-size: 40px; margin-bottom: 18px; }
.c-benefit h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.c-benefit p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* --- PROCESS V2 --- */
.c-process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.c-process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 16px;
}
.c-process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(217,119,6,0.35);
  position: relative;
  z-index: 2;
}
.c-process-step h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #1A0D05;
  margin-bottom: 8px;
}
.c-process-step p {
  font-size: 14px;
  color: #7A5B45;
  line-height: 1.5;
  margin: 0;
}
.c-process-connector {
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.c-process-connector::before {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D97706, rgba(217,119,6,0.2));
}

/* --- FAQ V2 --- */
.c-faq { max-width: 700px; margin: 0 auto; }
.c-faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(217,119,6,0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.c-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}
.c-faq-item.active {
  border-color: #E5E7EB;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.c-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #1A0D05;
  text-align: left;
  transition: color 0.2s;
}
.c-faq-q:hover { color: #D97706; background-color: transparent !important; }
.c-faq-item.active .c-faq-q { background-color: transparent !important; color: #D97706 !important; }
.c-faq-icon {
  font-size: 22px;
  color: #D97706;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border-radius: 50%;
}
.c-faq-item.active .c-faq-icon { transform: rotate(45deg); }
.c-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.c-faq-item.active .c-faq-a {
  max-height: 300px;
  padding: 0 28px 22px;
}
.c-faq-a p {
  font-size: 15px;
  color: #7A5B45;
  line-height: 1.7;
  margin: 0;
}

/* --- FINAL CTA V2 --- */
.c-final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0F0A05, #1A0D05);
  overflow: hidden;
}
.c-final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.c-final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.12;
  position: relative;
  z-index: 2;
}
.c-final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* --- RESPONSIVE V2 --- */
@media (max-width: 1024px) {
  .c-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .c-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .c-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .c-receive-grid { grid-template-columns: repeat(2, 1fr); }
  .c-process-connector { flex: 0 0 30px; }
  .c-process-connector::before { width: 30px; }
}
@media (max-width: 768px) {
  .c-hero { padding: 150px 0 90px; }
  .c-hero-stats { gap: 24px; }
  .c-stat-num { font-size: 30px; }
  .c-pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .c-spec-grid { grid-template-columns: 1fr 1fr; }
  .c-vastu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .c-benefits-grid { grid-template-columns: 1fr 1fr; }
  .c-receive-grid { grid-template-columns: 1fr 1fr; }
  .c-premium-list { grid-template-columns: 1fr; }
  .c-process { flex-direction: column; align-items: center; }
  .c-process-connector { transform: rotate(90deg); padding-top: 0; height: 40px; }
  .c-process-connector::before { width: 40px; }
  .c-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .c-hero { padding: 140px 0 70px; }
  .c-hero-title { font-size: 32px; }
  .c-hero-stats { flex-direction: column; gap: 12px; }
  .c-stat-divider { width: 40px; height: 1px; }
  .c-spec-grid { grid-template-columns: 1fr; }
  .c-benefits-grid { grid-template-columns: 1fr; }
  .c-receive-grid { grid-template-columns: 1fr; }
  .c-pkg-bottom { flex-direction: column; align-items: flex-start; }
  .c-btn--lg { padding: 16px 36px; font-size: 15px; }
  .c-premium-amount { font-size: 40px; }
  .c-section { padding: 60px 0; }
}


/* =========================================
   CONTACT PAGE STYLES
========================================= */
body.premium-contact-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-contact-page .elementor-location-header,
body.premium-contact-page .elementor-location-footer,
body.premium-contact-page .site-header-elementor,
body.premium-contact-page #content {
  display: none !important;
}

/* --- Contact Utility Classes --- */
.contact-gold { color: #D97706; }

/* --- HERO --- */
.contact-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: #1A0D05;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(217,119,6,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.contact-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #E9A23B;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.contact-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.contact-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* --- CONTACT SECTION GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-info-wrap h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 15px;
}
.contact-info-desc {
  font-size: 16px; color: #7A5B45; margin-bottom: 40px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.info-item {
  display: flex; align-items: flex-start; gap: 20px;
}
.info-icon {
  width: 50px; height: 50px;
  background: rgba(217,119,6,0.1);
  color: #D97706;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-content h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: #3A1400; margin-bottom: 4px;
}
.info-content p {
  font-size: 15px; color: #4A1D00; line-height: 1.5; margin: 0;
}
.info-sub { color: #7A5B45; font-size: 13px; }

.contact-social h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: #3A1400; margin-bottom: 16px;
}
.contact-social .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: #fff;
  color: #D97706;
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.contact-social .social-links a:hover {
  background: #D97706; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(217,119,6,0.3);
}

/* --- CONTACT FORM --- */
.form-card {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.15);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  color: #3A1400; margin-bottom: 10px;
}
.form-card p {
  font-size: 15px; color: #7A5B45; margin-bottom: 30px;
}
.premium-contact-form {
  display: flex; flex-direction: column; gap: 24px;
}
.form-row {
  display: flex; gap: 24px;
}
.form-group {
  display: flex; flex-direction: column; flex: 1;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; color: #3A1400;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #F9F6F0;
  border: 1px solid rgba(74,29,0,0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px; color: #3A1400;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: #D97706;
  box-shadow: 0 0 0 4px rgba(217,119,6,0.1);
}
.btn-submit-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(217,119,6,0.3);
  margin-top: 10px;
}
.btn-submit-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217,119,6,0.45);
}

/* --- MAP SECTION --- */
.map-container {
  border-top: 1px solid rgba(74,29,0,0.1);
  background: #eee; /* Fallback */
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .contact-hero { padding: 140px 0 80px; }
  .form-row { flex-direction: column; gap: 24px; }
  .form-card { padding: 30px 20px; }
}

/* =========================================
   HOROSCOPE PAGE STYLES
========================================= */
body.premium-horoscope-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-horoscope-page .elementor-location-header,
body.premium-horoscope-page .elementor-location-footer,
body.premium-horoscope-page .site-header-elementor,
body.premium-horoscope-page #content {
  display: none !important;
}

/* --- Horoscope Utility Classes --- */
.horoscope-gold { color: #D97706; }
.horoscope-gold-light { color: #E9A23B; }
.section-title-horoscope {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 20px;
}

/* --- HERO --- */
.horoscope-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: #F5EFE6;
  overflow: hidden;
}
.horoscope-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(217,119,6,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.horoscope-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.horoscope-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.horoscope-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #3A1400;
  margin-bottom: 24px;
}
.horoscope-hero-sub {
  font-size: 18px;
  color: #7A5B45;
}

/* --- ZODIAC GRID --- */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.zodiac-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 20px;
  padding: 40px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zodiac-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #D97706;
}
.zodiac-icon-wrap {
  width: 70px; height: 70px;
  background: #F9F6F0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.zodiac-card:hover .zodiac-icon-wrap {
  background: #D97706;
}
.zodiac-symbol {
  font-size: 32px;
  color: #D97706;
  line-height: 1;
  transition: all 0.3s ease;
}
.zodiac-card:hover .zodiac-symbol {
  color: #fff;
}
.zodiac-card h3 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: #3A1400; margin-bottom: 5px;
}
.zodiac-dates {
  font-size: 13px; color: #7A5B45;
  margin-bottom: 15px;
}
.zodiac-element {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}
.zodiac-element.fire { background: rgba(220,38,38,0.1); color: #DC2626; }
.zodiac-element.earth { background: rgba(22,163,74,0.1); color: #16A34A; }
.zodiac-element.air { background: rgba(2,132,199,0.1); color: #0284C7; }
.zodiac-element.water { background: rgba(79,70,229,0.1); color: #4F46E5; }

/* --- UNDERSTANDING SECTION (Dark) --- */
.understanding-section {
  background: #1A0D05;
  padding: 100px 0;
  overflow: hidden;
}
.understanding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.understanding-content h2 {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.understanding-content p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 25px; line-height: 1.7;
}
.understanding-list {
  list-style: none; padding: 0; margin: 0 0 30px;
}
.understanding-list li {
  display: flex; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.ul-icon { color: #E9A23B; }
.disclaimer-text {
  font-size: 13px !important;
  color: rgba(233,162,59,0.8) !important;
  font-style: italic;
  margin-top: 20px;
}
.understanding-image {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ui-wrap {
  width: 300px; height: 300px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ui-circle {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(217,119,6,0.3);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}
.ui-symbol {
  font-size: 80px; color: #E9A23B;
  text-shadow: 0 0 40px rgba(233,162,59,0.4);
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- FINAL CTA --- */
.horoscope-cta-section {
  background: #F5EFE6;
  border-top: 1px solid rgba(217,119,6,0.15);
}
.horoscope-cta-section h2 {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 700;
  color: #3A1400; margin-bottom: 15px;
}
.hcta-sub {
  font-size: 18px; color: #7A5B45;
  max-width: 600px; margin: 0 auto 30px;
}
.btn-horoscope-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(217,119,6,0.3);
}
.btn-horoscope-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217,119,6,0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
  .understanding-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .understanding-list li { justify-content: center; }
  .understanding-image { display: none; /* Hide decorative image on smaller screens if needed, or scale down */ }
}
@media (max-width: 768px) {
  .zodiac-grid { grid-template-columns: repeat(2, 1fr); }
  .horoscope-hero { padding: 140px 0 80px; }
}
@media (max-width: 480px) {
  .zodiac-grid { grid-template-columns: 1fr; }
}

/* =========================================
   KUNDLI PAGE STYLES
========================================= */
body.premium-kundli-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-kundli-page .elementor-location-header,
body.premium-kundli-page .elementor-location-footer,
body.premium-kundli-page .site-header-elementor,
body.premium-kundli-page #content {
  display: none !important;
}

/* --- Kundli Utility Classes --- */
.kundli-gold { color: #D97706; }
.kundli-gold-light { color: #E9A23B; }
.kundli-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.kundli-badge.light {
  background: rgba(233,162,59,0.15);
  color: #E9A23B;
}

/* --- HERO --- */
.kundli-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: #1A0D05;
  overflow: hidden;
}
.kundli-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(217,119,6,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.kundli-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.kundli-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.kundli-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 650px; margin: 0 auto;
}

/* --- SPLIT SECTION (Form + Info) --- */
.kundli-grid {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 80px;
  align-items: center;
}
.form-card-kundli {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.form-card-kundli h3 {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  color: #3A1400; margin-bottom: 10px;
}
.form-card-kundli p {
  font-size: 15px; color: #7A5B45; margin-bottom: 30px;
}
.premium-kundli-form {
  display: flex; flex-direction: column; gap: 20px;
}
.kundli-form-note {
  margin: 15px 0 0 0 !important;
  text-align: center;
  font-size: 13px !important;
  color: #aaa !important;
}

/* --- KUNDLI INFO (Right) --- */
.kundli-info-wrap h2 {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 700;
  color: #3A1400; margin-bottom: 20px;
  line-height: 1.2;
}
.k-desc {
  font-size: 16px; color: #7A5B45; margin-bottom: 30px;
}
.k-subhead {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 600;
  color: #3A1400; margin-bottom: 20px;
}
.kundli-benefits-list {
  list-style: none; padding: 0; margin: 0;
}
.kundli-benefits-list li {
  display: flex; gap: 16px;
  margin-bottom: 24px;
}
.kundli-benefits-list li:last-child { margin-bottom: 0; }
.kbl-icon {
  width: 48px; height: 48px;
  background: rgba(217,119,6,0.1);
  color: #D97706;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.kundli-benefits-list li strong {
  display: block; font-family: var(--font-head);
  font-size: 16px; font-weight: 600; color: #3A1400;
  margin-bottom: 4px;
}
.kundli-benefits-list li span {
  display: block; font-size: 14px; color: #7A5B45;
}

/* --- KUNDLI MATCHING (Dark) --- */
.kundli-matching {
  background: #1A0D05;
  padding: 100px 0;
  text-align: center;
}
.matching-inner { max-width: 800px; margin: 0 auto; }
.matching-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.matching-inner p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px; line-height: 1.7;
}
.matching-stats {
  display: flex; justify-content: center; gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.m-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 42px; font-weight: 700; color: #E9A23B;
  margin-bottom: 5px;
}
.m-stat span {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-matching-outline {
  display: inline-block;
  background: transparent;
  color: #E9A23B;
  border: 2px solid #E9A23B;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-matching-outline:hover {
  background: #E9A23B; color: #1A0D05;
  transform: translateY(-2px);
}

/* --- FINAL CTA --- */
.kundli-cta-section {
  background: #F5EFE6;
}
.kundli-cta-section h2 {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 700;
  color: #3A1400; margin-bottom: 15px;
}
.kcta-sub {
  font-size: 18px; color: #7A5B45;
  max-width: 600px; margin: 0 auto 30px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .kundli-grid { grid-template-columns: 1fr; gap: 50px; }
  .kundli-info-wrap { order: -1; } /* Info on top on mobile */
  .matching-stats { gap: 30px; }
}
@media (max-width: 768px) {
  .kundli-hero { padding: 140px 0 80px; }
  .form-card-kundli { padding: 30px 20px; }
}

/* =========================================
   TESTIMONIALS PAGE STYLES
========================================= */
body.premium-testimonials-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-testimonials-page .elementor-location-header,
body.premium-testimonials-page .elementor-location-footer,
body.premium-testimonials-page .site-header-elementor,
body.premium-testimonials-page #content {
  display: none !important;
}

/* --- Testimonials Utility --- */
.testi-gold { color: #D97706; }
.testi-gold-light { color: #E9A23B; }
.section-title-testi {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 20px;
}
.testi-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px; border-radius: 50px;
  margin-bottom: 24px;
}
.testi-badge.light {
  background: rgba(233,162,59,0.15);
  color: #E9A23B;
}

/* --- HERO --- */
.testi-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: #1A0D05;
  overflow: hidden;
}
.testi-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(217,119,6,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.testi-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.testi-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 24px;
}
.testi-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto 50px;
}
.testi-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.testi-stat { text-align: center; }
.testi-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 36px; font-weight: 700; color: #E9A23B;
}
.testi-stat span { font-size: 14px; color: rgba(255,255,255,0.6); }
.testi-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* --- FEATURED TESTIMONIAL --- */
.featured-testi-card {
  background: #fff;
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.ft-quote-icon {
  font-size: 64px; color: #D97706;
  line-height: 1; margin-bottom: 10px;
  opacity: 0.4;
}
.ft-quote {
  font-family: var(--font-body);
  font-size: 20px; font-weight: 400;
  color: #3A1400; line-height: 1.8;
  margin: 0 0 30px; font-style: italic;
}
.ft-author {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 15px;
}
.ft-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
}
.ft-author strong {
  display: block; font-family: var(--font-head);
  font-size: 18px; font-weight: 600; color: #3A1400;
}
.ft-author span {
  font-size: 14px; color: #7A5B45;
}
.ft-stars {
  font-size: 22px; color: #D97706; letter-spacing: 3px;
}

/* --- TESTIMONIALS MASONRY GRID --- */
.testi-masonry {
  columns: 3;
  column-gap: 28px;
}
.testi-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.testi-card-highlight {
  background: #1A0D05;
  border-color: rgba(217,119,6,0.3);
}
.testi-card-highlight p { color: rgba(255,255,255,0.8) !important; }
.testi-card-highlight .tc-author strong { color: #fff !important; }
.testi-card-highlight .tc-author span { color: rgba(255,255,255,0.5) !important; }
.tc-stars {
  font-size: 16px; color: #D97706;
  letter-spacing: 2px; margin-bottom: 16px;
}
.testi-card p {
  font-size: 15px; color: #4A1D00;
  line-height: 1.7; margin: 0 0 20px;
}
.tc-author {
  display: flex; align-items: center; gap: 12px;
}
.tc-avatar {
  width: 40px; height: 40px;
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.tc-author strong {
  display: block; font-family: var(--font-head);
  font-size: 15px; font-weight: 600; color: #3A1400;
}
.tc-author span {
  font-size: 13px; color: #7A5B45;
}

/* --- VIDEO TESTIMONIALS (Dark) --- */
.video-testi-section {
  background: #1A0D05;
  padding: 100px 0;
}
.video-testi-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.video-testi-sub {
  font-size: 17px; color: rgba(255,255,255,0.6);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,119,6,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.video-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(217,119,6,0.05));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
}
.video-play-icon {
  width: 60px; height: 60px;
  background: rgba(217,119,6,0.9);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 12px;
  box-shadow: 0 5px 20px rgba(217,119,6,0.4);
  transition: transform 0.3s ease;
}
.video-card:hover .video-play-icon { transform: scale(1.1); }
.video-label {
  font-size: 12px; color: #E9A23B;
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600;
}
.video-card h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: #fff; padding: 20px 24px 6px;
  margin: 0;
}
.video-card p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  padding: 0 24px 24px; margin: 0;
}

/* --- TRUST BADGES --- */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-badge-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 18px;
  padding: 36px 20px;
  transition: all 0.3s ease;
}
.trust-badge-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.tb-icon { font-size: 32px; margin-bottom: 14px; }
.trust-badge-item strong {
  display: block; font-family: var(--font-head);
  font-size: 18px; font-weight: 600; color: #3A1400;
  margin-bottom: 4px;
}
.trust-badge-item span {
  font-size: 14px; color: #7A5B45;
}

/* --- FINAL CTA --- */
.testi-final-cta {
  position: relative;
  background: #1A0D05;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.testi-final-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(217,119,6,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.testi-final-inner { position: relative; z-index: 2; }
.testi-final-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; color: #fff;
  margin-bottom: 20px; line-height: 1.15;
}
.testi-final-inner p {
  font-size: 18px; color: rgba(255,255,255,0.6);
  margin-bottom: 40px; max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.testi-final-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.btn-testi-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff; padding: 18px 48px;
  border-radius: 50px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(217,119,6,0.4);
}
.btn-testi-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217,119,6,0.5);
}
.btn-testi-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 18px 40px; border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 16px;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.btn-testi-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37,211,102,0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .testi-masonry { columns: 2; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testi-masonry { columns: 1; }
  .video-grid { grid-template-columns: 1fr; }
  .trust-badges-grid { grid-template-columns: 1fr 1fr; }
  .testi-hero { padding: 140px 0 80px; }
  .featured-testi-card { padding: 30px 20px; }
  .ft-quote { font-size: 17px; }
  .testi-hero-stats { gap: 20px; }
  .testi-stat strong { font-size: 28px; }
}
@media (max-width: 480px) {
  .trust-badges-grid { grid-template-columns: 1fr; }
}

/* =========================================
   VASTU PAGE STYLES
========================================= */
body.premium-vastu-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-vastu-page .elementor-location-header,
body.premium-vastu-page .elementor-location-footer,
body.premium-vastu-page .site-header-elementor,
body.premium-vastu-page #content {
  display: none !important;
}

/* --- Vastu Utility --- */
.vastu-gold { color: #D97706; }
.vastu-gold-light { color: #E9A23B; }
.section-title-vastu {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 20px;
  text-align: center;
}
.vastu-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px; border-radius: 50px;
  margin-bottom: 24px;
}

/* --- HERO --- */
.vastu-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  background: #F5EFE6; /* Light Hero for Vastu (space/air) */
  overflow: hidden;
}
.vastu-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(217,119,6,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.vastu-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.vastu-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: #3A1400; margin-bottom: 24px;
}
.vastu-hero-sub {
  font-size: 18px; color: #7A5B45;
  max-width: 650px; margin: 0 auto;
}

/* --- 5 ELEMENTS SECTION --- */
.elements-sub {
  font-size: 18px; color: #7A5B45;
  max-width: 600px; margin: 0 auto 50px;
}
.elements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.element-card {
  flex: 1 1 200px;
  max-width: 280px;
  background: #fff;
  border: 1px solid rgba(217,119,6,0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.element-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-color: #D97706;
}
.element-icon {
  font-size: 40px; margin-bottom: 15px;
}
.element-card h4 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: #3A1400; margin-bottom: 8px;
}
.element-card p {
  font-size: 13.5px; color: #7A5B45;
  margin: 0; line-height: 1.5;
}

/* --- SERVICES SPLIT SECTION (Dark) --- */
.vastu-services-section {
  background: #1A0D05;
  border-top: 1px solid rgba(217,119,6,0.15);
  border-bottom: 1px solid rgba(217,119,6,0.15);
}
.vastu-services-split {
  display: flex;
  flex-wrap: wrap;
}
.vs-half {
  flex: 1 1 50%;
  padding: 100px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.vs-half.residential {
  border-right: 1px solid rgba(255,255,255,0.05);
  background: radial-gradient(circle at right center, rgba(217,119,6,0.05) 0%, transparent 70%);
}
.vs-half.commercial {
  background: radial-gradient(circle at left center, rgba(217,119,6,0.05) 0%, transparent 70%);
}
.vs-content { max-width: 500px; }
.vs-half.residential .vs-content { margin-left: auto; } /* Push to center on large screens */
.vs-half.commercial .vs-content { margin-right: auto; }

.vs-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: #E9A23B; margin-bottom: 15px;
}
.vs-content h3 {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.vs-content p {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 30px; line-height: 1.7;
}
.vs-list {
  list-style: none; padding: 0; margin: 0;
}
.vs-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.vs-list li span { color: #E9A23B; font-size: 12px; margin-top: 3px; }

/* --- PROCESS SECTION --- */
.v-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.v-process-step {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(217,119,6,0.1);
}
.vp-number {
  font-family: var(--font-head);
  font-size: 60px; font-weight: 800;
  color: rgba(217,119,6,0.1);
  position: absolute; top: 10px; right: 20px;
  line-height: 1; pointer-events: none;
}
.v-process-step h4 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: #3A1400; margin-bottom: 15px;
  position: relative; z-index: 2;
}
.v-process-step p {
  font-size: 15px; color: #7A5B45; margin: 0;
  position: relative; z-index: 2;
}

/* --- CTA SECTION --- */
.vastu-cta-section {
  background: #F5EFE6;
}
.vastu-cta-section h2 {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 700;
  color: #3A1400; margin-bottom: 15px;
}
.vcta-sub {
  font-size: 18px; color: #7A5B45;
  max-width: 600px; margin: 0 auto 35px;
}
.vcta-btns {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.btn-vastu-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff; padding: 16px 40px;
  border-radius: 50px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(217,119,6,0.3);
}
.btn-vastu-primary:hover {
  transform: translateY(-3px); box-shadow: 0 15px 35px rgba(217,119,6,0.4);
}
.btn-vastu-outline {
  display: inline-block; background: transparent;
  color: #3A1400; border: 2px solid #3A1400;
  padding: 14px 40px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-vastu-outline:hover {
  background: #3A1400; color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .vs-half { padding: 80px 5%; }
}
@media (max-width: 768px) {
  .vastu-services-split { flex-direction: column; }
  .vs-half { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .vs-half.residential .vs-content, .vs-half.commercial .vs-content { margin: 0 auto; text-align: center; }
  .vs-list li { text-align: left; }
  .v-process-grid { grid-template-columns: 1fr; gap: 20px; }
  .vastu-hero { padding: 140px 0 80px; }
}
@media (max-width: 480px) {
  .element-card { max-width: 100%; flex-basis: 100%; }
}

/* =========================================
   ONLINE PUJA PAGE STYLES
========================================= */
body.premium-puja-page {
  background: #F5EFE6 !important;
  color: #4A1D00;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
body.premium-puja-page .elementor-location-header,
body.premium-puja-page .elementor-location-footer,
body.premium-puja-page .site-header-elementor,
body.premium-puja-page #content {
  display: none !important;
}

/* --- Puja Utility --- */
.puja-gold { color: #D97706; }
.puja-gold-light { color: #E9A23B; }
.section-title-puja {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #3A1400;
  margin-bottom: 20px;
}
.puja-dark-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.puja-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  color: #D97706;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 24px; border-radius: 50px;
  margin-bottom: 24px;
}
.puja-badge.light { background: rgba(233,162,59,0.15); color: #E9A23B; }

/* Buttons */
.btn-puja-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: #fff; padding: 16px 40px;
  border-radius: 50px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(217,119,6,0.3);
}
.btn-puja-primary:hover {
  transform: translateY(-3px); box-shadow: 0 15px 35px rgba(217,119,6,0.4); color: #fff;
}
.btn-puja-whatsapp {
  display: inline-block; background: #25D366; color: #fff;
  padding: 16px 40px; border-radius: 50px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.btn-puja-whatsapp:hover { background: #1ebe57; transform: translateY(-3px); color: #fff; }
.btn-puja-outline {
  display: inline-block; background: transparent; color: #D97706;
  border: 2px solid #D97706; padding: 14px 40px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-puja-outline:hover { background: #D97706; color: #fff; }

/* --- HERO --- */
.puja-hero {
  position: relative; padding: 180px 0 100px;
  background: #F5EFE6; overflow: hidden;
}
.puja-hero-bg {
  position: absolute; inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width=\"200\" height=\"200\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"100\" cy=\"100\" r=\"2\" fill=\"%23D97706\" fill-opacity=\"0.1\"/></svg>');
  opacity: 0.5;
}
.puja-hero-grid {
  display: grid; grid-template-columns: 6fr 4fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.puja-hero-title {
  font-family: var(--font-head); font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700; line-height: 1.15; color: #3A1400; margin-bottom: 20px;
}
.puja-hero-sub {
  font-size: 18px; color: #7A5B45; margin-bottom: 30px;
}
.puja-hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.pht-item {
  font-size: 14px; font-weight: 600; color: #3A1400;
  display: flex; align-items: center; gap: 8px;
}
.pht-item span { color: #D97706; }
.puja-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.ph-image-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.ph-glow {
  position: absolute; width: 80%; height: 80%;
  background: #D97706; border-radius: 50%; filter: blur(80px); opacity: 0.2;
}
.ph-image-placeholder {
  font-size: 150px; position: relative; z-index: 2;
}

/* --- TRUST COUNTER --- */
.ptc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.ptc-card {
  background: #fff; border: 1px solid rgba(217,119,6,0.15);
  border-radius: 20px; padding: 40px 20px; text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.ptc-icon { font-size: 32px; margin-bottom: 15px; }
.ptc-number { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: #D97706; }
.ptc-text { font-size: 15px; font-weight: 600; color: #3A1400; }

/* --- FEATURED PUJAS --- */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pf-card {
  background: #fff; border: 1px solid rgba(217,119,6,0.15);
  border-radius: 20px; overflow: hidden; transition: all 0.3s ease;
}
.pf-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: #D97706; }
.pf-img-wrap {
  height: 200px; background: #F2E6D5; display: flex; align-items: center; justify-content: center;
}
.pf-img-placeholder { font-size: 60px; }
.pf-content { padding: 30px; }
.pf-content h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #3A1400; margin-bottom: 10px; }
.pf-purpose { font-size: 14px; color: #7A5B45; margin-bottom: 20px; }
.pf-meta {
  display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: #3A1400;
  margin-bottom: 24px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.05);
}
.pf-card .btn-puja-outline { width: 100%; text-align: center; }

/* --- ALL PUJAS GRID --- */
.pa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pa-card {
  background: #F2E6D5; border-left: 4px solid #D97706;
  border-radius: 12px; padding: 24px; display: flex; gap: 15px;
  transition: all 0.3s ease;
}
.pa-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.pa-icon { font-size: 28px; line-height: 1; }
.pa-info h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #3A1400; margin-bottom: 5px; }
.pa-info p { font-size: 13px; color: #7A5B45; margin-bottom: 10px; line-height: 1.4; }
.pa-btn { font-size: 13px; font-weight: 600; color: #D97706; text-decoration: none; }

/* --- WHY ONLINE PUJA --- */
.pw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.pw-card {
  background: #fff; border: 1px solid rgba(217,119,6,0.1);
  border-radius: 18px; padding: 40px 30px; text-align: center;
}
.pw-icon { font-size: 40px; margin-bottom: 20px; }
.pw-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #3A1400; margin-bottom: 15px; }
.pw-card p { font-size: 14px; color: #7A5B45; margin: 0; }

/* --- BENEFITS (DARK) --- */
.puja-benefits-section { background: #1A0D05; padding: 100px 0; }
.pb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pb-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 30px 20px; text-align: center; transition: all 0.3s ease;
}
.pb-card:hover { background: rgba(217,119,6,0.1); border-color: rgba(217,119,6,0.3); }
.pb-icon { font-size: 32px; margin-bottom: 10px; }
.pb-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: #fff; margin: 0; }

/* --- PROCESS TIMELINE --- */
.pp-timeline {
  display: flex; justify-content: space-between; position: relative; margin-top: 50px;
}
.pp-timeline::before {
  content: ''; position: absolute; top: 25px; left: 0; width: 100%; height: 2px;
  background: rgba(217,119,6,0.2); z-index: 1;
}
.pp-step {
  flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 15px;
}
.pp-dot {
  width: 50px; height: 50px; background: #fff; border: 2px solid #D97706;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #D97706;
  margin: 0 auto 20px; box-shadow: 0 0 0 8px #F5EFE6;
}
.pp-step h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #3A1400; margin-bottom: 10px; }
.pp-step p { font-size: 13px; color: #7A5B45; }

/* --- TEMPLE SECTION --- */
.pt-grid { display: grid; grid-template-columns: 5fr 5fr; gap: 60px; align-items: center; }
.pt-list { list-style: none; padding: 0; margin: 30px 0 0; }
.pt-list li { display: flex; gap: 12px; font-size: 16px; font-weight: 600; color: #3A1400; margin-bottom: 15px; }
.pt-list li span { color: #D97706; }
.pt-image-wrap {
  width: 100%; aspect-ratio: 4/3; background: #F2E6D5; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 80px;
}

/* --- PACKAGES --- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pkg-card {
  background: #fff; border: 1px solid rgba(217,119,6,0.15); border-radius: 20px;
  padding: 40px 30px; text-align: center; position: relative;
}
.pkg-card.popular {
  border-color: #D97706; box-shadow: 0 20px 50px rgba(217,119,6,0.15); transform: scale(1.05); z-index: 2;
}
.pkg-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: #D97706; color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase;
  padding: 6px 20px; border-radius: 50px;
}
.pkg-card h4 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #3A1400; margin-bottom: 15px; }
.pkg-price { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: #D97706; margin-bottom: 30px; }
.pkg-list { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.pkg-list li { font-size: 14px; color: #4A1D00; margin-bottom: 15px; display: flex; gap: 10px; }
.pkg-list li.disabled { color: #aaa; }
.pkg-card .btn-puja-outline, .pkg-card .btn-puja-primary { width: 100%; box-sizing: border-box; }

/* --- FAQ ACCORDION --- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid rgba(217,119,6,0.15); border-radius: 12px;
  margin-bottom: 15px; overflow: hidden;
}
.faq-q {
  padding: 20px 25px; font-family: var(--font-head); font-size: 16px; font-weight: 600;
  color: #3A1400; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-a {
  padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease;
}
.faq-a p { font-size: 15px; color: #7A5B45; padding-bottom: 20px; margin: 0; }
.faq-item.active .faq-a { max-height: 200px; }
.faq-item.active .faq-q .faq-icon { transform: rotate(45deg); display: inline-block; }

/* --- FINAL CTA --- */
.puja-final-cta {
  background: #1A0D05; padding: 100px 0;
}
.puja-final-cta h2 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: #fff; margin-bottom: 20px; }
.puja-final-cta p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.pfc-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pa-grid, .pw-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .puja-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .puja-hero-trust { justify-content: center; }
  .puja-hero-btns { justify-content: center; }
  .ptc-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: 1fr; }
  .pa-grid, .pw-grid { grid-template-columns: 1fr; }
  .pp-timeline { flex-direction: column; gap: 30px; }
  .pp-timeline::before { left: 25px; top: 0; width: 2px; height: 100%; }
  .pp-step { display: flex; align-items: flex-start; text-align: left; gap: 20px; }
  .pp-dot { margin: 0; flex-shrink: 0; }
  .pt-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}

/* =========================================
   LOGO STYLES
========================================= */
.site-logo-img {
    height: 48px;
    width: auto;
    display: block;
    mix-blend-mode: multiply; /* Removes the off-white background of the logo on most backgrounds */
    transition: transform 0.3s ease;
}
.header-logo:hover .site-logo-img {
    transform: scale(1.05);
}
.footer-logo-wrap .site-logo-img {
    height: 40px;
    margin-right: 10px;
}

/* =========================================
   NEW HEADER STYLES
========================================= */
.logo-text-wrap {
    display: flex;
    flex-direction: column;
}
.logo-tagline {
    font-size: 11px;
    color: #7A5B45;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.header-nav ul li.has-dropdown {
    position: relative;
}
.header-nav ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.header-nav ul li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    display: block;
    margin: 0;
}
.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #4A1D00;
}
.dropdown-menu li a:hover {
    background: rgba(217,119,6,0.05);
    color: #D97706;
}
.btn-header-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.btn-header-wa:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: #fff;
}

/* =========================================
   FLOATING ACTION BUTTONS
========================================= */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.float-book {
    background: linear-gradient(135deg, #D97706, #B45309);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
}
.float-book:hover {
    color: #fff;
}
.float-wa {
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.float-wa:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
    }
}

/* =========================================
   ULTRA PREMIUM GLASS HEADER
========================================= */
.site-header {
    background: rgba(245, 239, 230, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(217,119,6,0.15) !important;
    padding: 15px 0 !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.header-logo {
    gap: 15px;
}
.header-logo .logo-text {
    color: #3A1400 !important;
    font-size: 21px !important;
    letter-spacing: 0.5px;
}
.header-logo .logo-tagline {
    color: #D97706 !important;
    font-weight: 500;
    letter-spacing: 1.5px;
}
.header-nav ul {
    gap: 10px;
}
.header-nav ul li a {
    color: #4A1D00 !important;
    font-weight: 500 !important;
    padding: 8px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}
.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D97706;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.header-nav ul li a:hover::after,
.header-nav ul li a.active::after {
    width: 18px;
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #D97706 !important;
}
.header-nav ul li.has-dropdown > a svg {
    fill: #4A1D00 !important;
    transition: fill 0.3s ease;
}
.header-nav ul li.has-dropdown:hover > a svg {
    fill: #D97706 !important;
}
.menu-toggle span {
    background: #3A1400 !important;
}
.site-logo-img {
    mix-blend-mode: multiply !important;
    filter: none !important;
    height: 52px !important;
}
.header-logo .logo-text {
    color: #ffffff !important;
}
.header-logo .logo-tagline {
    color: rgba(255,255,255,0.8) !important;
}
.header-nav ul li a {
    color: #ffffff !important;
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #FFD700 !important; /* Lighter gold/yellow on hover */
}
.header-nav ul li.has-dropdown > a svg {
    fill: #ffffff !important;
}
.menu-toggle span {
    background: #ffffff !important;
}

/* Fix dropdown menu text to remain dark */
.dropdown-menu li a {
    color: #4A1D00 !important;
}
.dropdown-menu li a:hover {
    color: #D97706 !important;
}

/* Attempting to blend the off-white logo background into the gold header */
.site-logo-img {
    mix-blend-mode: color-burn !important; 
    filter: brightness(1.2) contrast(1.1);
}

/* =========================================
   ULTRA PREMIUM GLASS HEADER
========================================= */
.site-header {
    background: rgba(245, 239, 230, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(217,119,6,0.15) !important;
    padding: 15px 0 !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.header-logo {
    gap: 15px;
}
.header-logo .logo-text {
    color: #3A1400 !important;
    font-size: 21px !important;
    letter-spacing: 0.5px;
}
.header-logo .logo-tagline {
    color: #D97706 !important;
    font-weight: 500;
    letter-spacing: 1.5px;
}
.header-nav ul {
    gap: 10px;
}
.header-nav ul li a {
    color: #4A1D00 !important;
    font-weight: 500 !important;
    padding: 8px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}
.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D97706;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.header-nav ul li a:hover::after,
.header-nav ul li a.active::after {
    width: 18px;
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #D97706 !important;
}
.header-nav ul li.has-dropdown > a svg {
    fill: #4A1D00 !important;
    transition: fill 0.3s ease;
}
.header-nav ul li.has-dropdown:hover > a svg {
    fill: #D97706 !important;
}
.menu-toggle span {
    background: #3A1400 !important;
}
.site-logo-img {
    mix-blend-mode: multiply !important;
    filter: none !important;
    height: 52px !important;
}

/* =========================================
   DROPDOWN MENU STYLES
========================================= */
.header-nav ul li.has-dropdown {
    position: relative;
}
.header-nav ul li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(217,119,6,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none !important;
    margin: 0 !important;
}
.header-nav ul li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dropdown-menu li a {
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 15px !important;
    color: #4A1D00 !important;
    text-decoration: none;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}
.dropdown-menu li a::after {
    display: none !important; /* Hide the gold underline effect for dropdown links */
}
.dropdown-menu li a:hover {
    background: rgba(217,119,6,0.05);
    color: #D97706 !important;
    padding-left: 28px !important; /* Slight indent on hover */
}

/* =========================================
   MEGA MENU (HORIZONTAL DROPDOWN)
========================================= */
.dropdown-menu.horizontal-mega {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 600px;
    max-width: 90vw;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(217,119,6,0.15);
    border-radius: 20px;
    padding: 25px !important;
    /* Reset from vertical dropdown */
    transform: translateX(-50%) translateY(20px);
}
.header-nav ul li.has-dropdown:hover .dropdown-menu.horizontal-mega {
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu.horizontal-mega li {
    flex: 1 1 calc(20% - 15px);
    min-width: 100px;
}
.dropdown-menu.horizontal-mega li a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px !important;
    background: #F5EFE6;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.dropdown-menu.horizontal-mega li a:hover {
    padding-left: 10px !important; /* Override vertical hover */
    background: #ffffff;
    border-color: #D97706;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(217,119,6,0.15);
}
.dm-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}
.dm-text {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .dropdown-menu.horizontal-mega {
        position: relative;
        width: 100%;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none !important; /* Rely on JS or specific mobile CSS for toggle */
    }
}

/* =========================================
   LANGUAGE SWITCHER
========================================= */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}
.lang-btn {
    font-weight: 600;
    font-size: 14px;
    color: #4A1D00;
    text-decoration: none;
    transition: color 0.3s ease;
}
.lang-btn.active, .lang-btn:hover {
    color: #D97706;
}
.lang-divider {
    color: rgba(74, 29, 0, 0.3);
    font-size: 12px;
}

/* =========================================
   HERO CONSULTATION FORM
========================================= */
.hero-form-wrap {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(217,119,6,0.15);
    margin-top: 30px;
    position: relative;
    z-index: 10;
}
.hero-form-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #4A1D00;
    font-size: 22px;
}
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hero-form input, .hero-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #FAFAFA;
}
.hero-form input:focus, .hero-form select:focus {
    outline: none;
    border-color: #D97706;
    background: #fff;
}
.hero-form button {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    border: none;
}

/* =========================================
   PANCHANG SECTION
========================================= */
.panchang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.panchang-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(217,119,6,0.1);
    transition: transform 0.3s ease;
}
.panchang-card:hover {
    transform: translateY(-5px);
    border-color: #D97706;
}
.pc-icon {
    font-size: 30px;
    margin-bottom: 10px;
}
.panchang-card h4 {
    color: #4A1D00;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.panchang-card p {
    color: #D97706;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

/* =========================================
   AWARDS SECTION
========================================= */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.award-card {
    background: linear-gradient(145deg, #ffffff, #F5EFE6);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(217,119,6,0.15);
    transition: all 0.3s ease;
}
.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(217,119,6,0.15);
}
.award-icon {
    font-size: 45px;
    margin-bottom: 20px;
}
.award-card h3 {
    color: #4A1D00;
    margin-bottom: 15px;
    font-size: 20px;
}
.award-card p {
    color: #7A5B45;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   ISO CERTIFIED SECTION
========================================= */
.iso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.iso-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.iso-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(217,119,6,0.1);
    color: #D97706;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.iso-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.iso-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #4A1D00;
}
.iso-feat span {
    color: #25D366;
}

@media (max-width: 992px) {
    .iso-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    .iso-image img {
        margin: 0 auto;
    }
    .iso-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero-form-wrap {
        margin-top: 40px;
    }
}

/* =========================================
   ABOUT THE MASTER - ROTATING MANTRA
========================================= */
.about-img-wrapper.has-rotating-mantra {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.about-img-wrapper.has-rotating-mantra::before {
    display: none; /* Remove any old background square if exists */
}
.rotating-mantra {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    animation: spinMantra 40s linear infinite;
}
.rotating-mantra.reverse {
    width: 150%;
    height: 150%;
    animation: spinMantraReverse 50s linear infinite;
}
.rotating-mantra svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
@keyframes spinMantra {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spinMantraReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}
.about-img-wrapper .master-img {
    border-radius: 0;
    box-shadow: none;
}

/* =========================================
   HERO ZODIAC CHAKRA (SVG)
========================================= */
.zodiac-chakra-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.zodiac-chakra-svg {
    width: 100%;
    height: auto;
    animation: spinZodiac 60s linear infinite;
    transform-origin: center center;
    filter: drop-shadow(0 0 30px rgba(217,119,6,0.3));
}
@keyframes spinZodiac {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .zodiac-chakra-wrapper {
        margin-top: 50px;
        max-width: 350px;
    }
}

/* =========================================
   PREMIUM ZODIAC CHAKRA — MULTI-RING SYSTEM
========================================= */
.zodiac-chakra-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Each ring layer is absolutely positioned, full size */
.chakra-ring {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chakra-ring svg {
    width: 100%;
    height: 100%;
}

/* Ring 4 — Outermost Nakshatra dots: slow clockwise */
.ring-outer {
    animation: chakraSpin 90s linear infinite;
    filter: drop-shadow(0 0 15px rgba(217,119,6,0.2));
}

/* Ring 3 — Mantra text: counter-clockwise */
.ring-mantra {
    animation: chakraSpinReverse 70s linear infinite;
    filter: drop-shadow(0 0 10px rgba(217,119,6,0.15));
}

/* Ring 2 — Zodiac symbols: clockwise (medium) */
.ring-zodiac {
    animation: chakraSpin 50s linear infinite;
    filter: drop-shadow(0 0 20px rgba(217,119,6,0.25));
}

/* Ring 1 — Center Om: gentle pulse (no rotation) */
.ring-center {
    animation: omPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(253,224,71,0.4));
}

@keyframes chakraSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes chakraSpinReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}
@keyframes omPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(253,224,71,0.4)); }
    50%      { transform: scale(1.06); filter: drop-shadow(0 0 60px rgba(253,224,71,0.6)); }
}

/* Warm ambient glow behind the whole chakra */
.zodiac-chakra-wrapper .hero-aura {
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,119,6,0.12) 0%, rgba(217,119,6,0.04) 40%, transparent 70%);
    z-index: -1;
    animation: auraBreath 6s ease-in-out infinite alternate;
}
@keyframes auraBreath {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

@media (max-width: 992px) {
    .zodiac-chakra-wrapper {
        margin-top: 50px;
        max-width: 360px;
    }
}
@media (max-width: 576px) {
    .zodiac-chakra-wrapper {
        max-width: 280px;
    }
}

/* =========================================
   ABOUT THE MASTER — PREMIUM MULTI-RING CHAKRA
========================================= */
.about-chakra-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Each ring layer: absolutely positioned, full size */
.about-ring {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-ring svg {
    width: 100%;
    height: 100%;
}

/* Outer Nakshatra ring: slow clockwise */
.about-ring-outer {
    animation: chakraSpin 100s linear infinite;
    filter: drop-shadow(0 0 12px rgba(217,119,6,0.15));
}

/* Mantra ring: counter-clockwise */
.about-ring-mantra {
    animation: chakraSpinReverse 80s linear infinite;
    filter: drop-shadow(0 0 8px rgba(217,119,6,0.1));
}

/* Zodiac ring: clockwise medium */
.about-ring-zodiac {
    animation: chakraSpin 55s linear infinite;
    filter: drop-shadow(0 0 18px rgba(217,119,6,0.2));
}

/* Center portrait: no rotation, subtle breathe */
.about-ring-portrait {
    z-index: 5;
    animation: aboutPortraitPulse 5s ease-in-out infinite;
}
.about-ring-portrait .master-img {
    max-width: 52%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.08));
}

@keyframes aboutPortraitPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Ambient warm glow behind the whole chakra */
.about-aura {
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,119,6,0.1) 0%, rgba(217,119,6,0.03) 45%, transparent 70%);
    z-index: -1;
    animation: auraBreath 7s ease-in-out infinite alternate;
}

@media (max-width: 992px) {
    .about-chakra-wrapper {
        max-width: 380px;
        margin-bottom: 40px;
    }
}
@media (max-width: 576px) {
    .about-chakra-wrapper {
        max-width: 300px;
    }
}

/* =========================================
   CONSULTATION MODAL (POPUP)
   ========================================= */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-modal.active {
    display: flex;
    opacity: 1;
}

.premium-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 10, 0, 0.7);
    backdrop-filter: blur(5px);
}

.premium-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 2.5rem;
    z-index: 10;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.premium-modal.active .premium-modal-content {
    transform: translateY(0);
}

.premium-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.3s ease;
}

.premium-modal-close:hover {
    color: #111111;
}

.premium-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-modal-header h3 {
    color: #1A0D05;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-head);
    font-weight: 700;
}

.premium-modal-header p {
    font-size: 0.95rem;
    color: #4B5563;
    margin: 0;
}

.premium-modal-form .form-group {
    margin-bottom: 1.25rem;
}

.premium-modal-form input,
.premium-modal-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #F9FAFB;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #111111;
    transition: all 0.3s ease;
}

.premium-modal-form input:focus,
.premium-modal-form select:focus {
    outline: none;
    border-color: #D97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    background: #ffffff;
}

.premium-modal-form .w-100 {
    width: 100%;
}

/* =========================================
   HOROSCOPE HERO TWO-COLUMN LAYOUT OVERRIDE
   ========================================= */
.horoscope-hero-inner { 
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px !important; 
  text-align: left !important;
}
@media (max-width: 768px) {
  .horoscope-hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

/* =========================================
   LEGAL / DOCUMENT PAGES (Privacy & Terms)
   ========================================= */
.doc-header {
  padding: 120px 0 60px;
  background: var(--dark-brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.doc-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(217,119,6,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.doc-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-top: 1rem;
}
.doc-header p {
  color: var(--light-brown);
  margin-top: 1rem;
}
.doc-body {
  padding: 80px 0;
  background: var(--bg-light);
}
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.doc-container h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(217,119,6,0.2);
}
.doc-container h2:first-child {
  margin-top: 0;
}
.doc-container p, .doc-container ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}
.doc-container ul {
  padding-left: 1.5rem;
}
.doc-container li {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .doc-container {
    padding: 1.5rem;
  }
}

/* FIX FAQ PINK HOVER */
button.faq-q:hover, button.faq-q:focus, button.faq-q:active { background-color: transparent !important; color: #D97706 !important; }




/* FIX PINK HEADINGS IN SERVICE CARDS */
.svc-body h3, .service-card h3 { color: #111111 !important; }

/* =========================================
   AWARDS & RECOGNITION SECTION
========================================= */
.awards-section {
    background: #F8F4EE;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(217,119,6,0.1);
    border-bottom: 1px solid rgba(217,119,6,0.1);
}
.awards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.awards-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.awards-header h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1A0D05;
    margin-bottom: 16px;
}
.awards-header p {
    font-size: 18px;
    color: #7A5B45;
    max-width: 600px;
    margin: 0 auto;
}

/* Film Reel Marquee */
.awards-reel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #D9C3A0; /* Warm gold-beige frame */
    padding: 24px 0;
    z-index: 2;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.05), inset 0 -10px 20px rgba(0,0,0,0.05);
}
/* Perforations */
.awards-reel-wrapper::before,
.awards-reel-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background-image: radial-gradient(circle at 10px 6px, #F8F4EE 4px, transparent 4px);
    background-size: 20px 12px;
    background-repeat: repeat-x;
    z-index: 3;
}
.awards-reel-wrapper::before { top: 4px; }
.awards-reel-wrapper::after { bottom: 4px; }

.awards-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.awards-reel-wrapper:hover .awards-marquee {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.award-card {
    background: #fff;
    width: 280px;
    height: 380px; 
    margin: 0 15px; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(217,119,6,0.08);
}
.award-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(217,119,6,0.15);
    border-color: rgba(217,119,6,0.4);
}

.award-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.award-card:hover::after {
    opacity: 1;
}

.award-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}
.award-card:hover .award-image {
    transform: scale(1.1);
}

.award-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #1A0D05;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
}
}
.doc-body {
  padding: 80px 0;
  background: var(--bg-light);
}
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.doc-container h2 {
  font-size: 1.8rem;
  color: var(--dark-brown);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(217,119,6,0.2);
}
.doc-container h2:first-child {
  margin-top: 0;
}
.doc-container p, .doc-container ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}
.doc-container ul {
  padding-left: 1.5rem;
}
.doc-container li {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .doc-container {
    padding: 1.5rem;
  }
}

/* FIX FAQ PINK HOVER */
button.faq-q:hover, button.faq-q:focus, button.faq-q:active { background-color: transparent !important; color: #D97706 !important; }




/* FIX PINK HEADINGS IN SERVICE CARDS */
.svc-body h3, .service-card h3 { color: #111111 !important; }

/* =========================================
   AWARDS & RECOGNITION SECTION
========================================= */
.awards-section {
    background: #F8F4EE;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(217,119,6,0.1);
    border-bottom: 1px solid rgba(217,119,6,0.1);
}
.awards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.awards-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.awards-header h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #1A0D05;
    margin-bottom: 16px;
}
.awards-header p {
    font-size: 18px;
    color: #7A5B45;
    max-width: 600px;
    margin: 0 auto;
}

/* Film Reel Marquee */
.awards-reel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #D9C3A0; /* Warm gold-beige frame */
    padding: 24px 0;
    z-index: 2;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.05), inset 0 -10px 20px rgba(0,0,0,0.05);
}
/* Perforations */
.awards-reel-wrapper::before,
.awards-reel-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 12px;
    background-image: radial-gradient(circle at 10px 6px, #F8F4EE 4px, transparent 4px);
    background-size: 20px 12px;
    background-repeat: repeat-x;
    z-index: 3;
}
.awards-reel-wrapper::before { top: 4px; }
.awards-reel-wrapper::after { bottom: 4px; }

.awards-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.awards-reel-wrapper:hover .awards-marquee {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.award-card {
    background: #fff;
    width: 280px;
    height: 380px; 
    margin: 0 15px; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(217,119,6,0.08);
}
.award-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(217,119,6,0.15);
    border-color: rgba(217,119,6,0.4);
}

.award-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.award-card:hover::after {
    opacity: 1;
}

.award-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}
.award-card:hover .award-image {
    transform: scale(1.1);
}

.award-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #1A0D05;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .awards-section { padding: 80px 0; }
    .award-card { width: 240px; height: 320px; padding: 20px 16px; margin: 0 10px; }
    .award-image { width: 120px; height: 120px; margin-bottom: 20px; }
    .award-title { font-size: 16px; }
}

/* =========================================
   PUJA BOOKING MODAL
========================================= */
.puja-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
.puja-modal.show { display: flex; }
.puja-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border: 1px solid rgba(217,119,6,0.3);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease;
}
@keyframes modalSlideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.puja-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}
.puja-modal-close:hover { color: #000; }
.puja-modal h2 {
    font-family: var(--font-head);
    margin-bottom: 5px;
    color: #1A0D05;
    font-size: 28px;
}
.puja-modal p {
    margin-bottom: 20px;
    color: #777;
    font-size: 15px;
}
.puja-modal .form-group {
    margin-bottom: 16px;
    text-align: left;
}
.puja-modal .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.puja-modal .form-group input,
.puja-modal .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #FAFAF8;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.puja-modal .form-group input:focus,
.puja-modal .form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
    background: #fff;
}
.puja-modal .form-group input[readonly] {
    background: #F0EAE0;
    color: #8B6914;
    font-weight: 600;
    cursor: default;
}
@media (max-width: 768px) {
    .puja-modal-content { padding: 28px 20px; }
    .puja-modal h2 { font-size: 24px; }
}
.puja-modal button.btn-puja-primary,
.puja-modal button.btn-puja-primary:hover,
.puja-modal button.btn-puja-primary:focus,
.puja-modal button.btn-puja-primary:active {
    color: #fff !important;
}

button.btn-submit-gold,
button.btn-submit-gold:hover,
button.btn-submit-gold:focus,
button.btn-submit-gold:active {
    color: #fff !important;
}

/* Force Privacy Policy Page to White Background */
html.premium-policy-page,
body.premium-policy-page,
.premium-policy-page main,
.premium-policy-page .page-policy-main,
.premium-policy-page .doc-header,
.premium-policy-page .doc-body,
.premium-policy-page .doc-container {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #333333 !important;
}

.premium-policy-page h1, 
.premium-policy-page h2, 
.premium-policy-page h3, 
.premium-policy-page p, 
.premium-policy-page li,
.premium-policy-page span {
    color: #333333 !important;
}

/* =========================================
   MOBILE SIDEBAR / NAV FIX
========================================= */
@media (max-width: 768px) {
    /* Full-screen mobile sidebar overlay */
    .header-nav {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(30, 10, 0, 0.97) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        z-index: 99999 !important;
        padding: 100px 32px 40px !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        transition: none !important;
    }

    /* When open — show sidebar */
    .header-nav.open {
        display: flex !important;
    }

    /* Nav list vertical layout */
    .header-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Each nav item */
    .header-nav ul > li {
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }

    /* Nav links — white text on dark bg */
    .header-nav ul li a {
        display: block !important;
        padding: 18px 0 !important;
        font-size: 20px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        letter-spacing: 0.3px !important;
    }
    .header-nav ul li a::after {
        display: none !important;
    }
    .header-nav ul li a:hover,
    .header-nav ul li a.active {
        color: #FFD700 !important;
    }

    /* Dropdown SVG arrow — white */
    .header-nav ul li.has-dropdown > a svg {
        fill: #ffffff !important;
    }

    /* Dropdown menu inside mobile sidebar */
    .header-nav .dropdown-menu,
    .header-nav .dropdown-menu.horizontal-mega {
        position: static !important;
        display: none !important;
        width: 100% !important;
        background: rgba(255,255,255,0.05) !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 0 0 20px !important;
        flex-direction: column !important;
    }
    .header-nav ul li.has-dropdown:hover .dropdown-menu,
    .header-nav ul li.has-dropdown:hover .dropdown-menu.horizontal-mega,
    .header-nav ul li.has-dropdown.active .dropdown-menu,
    .header-nav ul li.has-dropdown.active .dropdown-menu.horizontal-mega {
        display: flex !important;
    }

    .header-nav .dropdown-menu li {
        border-bottom: none !important;
    }
    .header-nav .dropdown-menu li a {
        font-size: 16px !important;
        padding: 12px 0 !important;
        color: rgba(255,255,255,0.8) !important;
    }
    .header-nav .dropdown-menu li a:hover {
        color: #FFD700 !important;
    }
    .header-nav .dropdown-menu .dm-icon {
        margin-right: 8px;
    }

    /* Menu toggle button — always visible and above everything */
    .menu-toggle {
        display: flex !important;
        z-index: 999999 !important;
        position: relative !important;
    }

    /* Close X icon style when active */
    .menu-toggle.active span {
        background: #ffffff !important;
    }

    /* Lang switch inside mobile — hide or style */
    .header-actions .lang-switch {
        display: none;
    }
    .header-actions .btn-gold {
        display: none !important;
    }

    /* ---- Close (X) Button inside sidebar ---- */
    .mobile-nav-close {
        position: absolute !important;
        top: 28px !important;
        right: 28px !important;
        background: none !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 40px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        z-index: 10 !important;
        padding: 0 !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.2s ease, color 0.2s ease !important;
    }
    .mobile-nav-close:hover {
        color: #FFD700 !important;
        transform: rotate(90deg) !important;
    }

    /* ---- Services Dropdown: click toggle ---- */
    /* Hide dropdown by default (override hover) */
    .header-nav ul li.has-dropdown .dropdown-menu,
    .header-nav ul li.has-dropdown .dropdown-menu.horizontal-mega,
    .header-nav ul li.has-dropdown:hover .dropdown-menu,
    .header-nav ul li.has-dropdown:hover .dropdown-menu.horizontal-mega {
        display: none !important;
    }
    /* Show only when JS adds .mobile-dropdown-open */
    .header-nav ul li.has-dropdown.mobile-dropdown-open .dropdown-menu,
    .header-nav ul li.has-dropdown.mobile-dropdown-open .dropdown-menu.horizontal-mega {
        display: flex !important;
    }

    /* Rotate the arrow icon when dropdown is open */
    .header-nav ul li.has-dropdown.mobile-dropdown-open > a svg {
        transform: rotate(180deg) !important;
        transition: transform 0.3s ease !important;
    }
    .header-nav ul li.has-dropdown > a svg {
        transition: transform 0.3s ease !important;
    }
}

/* ---- Hide mobile close button on desktop ---- */
.mobile-nav-close {
    display: none !important;
}



/* FORCE FULL WIDTH OVERRIDES */
html, body { width: 100% !important; max-width: 100vw !important; margin: 0 !important; padding: 0 !important; overflow-x: hidden !important; }
.site-header, .top-bar, .hero-bg-effects, .site-footer { width: 100% !important; max-width: 100% !important; left: 0 !important; right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; box-sizing: border-box !important; }
.premium-homepage .elementor-section-boxed > .elementor-container { max-width: 1140px !important; }
