/* ============================================
   WERINJAY PREMIUM CSS 2025
   Complete Stylesheet for All Pages
   Author: Claude AI
   Version: 1.0
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Brand Colors */
  --gold: #CFA74D;
  --gold-dark: #B88A3C;
  --gold-light: #E8C87D;
  --maroon: #4A1F14;
  --maroon-deep: #2F150F;
  --beige: #F8F3E9;
  --white: #FFFFFF;
  
  /* Text Colors */
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --text-muted: #999999;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --max-width: 1200px;
}

/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Quicksand', system-ui, -apple-system, sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ========== UTILITY CLASSES ========== */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

.muted {
  color: var(--text-muted);
}

.center {
  text-align: center;
}

/* ========== HEADER & NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.modal-close:hover,
.close:hover {
  background: var(--maroon);
  color: var(--white);
  transform: rotate(90deg);
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #1a0d09 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-list a {
  color: inherit;
  transition: var(--transition-fast);
}

.contact-list a:hover {
  color: var(--gold-light);
}

.footer-col.wide {
  grid-column: span 1;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
  transform: translateY(-5px) rotate(5deg);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.small-muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ========== FLOATING WHATSAPP ========== */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  }
}

#whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

#whatsapp-btn svg {
  flex-shrink: 0;
}

/* ========== SUCCESS/FAILED PAGES ========== */
.box {
  max-width: 500px;
  margin: 5rem auto;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.box p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.box a.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
}

.box a.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(207, 167, 77, 0.4);
}

/* ========== POLICY PAGES ========== */
.policy-page {
  max-width: 900px;
  margin: 6rem auto 4rem;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--beige);
}

.policy-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--maroon);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.policy-page p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-page a {
  color: var(--gold);
  font-weight: 600;
}

.policy-page a:hover {
  text-decoration: underline;
}

.back-btn,
.back-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.back-btn:hover,
.back-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(207, 167, 77, 0.4);
}

/* ========== PRICING DETAILS PAGE ========== */
.note {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: rgba(207, 167, 77, 0.1);
  border: 2px solid rgba(207, 167, 77, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  /* Navigation - Side Drawer */
  .nav-toggle {
    display: block !important;
    font-size: 1.5rem;
    color: var(--maroon);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1001;
  }

  .nav-toggle:hover {
    color: var(--gold);
    transform: scale(1.1);
  }

  /* Side drawer menu - NOT full screen */
  .main-nav {
    position: fixed;
    top: 70px;
    right: -280px;
    width: 280px;
    height: calc(100vh - 70px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    background: white;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
    border-left: 1px solid var(--beige);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
  }

  /* When menu is open */
  .main-nav.active {
    right: 0;
  }

  /* Menu links */
  .main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--beige);
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  /* Remove underline effect on mobile */
  .main-nav a::after {
    display: none !important;
  }

  /* Hover effect */
  .main-nav a:hover {
    background: linear-gradient(90deg, rgba(207, 167, 77, 0.2) 0%, transparent 100%);
    color: var(--gold);
    padding-left: 2rem;
  }

  /* Rest of media query */
  .header-grid {
    flex-wrap: wrap;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero {
    min-height: 80vh;
    padding: 5rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mandir-slider {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .test-quotes {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  #whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.25rem;
  }

  #whatsapp-btn span {
    display: none;
  }

  .modal-content {
    margin: 0 1rem;
  }

  .policy-page {
    margin: 4rem 1rem 2rem;
    padding: 2rem;
  }
}

/* Mobile (640px and below) */
@media (max-width: 640px) {
  .wrap {
    padding: 0 1rem;
  }

  .site-header {
    padding: 0;
  }

  .header-grid {
    padding: 0.75rem 0;
  }

  .site-name {
    font-size: 1.25rem;
  }

  .site-sub {
    font-size: 0.75rem;
  }

  .site-logo {
    height: 40px;
    width: 40px;
  }

  .hero {
    min-height: 70vh;
    padding: 4rem 1rem 2rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-content .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .feature {
    padding: 1.5rem 1rem;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .slide {
    margin: 0 auto;
  }

  .slide img {
    height: 180px;
  }

  .slide h3 {
    font-size: 1.1rem;
    padding: 0.75rem 1rem 0.5rem;
  }

  .slide .price {
    font-size: 1.25rem;
  }

  .package-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .package-card h3 {
    font-size: 1.1rem;
  }

  .package-card h4 {
    font-size: 1.5rem;
  }

  .explore-card img {
    height: 200px;
  }

  .explore-card h3 {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .how-item img {
    height: 200px;
  }

  .quote {
    font-size: 1.1rem;
    margin: 2rem auto 0;
    padding: 0 1rem;
  }

  .video-card img {
    height: 250px;
  }

  .video-caption {
    font-size: 1rem;
    padding: 1rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn::after {
    font-size: 1.5rem;
  }

  .tq {
    font-size: 1.1rem;
  }

  .res-card img {
    height: 180px;
  }

  .res-caption {
    font-size: 1rem;
    padding: 1rem;
  }

  .modal {
    padding: 1rem;
  }

  .modal-content {
    max-width: 100%;
  }

  .modal-content form {
    padding: 1.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .contact-list li {
    font-size: 0.9rem;
  }

  .contact-list i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .copyright {
    font-size: 0.85rem;
  }

  .small-muted {
    font-size: 0.75rem;
  }

  #whatsapp-btn {
    padding: 0.75rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .box {
    margin: 3rem auto;
    padding: 2rem 1.5rem;
  }

  .box h1 {
    font-size: 1.5rem;
  }

  .box p {
    font-size: 1rem;
  }

  .policy-page {
    margin: 4rem auto 2rem;
    padding: 2rem 1.5rem;
  }

  .policy-page h1 {
    font-size: 1.75rem;
  }

  .policy-page h2 {
    font-size: 1.25rem;
  }
}

/* ========== ANIMATIONS ========== */
.fade-in-delay {
  animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.fade-in-delay2 {
  animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

/* Scroll reveal animation */
.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== PRINT STYLES ========== */
@media print {
  .site-header,
  .hero,
  #whatsapp-btn,
  .footer-bottom,
  .newsletter-form,
  .social-links,
  .btn,
  .modal,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .policy-page,
  .box {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ========== END OF STYLESHEET ========== */ center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.brand:hover {
  transform: translateY(-2px);
}

.site-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.site-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.2;
}

.site-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Main Navigation */
/* Main Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--maroon);
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1001;
}

.nav-toggle:hover {
  color: var(--gold);
  transform: scale(1.1);
}


/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

/* Video Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay,
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 31, 20, 0.7) 0%,
    rgba(47, 21, 15, 0.85) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== VIDEO SHOWCASE SECTION ========== */
.video-showcase {
  padding: 3rem 2rem;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.6s ease-out;
  text-align: center;
}

.video-showcase.show {
  opacity: 1;
}

.showcase-video {
  width: 100%;
  max-width: 900px;
  max-height: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .video-showcase {
    padding: 2rem 1rem;
  }

  .showcase-video {
    max-height: 400px;
  }
}

@media (max-width: 640px) {
  .video-showcase {
    padding: 1.5rem 1rem;
  }

  .showcase-video {
    max-height: 300px;
  }
}

/* ========== BUTTONS ========== */
.btn,
.btn-primary,
.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn.primary,
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon);
  box-shadow: 0 4px 16px rgba(207, 167, 77, 0.3);
}

.btn.primary:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(207, 167, 77, 0.4);
}

.btn.secondary,
.btn.ghost {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.secondary:hover,
.btn.ghost:hover {
  background: var(--white);
  color: var(--maroon);
  transform: translateY(-3px);
}

.book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 167, 77, 0.4);
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-light {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8dcc7 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--white);
}

.section-dark-deep {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, #1a0d09 100%);
  color: var(--white);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--maroon-deep);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-title.light {
  color: var(--gold-light);
}

.section-title.why-title,
.section-title.how-title,
.section-title.explore-title {
  color: var(--maroon-deep);
}

/* ========== FEATURES / WHY SECTION ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature .icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hand-icon {
  stroke: var(--maroon);
  transition: var(--transition);
}

.feature:hover .hand-icon {
  transform: scale(1.1) rotate(-3deg);
  stroke: var(--gold);
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--maroon-deep);
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== MANDIR SLIDER ========== */
#mandirs {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
}

.mandir-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.slide {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.slide:hover img {
  transform: scale(1.05);
}

.slide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  padding: 1rem 1.5rem 0.5rem;
  text-align: center;
}

.slide .price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  padding: 0.5rem;
}

.slide button {
  margin: 1rem 1.5rem 1.5rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
}

.slider-controls button:hover {
  background: var(--gold-light);
  border-color: var(--white);
  transform: scale(1.1);
}

/* ========== PACKAGES & PRICING ========== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card,
.pricing-card,
.support-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover,
.pricing-card:hover,
.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.package-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf7 0%, #fff9e6 100%);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.card-head {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--gold-light);
  padding: 1.5rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.sanskrit {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.5rem;
  font-style: italic;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-card h3,
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--maroon-deep);
  margin-bottom: 1rem;
}

.package-card h4,
.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.package-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.options {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--maroon);
}

.description,
.features-list {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.features-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ========== EXPLORE SECTION ========== */
.premium-section {
  position: relative;
  background: linear-gradient(135deg, rgba(74,31,20,0.05) 0%, rgba(207,167,77,0.08) 100%);
  padding: 4rem 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.explore-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.explore-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.explore-card:hover img {
  transform: scale(1.05);
}

.explore-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  margin: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  text-align: center;
}

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.how-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.how-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.how-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.95);
  transition: var(--transition);
}

.how-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  margin: 3rem auto 0;
  max-width: 700px;
  color: var(--maroon-deep);
  font-style: italic;
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.video-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: var(--transition);
}

.video-card:hover img {
  filter: brightness(1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 3px solid var(--gold);
}

.play-btn::after {
  content: '▶';
  color: var(--gold);
  font-size: 1.75rem;
  margin-left: 3px;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  text-align: center;
}

.test-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tq {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  text-align: center;
  font-style: italic;
  line-height: 1.8;
}

.tq span {
  display: block;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-style: normal;
}

/* ========== RESOURCES ========== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.res-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.res-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.res-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: var(--transition);
}

.res-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.res-caption {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: center;
}

.link-gold,
.link-light {
  display: inline-block;
  margin-top: 2rem;
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.link-gold:hover,
.link-light:hover {
  color: var(--gold);
  transform: translateX(5px);
}

/* ========== MODALS ========== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.4s ease-out;
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}

.modal-content form {
  padding: 2rem;
}

.modal-content label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 1rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  font-family: inherit;
}

.modal-content input:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207, 167, 77, 0.1);
}

.modal-close,
.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--maroon);
  font-size: 1.5rem;
  display: flex;
  align-items: