/* ========================================================
   Divine Astrology — Main Stylesheet
   ======================================================== */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1f2937;
  background-color: #ffffff !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* ========== DESIGN TOKENS ========== */
:root {
  --accent: #601A1A;
  --accent-hover: #3E2723;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --brown-50: #F3E6D8;
  --brown-100: #E6D2C0;
  --brown-200: #D4B99D;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;

  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-700: #7c3aed;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08),
    0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  --max-w: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-extra-slow: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== GLOBAL COMPONENTS ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 1rem 0;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
}
.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

/* ========== GLOBAL ANIMATIONS ========== */
.reveal-up,
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* For staggered delays if not handled by JS */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }

/* ========== UTILITIES ========== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.badge-brown {
  background: var(--brown-100);
  color: var(--accent);
}
.badge-purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

.section-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px) scale(1.03);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.btn-outline:hover {
  background: var(--brown-50);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.btn-outline:active {
  transform: scale(0.97);
}

/* ========== TOPBAR ========== */
.topbar {
  background: #601A1A;
  color: rgba(255, 243, 220, 0.92);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
}

/* Mobile Topbar Adjustments */
@media (max-width: 767px) {
  .topbar {
    display: none !important;
  }
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.375rem;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 243, 220, 0.92);
}
.topbar-left svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
}
.topbar-left strong {
  font-weight: 700;
  color: #ffd580;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.topbar-email {
  color: rgba(255, 243, 220, 0.9);
  transition: color 0.2s;
}
.topbar-email:hover {
  color: #ffd580;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 243, 220, 0.25);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.topbar-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 243, 220, 0.75);
  transition: color 0.2s, transform 0.2s;
}
.topbar-social-link svg {
  width: 15px;
  height: 15px;
}
.topbar-social-link:hover {
  color: #ffd580;
  transform: translateY(-1px);
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brown-100);
  box-shadow: var(--shadow-md);
}

.header--scrolled .header-logo-img {
  transform: scale(0.85);
}

.header-logo-img {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem; /* Mobile height */
  position: relative; /* For absolute centering of logo */
}
@media (min-width: 768px) {
  .header-inner {
    height: 5.5rem; /* Desktop height */
  }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header-logo-img {
  max-height: 60px; /* Reduced for mobile */
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .header-logo {
    position: absolute;
    left: 42%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .header-logo-img {
    max-height: 80px;
    max-width: 260px;
  }
}
.header-logo-text {
  display: none;
}

.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
}
.header-nav > ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.25rem !important; /* Reduced gap to fit all items */
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.header-nav > ul > li {
  position: relative !important;
  list-style: none !important;
}
.header-nav > ul > li > a {
  color: var(--gray-700);
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9375rem; /* Slightly smaller font to fit */
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  white-space: nowrap; /* Prevent text wrapping inside items */
}
.header-nav > ul > li > a:hover {
  color: var(--accent);
}
  color: var(--accent);
}

/* ── Dropdown Nav ── */
.nav-item {
  position: relative;
}
.nav-link-parent {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  white-space: nowrap;
}
.nav-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nav-item:hover > .nav-link-parent > .nav-chevron {
  transform: rotate(180deg);
}
.nav-item--nested:hover > .nav-link-parent > .nav-chevron {
  transform: rotate(0deg);
}

/* ── Dropdown Arrows ── */
.menu-item-has-children > a {
  display: flex !important;
  align-items: center !important;
  gap: 0.375rem !important;
}
.menu-item-has-children > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* ── Main dropdown ── */
.header-nav ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--brown-100);
  border-radius: 0.875rem;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  padding-top: 0.75rem;
  z-index: 100;
  list-style: none;
}

/* Wide Dropdown Class (Add 'nav-dropdown--wide' in WordPress Menu) */
.header-nav ul li.nav-dropdown--wide .sub-menu {
  min-width: 800px;
  display: none; /* Reset for hover logic */
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}
.header-nav ul li.nav-dropdown--wide:hover .sub-menu {
  display: grid;
}

/* Invisible bridge */
.header-nav ul li .sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.header-nav ul li:hover > .sub-menu {
  display: block;
}
.header-nav ul li.nav-dropdown--wide:hover > .sub-menu {
  display: grid;
  animation: dropFade 0.18s ease forwards;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.header-nav ul li .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}
.header-nav ul li .sub-menu li a:hover {
  background: var(--brown-50);
  color: var(--accent);
}

/* ── Wide dropdown (Products with icons) ── */
.nav-dropdown--wide {
  min-width: 220px;
}
.nav-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── Nested sub-submenu ── */
.header-nav ul li .sub-menu li {
  position: relative;
}
.header-nav ul li .sub-menu li:hover > a {
  background: var(--brown-50);
  color: var(--accent);
}
.header-nav ul li .sub-menu li .sub-menu {
  position: absolute;
  top: -0.5rem;
  left: auto;
  right: 100%;
  transform: none;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--brown-100);
  border-radius: 0.875rem;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  z-index: 110;
  list-style: none;
  display: none;
}

.header-nav ul li .sub-menu li .sub-menu::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  left: auto;
  bottom: 0;
  width: 10px;
  background: transparent;
}
.header-nav ul li .sub-menu li:hover > .sub-menu {
  display: block;
  animation: subFade 0.18s ease forwards;
}
@keyframes subFade {
  from { opacity: 0; transform: translateX(4px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}
.mobile-menu-btn:hover {
  background: var(--brown-50);
}
.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  color: var(--accent); /* Changed from gray-700 to primary accent color */
}
@media (max-width: 767px) {
  .mobile-menu-btn {
    order: -1; /* Flips the hamburger to the left side */
  }
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ========== DRAWER OVERLAY ========== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .drawer-overlay { display: none !important; }
}

/* ========== MOBILE SLIDE-IN DRAWER ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
@media (min-width: 768px) {
  .mobile-drawer { display: none !important; }
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--brown-100);
  background: linear-gradient(135deg, var(--brown-50), var(--pink-50));
  flex-shrink: 0;
}
.drawer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.drawer-close:hover {
  background: var(--brown-100);
}
.drawer-close svg {
  width: 18px;
  height: 18px;
  color: var(--gray-700);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0 5.5rem;
  display: flex;
  flex-direction: column;
}
.drawer-body::-webkit-scrollbar { width: 3px; }
.drawer-body::-webkit-scrollbar-track { background: transparent; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 9999px; }

/* Top-level links */
.drawer-link {
  display: block;
  padding: 0.875rem 1.25rem;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s, background 0.2s;
}
.drawer-link:hover {
  background: var(--brown-50);
  color: var(--accent);
}

/* Accordion */
.drawer-accordion {
  border-bottom: 1px solid var(--gray-100);
}
.drawer-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}
.drawer-accordion-btn:hover {
  background: var(--brown-50);
  color: var(--accent);
}
.drawer-accordion.open > .drawer-accordion-btn {
  color: var(--accent);
  background: var(--brown-50);
}
.drawer-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.28s ease, color 0.2s;
}
.drawer-accordion.open .drawer-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Accordion body */
.drawer-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  background: linear-gradient(to bottom, var(--brown-50), rgba(252,231,243,0.25));
}
.drawer-accordion.open > .drawer-accordion-body {
  max-height: 900px;
}
.drawer-sub-link {
  display: block;
  padding: 0.625rem 1.5rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(229,231,235,0.5);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-sub-link:last-child { border-bottom: none; }
.drawer-sub-link:hover {
  color: var(--accent);
  padding-left: 1.875rem;
}
/* Divider item (e.g. Pooja / Anusthan separating from Consultation group) */
.drawer-sub-link--divider {
  border-top: 2px solid var(--brown-100);
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Nested sub-accordion (Consultation inside Services) ── */
.drawer-sub-accordion {
  border-bottom: 1px solid rgba(229,231,235,0.5);
}
.drawer-sub-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.5rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}
.drawer-sub-accordion-btn:hover {
  color: var(--accent);
  background: rgba(255,112,16,0.06);
}
.drawer-sub-accordion.open > .drawer-sub-accordion-btn {
  color: var(--accent);
  font-weight: 600;
}
.drawer-sub-chevron {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.25s ease, color 0.2s;
}
.drawer-sub-accordion.open .drawer-sub-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.drawer-sub-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: rgba(255,237,213,0.18);
}
.drawer-sub-accordion.open > .drawer-sub-accordion-body {
  max-height: 600px;
}
/* Deepest level links */
.drawer-deep-link {
  display: block;
  padding: 0.5rem 1.875rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(229,231,235,0.35);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-deep-link:last-child { border-bottom: none; }
.drawer-deep-link:hover {
  color: var(--accent);
  padding-left: 2.25rem;
}

/* CTA button */
.drawer-cta {
  display: block;
  margin: 1.25rem 1.25rem 0;
  padding: 0.875rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.875rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.drawer-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

/* Remove old .mobile-menu stubs */
.mobile-menu { display: none !important; }

/* ========== HEADER ACTIONS ========== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .header-actions .btn-maroon {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}
.btn-maroon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background: #601A1A;
  color: #fff;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-maroon:hover {
  background: #4A1212;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 26, 26, 0.35);
}

/* ========== HERO SLIDER ========== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 80svh;
  background-color: #020b18; /* Fallback */
}
@media (min-width: 768px) {
  .hero {
    min-height: 480px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 520px;
  }
}

/* ---- Mobile Hero ---- */
@media (max-width: 767px) {
  /* Full-width: override container padding inside the hero */
  .hero .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  /* Hero height ~65% of viewport */
  .hero {
    min-height: 65vh !important;
  }

  /* Image: absolute full-bleed background */
  .hero-image-wrap {
    display: block !important;
    position: absolute !important;
    inset: 0;
    z-index: 0;
    border-radius: 0;
  }
  .hero-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center center;
    box-shadow: none !important;
  }

  /* Gradient overlay: dark at top, clear in middle, dark at bottom */
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.05) 45%,
      rgba(0, 0, 0, 0.70) 100%
    );
    z-index: 1;
  }

  /* Grid: badge middle-top, button middle-bottom */
  .hero-grid {
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 65vh;
    padding: 1.5rem 1rem 3rem !important;
    gap: 0 !important;
  }

  /* Text at top */
  .hero-text {
    padding: 0 !important;
    width: 100%;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex: 1 !important;
  }

  /* Hide badge on mobile */
  .hero-badge {
    display: none !important;
  }

  /* Show h1 title on mobile */
  .hero-title {
    display: block !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin-bottom: 0 !important;
  }

  /* Hide desc and em */
  .hero-desc {
    display: none;
  }

  /* Button row at bottom */
  .hero-btns {
    width: 100%;
    margin-top: auto;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .hero-btn-secondary {
    display: none !important;
  }
  /* Compact auto-width button */
  .hero-btn-primary {
    flex: none !important;
    width: auto !important;
    padding: 0.6rem 1.25rem !important;
    font-size: 0.8125rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
  }

  .slider-dots {
    z-index: 20;
    bottom: 0.5rem !important;
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-slide.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}
.hero-slide[data-slide="0"] {
  background-image: url('../images/hero-gemstone.png');
}
.hero-slide[data-slide="1"] {
  background-image: url('../images/hero-kundli.png');
}
.hero-slide[data-slide="2"] {
  background-image: url('../images/hero-lalkitab.png');
}
.hero-slide[data-slide="3"] {
  background-image: url('../images/hero-yantra.png');
}

.hero-grid {
  display: block;
  padding: 4rem 1rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    padding: 6rem 0;
  }
}

.hero-text {
  position: relative;
  z-index: 10;
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .hero-text {
    padding: 4rem 0 4rem 5rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brown-100), var(--pink-100));
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}


.hero-desc {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 36rem;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .hero-btns {
    gap: 0.75rem;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  background: #eab308;
  color: #000;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero-btn-primary:hover {
  background: #ca8a04;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.hero-btn-primary:active {
  transform: scale(0.97);
}

.hero-image-wrap {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero-image-wrap img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 20;
}
@media (min-width: 1024px) {
  .hero-nav {
    padding: 0 1.5rem;
  }
}
.hero-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #eab308;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  pointer-events: auto;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .hero-nav-btn {
    width: 3rem;
    height: 3rem;
  }
}
.hero-nav-btn:hover {
  background: #ca8a04;
  transform: scale(1.1);
}
.hero-nav-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 4rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 4rem;
  }
}

/* Image Column */
.about-image-wrap {
  position: relative;
  border-radius: 1rem;
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}
.about-quote {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background: #F3E6D8;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  max-width: 85%;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
@media (min-width: 768px) {
  .about-quote {
    bottom: -1.5rem;
    right: -2rem;
    max-width: 80%;
  }
}
.about-quote p {
  color: #601A1A;
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.5;
}

/* Text Column */
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #601A1A;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}

/* Visibility toggle to place headline before image on stacked layouts */
.about-title-mobile { 
  display: block; 
  margin-bottom: 0 !important; 
  font-size: 1.85rem !important; /* Forces single line on tiny screens */
  white-space: nowrap;
}
.about-title-desktop { display: none; }
@media (min-width: 1024px) {
  .about-title-mobile { display: none; }
  .about-title-desktop { display: block; }
}

.about-desc p {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(140, 106, 72, 0.2);
  margin: 1.5rem 0 2rem;
}
@media (max-width: 767px) {
  .about-divider {
    display: none;
  }
}

/* Stats */
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat-num {
  color: #601A1A;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.about-stat-label {
  color: #8C6A48;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* Mobile Stats Adjustments */
@media (max-width: 767px) {
  .about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brown-50), #fff);
    padding: 1.25rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid var(--brown-100);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .about-stat {
    align-items: center;
    text-align: center;
    padding: 0 0.25rem;
  }
  .about-stat:not(:last-child) {
    border-right: 1px solid rgba(140, 106, 72, 0.15);
  }
  .about-stat-num {
    font-size: 1.35rem;
  }
  .about-stat-label {
    font-size: 0.6rem;
    margin-top: 0.35rem;
  }
}

/* ========== CATEGORIES ========== */
.categories {
  padding: 3.5rem 0;
  background: #fff;
}
@media (min-width: 768px) {
  .categories {
    padding: 6rem 0;
  }
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Full-bleed image category card ===== */
.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Full-cover photo */
.cat-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: inherit;
}

/* Gradient overlay — dark at bottom for text legibility */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 6, 6, 0.82) 0%,
    rgba(20, 6, 6, 0.35) 45%,
    transparent 100%
  );
  border-radius: inherit;
  transition: background 0.35s ease;
}

/* Text block sits above the overlay */
.cat-body {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1.1rem;
}

.cat-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.cat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover: lift card + zoom image + deepen overlay */
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.35);
}
.cat-card:hover .cat-image {
  transform: scale(1.07);
}
.cat-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(44, 17, 17, 0.90) 0%,
    rgba(44, 17, 17, 0.50) 45%,
    transparent 100%
  );
}

/* Arrow stays top-right */
.cat-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 30px;
  height: 30px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-arrow svg { width: 18px; height: 18px; }
.cat-card:hover .cat-arrow {
  opacity: 1;
  color: #fff;
  background: rgba(44, 17, 17, 0.85);
  transform: translate(0, 0) rotate(-45deg);
}

/* Legacy icon-wrap — hidden now that we use images */
.cat-icon-wrap { display: none; }


/* ========== PRODUCTS ========== */

.products {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #fff,
    rgba(255, 237, 213, 0.3),
    rgba(252, 231, 243, 0.3)
  );
}
.products-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.75rem;
  padding: 0.5rem 1.25rem 1.75rem;
  margin: 0 -1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-grid::-webkit-scrollbar {
  display: none;
}
.products-grid .product-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow-x: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }
  .products-grid .product-card {
    flex: none;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-100);
}
.product-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-10px);
  border-color: var(--brown-100);
}
.product-card:active {
  transform: scale(0.98);
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
}
@media (min-width: 768px) {
  .product-image {
    aspect-ratio: 1/1;
  }
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-image-overlay {
  opacity: 1;
}
.product-planet {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.product-info {
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .product-info {
    padding: 1.5rem;
  }
}
.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.price-prefix {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-right: 0.375rem;
}
/* Ensure WooCommerce price inside matches our color */
.product-price .woocommerce-Price-amount {
  color: var(--accent);
  font-weight: 700;
  font-size: inherit;
}
.product-price .woocommerce-Price-amount bdi {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.product-price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
}
.product-price del {
  opacity: 0.5;
  font-size: 0.85em;
  text-decoration: line-through;
  margin-right: 0.25rem;
}
.product-price ins {
  text-decoration: none;
}
.product-actions {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.product-btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.625rem 0.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .product-btn-primary {
    gap: 0.5rem;
    padding: 0.625rem;
    font-size: 0.875rem;
  }
}
.product-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-lg);
}
.product-btn-primary:active {
  transform: scale(0.97);
}
.product-btn-outline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.625rem 0.25rem;
  background: var(--brown-50);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: var(--transition);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .product-btn-outline {
    flex: none;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
.product-btn-outline:hover {
  background: var(--brown-100);
}
.product-btn-outline:active {
  transform: scale(0.97);
}

/* ========== PROMO BANNERS ========== */
.promo-banners {
  padding: 3rem 0;
  background: #f9f6f1;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (max-width: 640px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 220px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (min-width: 768px) {
  .promo-card {
    min-height: 260px;
  }
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.promo-card:hover .promo-bg-img {
  transform: scale(1.06);
}

.promo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 0;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

/* Consultation cards: warmer deep-maroon tint */
.promo-card--kundli .promo-overlay,
.promo-card--consult .promo-overlay {
  background: linear-gradient(
    135deg,
    rgba(60, 10, 10, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.promo-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Shop tags in orange accent */
.promo-card--gems .promo-tag,
.promo-card--rudraksha .promo-tag {
  background: rgba(var(--accent), 0.25);
  background: rgba(255, 112, 16, 0.3);
  border-color: rgba(255, 112, 16, 0.5);
  color: #ffe4c4;
}

/* Consultation tags in soft maroon */
.promo-card--kundli .promo-tag,
.promo-card--consult .promo-tag {
  background: rgba(150, 30, 30, 0.35);
  border-color: rgba(200, 80, 80, 0.5);
  color: #ffd5d5;
}

.promo-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .promo-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  }
}

.promo-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  width: fit-content;
  transition: background 0.25s, transform 0.25s;
}
.promo-card:hover .promo-btn {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

/* ========== SERVICES ========== */

.services {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--purple-50),
    var(--pink-50),
    var(--brown-50)
  );
  position: relative;
  overflow: hidden;
}
.services-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(196, 181, 253, 0.3);
  border-radius: 50%;
  filter: blur(48px);
}
.services-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(253, 186, 116, 0.3);
  border-radius: 50%;
  filter: blur(48px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-100);
  /* max-width: 420px; */
  width: 100%;
  margin: 0 auto;
}
.service-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-10px);
  border-color: var(--purple-100);
}

.service-image {
  height: 13rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .service-image {
    height: 12rem;
  }
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.1);
}
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.service-body {
  padding: 1.5rem;
}
.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--brown-100), var(--pink-100));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.service-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.service-desc {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover {
  color: var(--accent-hover);
}
.service-card:hover .service-link span {
  transform: translateX(4px);
}
.service-link span {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* ========== PATRIKA ========== */
.patrika {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff, rgba(255, 237, 213, 0.2));
}
.patrika-card {
  background: linear-gradient(
    135deg,
    var(--brown-100),
    var(--pink-100),
    var(--purple-100)
  );
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) {
  .patrika-card {
    padding: 3rem;
  }
}
.patrika-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}
.patrika-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(196, 181, 253, 0.3);
  border-radius: 50%;
  filter: blur(48px);
}
.patrika-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .patrika-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .patrika-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.patrika-text {
  text-align: center;
}
@media (min-width: 768px) {
  .patrika-text {
    text-align: left;
  }
}
.patrika-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  color: var(--purple-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.patrika-desc {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .patrika-desc {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  }
}
.patrika-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.patrika-btns .btn-primary,
.patrika-btns .btn-outline {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .patrika-btns {
    gap: 1rem;
    flex-direction: row;
    max-width: none;
    margin: 0;
  }
  .patrika-btns .btn-primary,
  .patrika-btns .btn-outline {
    flex: none;
    width: auto;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .patrika-btns {
    justify-content: flex-start;
  }
}

/* Patrika Cover Image */
.patrika-cover {
  display: flex;
  justify-content: center;
}
.patrika-cover--mobile {
  display: block;
  max-width: 200px;
  margin: 1.5rem auto 2rem;
}
.patrika-cover--desktop {
  display: none;
}
@media (min-width: 768px) {
  .patrika-cover--mobile {
    display: none !important;
  }
  .patrika-cover--desktop {
    display: flex;
  }
}

.patrika-cover-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 6px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.5s ease;
}
.patrika-cover-frame:hover {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .patrika-cover-frame {
    max-width: 320px;
  }
}
.patrika-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.patrika-cover-frame:hover img {
  transform: scale(1.06);
}
.patrika-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
}
.patrika-cover-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
}
.patrika-cover-press {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
  opacity: 0.85;
}
.patrika-cover-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.375rem;
}
.patrika-cover-edition {
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brown-50), var(--purple-50));
}
.testimonials-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.75rem;
  padding: 0.5rem 1.25rem 2rem;
  margin: 0 -1.25rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: visible;
    padding: 0;
    margin: 0;
    scroll-snap-type: none;
  }
}

.testimonial-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: none;
  }
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.testimonial-avatar {
  position: relative;
}
.testimonial-avatar img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--brown-50);
}
.testimonial-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}
.testimonial-play {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}
.testimonial-play:hover {
  transform: scale(1.1);
}
.testimonial-play svg {
  width: 18px;
  height: 18px;
  color: #fff;
  margin-left: 2px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--gray-800);
}
.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #facc15;
  fill: #facc15;
}

.testimonial-quote {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 237, 213, 0.5),
    rgba(252, 231, 243, 0.5)
  );
  border-radius: 1rem;
  padding: 1rem;
}
.testimonial-quote-icon {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  color: var(--accent);
  opacity: 0.2;
}
.testimonial-quote-icon svg {
  width: 32px;
  height: 32px;
}
.testimonial-quote p {
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff, rgba(243, 232, 255, 0.3));
}
.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  padding: 0 !important;
}
.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem !important;
  text-align: left !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--gray-800) !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  line-height: 1 !important;
  min-height: 0 !important;
}
@media (min-width: 768px) {
  .faq-question {
    font-size: 1.05rem !important;
    padding: 1.25rem 2rem !important;
  }
}
.faq-question:hover {
  background: linear-gradient(
    to right,
    rgba(255, 237, 213, 0.5),
    rgba(252, 231, 243, 0.5)
  );
}

.faq-chevron {
  padding: 0.5rem;
  background: var(--brown-50);
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-chevron svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  background: var(--accent);
}
.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: none;
  visibility: hidden;
}
.faq-item.open .faq-answer {
  max-height: 1000px;
  display: block;
  visibility: visible;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  background: linear-gradient(
    to right,
    rgba(255, 237, 213, 0.3),
    rgba(252, 231, 243, 0.3)
  );
}
.faq-answer-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.faq-answer-box p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== KUNDLI CTA ========== */
.kundli {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--purple-100),
    var(--pink-100),
    var(--brown-100)
  );
  position: relative;
  overflow: hidden;
}
.kundli-bg-1 {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}
.kundli-bg-2 {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(253, 186, 116, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.kundli-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .kundli-card {
    padding: 3rem;
  }
}
.kundli-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .kundli-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.kundli-info-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .kundli-info-header {
    flex-direction: row;
    align-items: center;
  }
}
.kundli-info-icon {
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--brown-100), var(--pink-100));
  border-radius: 1rem;
  width: fit-content;
  box-shadow: var(--shadow-md);
}
.kundli-info-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.kundli-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-800);
}
@media (min-width: 768px) {
  .kundli-info h2 {
    font-size: 2.25rem;
  }
}
.kundli-info p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.kundli-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.kundli-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-600);
}
.kundli-feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--brown-100), var(--pink-100));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.kundli-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.kundli-form-wrap {
  background: linear-gradient(135deg, var(--brown-50), var(--pink-50));
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .kundli-form-wrap {
    padding: 1.5rem;
  }
}
.kundli-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.kundli-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
/* 2-column row inside the form */
.kundli-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.kundli-form label {
  display: block;
  font-size: 0.775rem;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.kundli-form input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.kundli-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(96, 26, 26, 0.12);
}
.kundli-form-submit {
  width: 100%;
  padding: 0.7rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  margin-top: 0.25rem;
}
.kundli-form-submit:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}
.kundli-form-submit:active {
  transform: scale(0.98);
}

/* ========== BLOG ========== */
.blog {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--purple-50), var(--brown-50));
}
.blog-grid {
  display: flex;
  overflow-x: auto;
  gap: 2rem; /* More breathing room */
  padding: 0.5rem 1.25rem 1.75rem;
  margin: 0 -1.25rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: visible;
    padding: 0;
    margin: 0 0 4rem;
    scroll-snap-type: none;
  }
}

.blog-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .blog-card {
    flex: none;
  }
}
.blog-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.blog-image {
  height: 13rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .blog-image {
    height: 12rem;
  }
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.1);
}
.blog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.blog-body {
  padding: 1.5rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-category {
  padding: 0.375rem 0.75rem;
  background: var(--brown-100);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.blog-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.blog-date svg {
  width: 14px;
  height: 14px;
}
.blog-title {
  font-family: \'Inter\', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-excerpt {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}
.blog-link:hover {
  color: var(--accent-hover);
}
.blog-card:hover .blog-link svg {
  transform: translateX(4px);
}
.blog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* ========== HOROSCOPES ========== */
.horoscopes {
  margin-top: 1rem;
}
.horoscope-grid {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0.5rem 1rem 1.5rem;
  margin: 0 -1rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.horoscope-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .horoscope-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    overflow-x: visible;
    padding: 0;
    margin: 0 0 2rem;
    scroll-snap-type: none;
  }
}

.horoscope-btn {
  flex: 0 0 100px;
  padding: 0.875rem 0.5rem;
  border-radius: 0.875rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: center;
}
@media (min-width: 640px) {
  .horoscope-btn {
    padding: 1.25rem;
    border-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .horoscope-btn {
    padding: 1.5rem;
    flex: none;
  }
}
.horoscope-btn:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}
.horoscope-btn:active {
  transform: scale(0.97);
}
.horoscope-btn.selected {
  box-shadow: var(--shadow-xl);
  outline: 2px solid var(--accent);
  transform: scale(1.05);
}
.horoscope-symbol {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
  color: var(--gray-700);
}
@media (min-width: 640px) {
  .horoscope-symbol {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.horoscope-btn.selected .horoscope-symbol {
  color: var(--accent);
  transform: scale(1.1);
}
.horoscope-sign {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-700);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .horoscope-sign {
    font-size: 0.8125rem;
    white-space: normal;
    overflow: visible;
  }
}
.horoscope-element {
  font-size: 0.625rem;
  color: var(--gray-500);
  display: block;
}
@media (min-width: 640px) {
  .horoscope-element {
    font-size: 0.75rem;
  }
}

.horoscope-display {
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-2xl);
  text-align: center;
}
@media (min-width: 768px) {
  .horoscope-display {
    padding: 2rem;
  }
}
.horoscope-display--empty {
  background: linear-gradient(
    135deg,
    var(--brown-100),
    var(--pink-100),
    var(--purple-100)
  );
  box-shadow: var(--shadow-lg);
}
.horoscope-display--active {
  background: linear-gradient(135deg, #fff, var(--brown-50));
  border: 1px solid var(--brown-100);
}
/* Layout for active horoscope header */
.horoscope-display-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.horoscope-title-wrap {
  text-align: left;
}

.horoscope-display-icon {
  padding: 0.375rem;
  background: linear-gradient(135deg, var(--brown-50), var(--pink-50));
  border-radius: 1rem;
  display: inline-flex;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}
.horoscope-display-icon span {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}
@media (min-width: 768px) {
  .horoscope-display-icon span {
    font-size: 3.5rem;
  }
}
.horoscope-display-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.125rem;
}
@media (min-width: 768px) {
  .horoscope-display-name {
    font-size: 1.75rem;
  }
}
.horoscope-display-subtitle {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.9375rem;
}
.horoscope-prediction {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .horoscope-prediction {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.horoscope-prediction p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .horoscope-prediction p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}
.horoscope-empty-emoji {
  font-size: 3.75rem;
  margin-bottom: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}
.horoscope-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.horoscope-empty-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* ========== REELS ========== */
.reels {
  padding: 5rem 0;
  background: #FDF9F3;
}
.reels .section-title.text-maroon {
  color: #601A1A;
}
.reels-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 1.25rem 2rem;
  margin: 0 -1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (min-width: 768px) {
  .reels-grid {
    padding: 1rem 0 2rem;
    margin: 0;
  }
}
.reels-grid::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  flex: 0 0 260px;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  display: block;
  scroll-snap-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #601A1A;
}
@media (min-width: 768px) {
  .reel-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 240px;
    max-width: 320px;
  }
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reel-card:hover .reel-thumbnail {=======================
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 40%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}
.reel-card:hover .reel-play-btn {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-play-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.25rem;
}

.reel-info {
  margin-top: auto;
  padding: 1.5rem;
}
.reel-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.reel-placeholder .reel-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

/* ========== FOOTER ========== */
.footer {
  background: #601A1A;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}
.footer-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: #7c3aed;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}
.footer-inner {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-brand-img {
  height: 100px !important;
  max-height: 100px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-name {
  display: none;
}
.footer-brand-desc {
  color: var(--gray-300);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(31, 41, 55, 0.8);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.footer-social a:hover {
  background: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.1);
}
.footer-social a:active {
  transform: scale(0.95);
}
.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a,
.footer-links li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-links a:hover,
.footer-links li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer-contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brown-200);
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 4rem;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  transition: var(--transition);
  border-radius: 0.75rem;
  margin: 0 0.25rem;
  color: var(--gray-600);
  font-size: 0.6875rem;
}
.mobile-nav a.active {
  color: var(--accent);
  transform: scale(1.1);
}
.mobile-nav a.active .mobile-nav-icon {
  background: var(--brown-50);
  padding: 0.5rem;
  border-radius: 0.75rem;
}
.mobile-nav a svg {
  width: 22px;
  height: 22px;
}
.mobile-nav a.active svg {
  stroke-width: 2.5;
}

/* Padding bottom for mobile nav */
@media (max-width: 767px) {
  body {
    padding-bottom: 4.5rem;
  }
  /* Prevent any rogue horizontal scroll */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 112, 16, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 112, 16, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 112, 16, 0); }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

/* ========== SECTION HEADER PATTERN ========== */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}
.section-header .section-title {
  margin-bottom: 1rem;
}
.section-header .section-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .section-header .section-desc {
    font-size: 1.25rem;
  }
}

/* ========== SVG ICON INLINE HELPERS ========== */
.icon-inline {
  display: inline-block;
  vertical-align: middle;
}


/* ========== MOBILE SPACING OVERRIDES ========== */
@media (max-width: 767px) {
  .hero { padding: 1rem 0 1.5rem !important; }
  .about, .categories, .patrika, .products, .services, .kundli, .testimonials, .blog, .faq, .reels {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .section-header {
    margin-bottom: 1.5rem !important;
  }
}


/* About Stats Clean 2x2 Grid */
.about-stats-2x2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 2rem;
}
.about-stats-2x2 .about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.about-stats-2x2 .about-stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------
   Global Section Spacing & Alternating BG
--------------------------------- */
section {
  padding: 3rem 0 !important;
}
@media (min-width: 1024px) {
  section {
    padding: 4rem 0 !important;
  }
}

section.hero {
  padding: 0 !important; /* Keep hero full screen / custom */
}

/* Alternating Backgrounds */
section.about,
section.patrika,
section.services,
section.faq-section,
section.instagram-feed {
  background-color: #ffffff !important;
}

section.categories,
section.products,
section.kundli,
section.promo,
section.testimonials,
section.cta-section {
  background-color: #fdfaf6 !important; /* Elegant off-white */
}
