@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF9933;
  --maroon: #800020;
  --maroon-deep: #5C0015;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 18px;
  background-color: #FFFFFF;
  color: #1a1a1a;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #5C0015;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }


/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #800020, #5C0015);
  color: white;
  padding: 12px 0;
  font-size: 14px;
  min-height: 44px;
}
.top-bar a { color: white; opacity: 0.9; transition: opacity 0.3s; }
.top-bar a:hover { opacity: 1; }
@media (max-width: 768px) {
  .alt-phone-hide { display: none !important; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img { height: 56px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; color: #333; transition: color 0.3s; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: #FF6B00; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu { display: none; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}
.lang-btn.active {
  background: linear-gradient(135deg, #FF6B00, #E55A00);
  color: white;
}
.lang-btn:hover:not(.active) {
  background: #e5e5e5;
}


/* Navbar */

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--maroon); text-decoration: none; padding: 12px 20px; border-radius: 8px; transition: all 0.3s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { background: #FFF5E6; color: var(--saffron); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu { display: none; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.logo-image {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 800;
  color: #5C0015;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 768px) {
  .logo-image {
    height: 44px;
  }
  
  .logo-text {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

/* Mobile Book Now Button */
.mobile-book-btn {
  display: none;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FF6B00, #E55A00);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.mobile-book-btn:hover {
  background: linear-gradient(135deg, #E55A00, #FF6B00);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
  .mobile-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar .container {
    justify-content: space-between;
    padding: 12px 20px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-saffron {
  background: linear-gradient(135deg, #FF6B00, #E55A00);
  color: white;
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}
.btn-saffron:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,107,0,0.4); }
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-outline {
  background: transparent;
  border: 2px solid #FF6B00;
  color: #FF6B00;
}
.btn-outline:hover { background: #FF6B00; color: white; transform: translateY(-3px); }

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.98)), url('images/mahakaleshwar-temple-ujjain-background.webp') center/cover;
}
.hero-content { 
  max-width: 600px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  color: #FF6B00;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 24px; }
.hero h1 span { color: #FF6B00; }
html[lang="hi"] .hero h1 .highlight { display: none; }
.hero p { font-size: 1.2rem; color: #333; margin-bottom: 24px; }
.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FAFAFA;
  border: 2px solid #FF9933;
  padding: 16px 24px;
  border-radius: 16px;
  margin-bottom: 32px;
}
.hero-price span { color: #5C0015; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.trust-badge svg { color: #22c55e; }
.hero-image { position: relative; }
.hero-image img { border-radius: 24px; border: 4px solid #FF9933; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.hero-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-icon { width: 48px; height: 48px; background: #FF6B00; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.hero-stat strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #5C0015; }

/* Stats Bar */
.stats-bar {
  background: linear-gradient(135deg, #FF6B00, #E55A00);
  padding: 48px 0;
  color: white;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item span { font-size: 2rem; display: block; margin-bottom: 8px; }
.stat-item strong { font-family: 'Playfair Display', serif; font-size: 2.5rem; display: block; }
.stat-item p { opacity: 0.9; }

/* Section */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header span { color: #FF6B00; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 14px; }
.section-header h2 { font-size: 2.75rem; margin-top: 12px; }
.divider { width: 120px; height: 3px; background: linear-gradient(90deg, transparent, #FF6B00, transparent); margin: 24px auto; }

/* Cards */
.card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #E5E5E5;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(255,107,0,0.12); border-color: #FF9933; }
.card-image { margin: -32px -32px 24px; border-radius: 20px 20px 0 0; overflow: hidden; height: 220px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF9933, #FF6B00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.card-price { color: #FF6B00; font-weight: 700; font-size: 1.1rem; }
.card p { color: #333; margin: 16px 0; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.card-tag { background: #FFF5E6; color: #FF6B00; padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.card-link { color: #FF6B00; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { text-align: left; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature-card p { color: #333; font-size: 1rem; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.step-num { font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 700; color: rgba(255,107,0,0.1); line-height: 1; }
.step-title { font-size: 1.25rem; margin-top: 8px; margin-bottom: 12px; }
.step-desc { color: #333; font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #FF6B00;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-stars { color: #FF6B00; margin-bottom: 16px; }
.testimonial p { color: #333; font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: #1a1a1a; }
.testimonial-author span { font-size: 14px; color: rgba(255, 255, 255, 0.8); }

/* ── Testimonials Carousel ── */
.testimonials-section { padding: 80px 0; background: #fdf6f0; }
.testimonials-track-wrap { overflow: hidden; position: relative; margin-top: 44px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testi-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #f0e0d0;
  width: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  box-shadow: 0 4px 16px rgba(92,0,21,0.06);
}
.testi-stars { color: #FF9933; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  color: #1a1a1a;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,#5C0015,#800020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9933;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: #333; font-size: 14px; }
.testi-meta { font-size: 12px; color: #999; margin-top: 2px; }
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFD6A5;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #800020;
}
.testi-btn:hover { background: #800020; color: white; border-color: #800020; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD6A5;
  cursor: pointer;
  transition: all 0.2s;
}
.testi-dot.active { background: #800020; width: 24px; border-radius: 4px; }

/* Testimonials Carousel Responsive */
@media (max-width: 1024px) {
  .testi-card {
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .testi-card {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(128,0,32,0.9), rgba(92,0,21,0.95)), url('https://images.unsplash.com/photo-1761066426022-86a934de731a?w=1920&q=80') center/cover;
  color: white;
  text-align: center;
}
.cta-section h2 { color: white; font-size: 2.75rem; margin-bottom: 20px; }
.cta-section p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 24px; font-size: 14px; opacity: 0.7; }

/* Footer */
.footer { background: linear-gradient(135deg, #800020 0%, #600018 100%); color: white; padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo img { height: 64px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; opacity: 0.8; line-height: 1.7; }
.footer h4 { color: #FF9933; font-size: 1rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { opacity: 0.8; transition: opacity 0.3s; font-size: 15px; }
.footer ul a:hover { opacity: 1; color: #FF9933; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; opacity: 0.8; }
.footer-contact svg { color: #FF9933; flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.footer-social a:hover { transform: scale(1.1); }
.footer-social .whatsapp { background: #25D366; }
.footer-social .phone { background: #FF6B00; }
.footer-social .instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social .facebook { background: #1877F2; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom p { opacity: 0.6; }
.footer-bottom span { color: #FF9933; font-family: 'Playfair Display', serif; font-size: 1.1rem; }

/* WhatsApp Float */
.float-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.call-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #800020, #5C0015);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(128,0,32,0.4);
  animation: pulse-call 2s infinite 1s;
}
.call-float:hover { transform: scale(1.1); }
.call-float svg { width: 26px; height: 26px; fill: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 40px rgba(37,211,102,0.6); }
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 4px 20px rgba(128,0,32,0.4); }
  50% { box-shadow: 0 4px 36px rgba(128,0,32,0.65); }
}

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.package {
  background: white;
  border: 2px solid #E5E5E5;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.package:hover { border-color: #FF6B00; }
.package.featured { border-color: #FF6B00; transform: scale(1.05); box-shadow: 0 20px 50px rgba(255,107,0,0.15); }
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B00, #E55A00);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.package-hindi { color: #FF6B00; font-size: 14px; }
.package h3 { font-size: 1.75rem; margin: 8px 0 16px; }
.package-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #5C0015; }
.package-duration { color: rgba(255, 255, 255, 0.8); font-size: 14px; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.package ul { list-style: none; margin: 24px 0; text-align: left; }
.package ul li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; color: #333; }
.package ul li svg { color: #22c55e; flex-shrink: 0; margin-top: 2px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid #E5E5E5; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item:hover { border-color: #FF9933; }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question svg { color: rgba(255, 255, 255, 0.8); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: #FF6B00; }
.faq-answer { padding: 0 24px 20px; color: #333; line-height: 1.9; display: none; }
.faq-item.active .faq-answer { display: block; }

/* Types Grid */
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.type-card { background: white; padding: 16px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.type-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.type-num { width: 28px; height: 28px; background: #FF6B00; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.type-card h4 { font-size: 1rem; margin: 0; }
.type-card .houses { color: #FF6B00; font-size: 12px; }
.type-card p { font-size: 14px; color: #333; margin: 0; }

/* Symptoms */
.symptoms-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.symptom { display: flex; align-items: center; gap: 10px; background: #FFF5E6; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(255,107,0,0.2); font-size: 14px; }
.symptom svg { color: #FF6B00; flex-shrink: 0; }

/* Puja Vidhi */
.vidhi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vidhi-card { background: white; padding: 24px; border-radius: 16px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.vidhi-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.vidhi-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.vidhi-card p { font-size: 14px; color: #333; }

/* Language Toggle */

.lang-toggle.mobile {
  justify-content: center;
  margin: 12px 0;
}




/* Inner Page Hero */
.inner-hero {
  min-height: auto;
  padding: 140px 0 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.97)), url('images/kaal-sarp-dosh-puja-ujjain-hero-background.webp') center/cover no-repeat;
}
.mangal-hero {
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.97)), url('images/mangal-dosh-puja-ujjain-hero-background.webp') center/cover no-repeat;
}
.inner-hero-content { max-width: 800px; }
.inner-hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.inner-hero-content h1 span.highlight { color: #FF6B00; }
.inner-hero-content p { font-size: 1.15rem; color: #333; margin-bottom: 24px; }
.hero-info-boxes { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.info-box {
  background: #FAFAFA;
  border: 2px solid #FF9933;
  padding: 14px 24px;
  border-radius: 16px;
}
.info-box small { color: rgba(255, 255, 255, 0.8); font-size: 13px; display: block; }
.info-box strong { color: #5C0015; font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-image { border-radius: 24px; border: 4px solid #FF9933; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.section-tag { color: #FF6B00; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 14px; display: block; margin-bottom: 8px; }
.highlight-box {
  background: #FFF5E6;
  border-left: 4px solid #FF6B00;
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: #5C4033; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .packages-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .steps-grid, .vidhi-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-image { margin-top: 40px; }
  .hero h1, .inner-hero-content h1 { font-size: 2.75rem; }
  .package.featured { transform: scale(1); }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-menu.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .mobile-menu a { display: block; padding: 12px 16px; border-radius: 8px; margin-bottom: 8px; }
  .mobile-menu a:hover { background: #FFF5E6; }
  .hero h1, .inner-hero-content h1 { font-size: 2.25rem; }
  .section-header h2 { font-size: 2rem; }
  .services-grid, .packages-grid, .testimonials-grid, .features-grid, .steps-grid, .vidhi-grid { grid-template-columns: 1fr; }
  .types-grid, .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-buttons { justify-content: center; }
  .trust-badges { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-info-boxes { justify-content: center; }
  .content-grid { text-align: center; }
  
  /* Mobile optimization for hero white card */
  .inner-hero-content[style*="background: white"] {
    padding: 24px !important;
    border-radius: 16px !important;
    margin: 0 -10px;
  }
  
  /* Mobile optimization for puja vidhi cards */
  .vidhi-card {
    padding: 20px !important;
  }
  
  .vidhi-icon {
    width: 56px !important;
    height: 56px !important;
  }
  
  .vidhi-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
  
  .vidhi-card h3 {
    font-size: 1.1rem !important;
  }
  
  .vidhi-card p {
    font-size: 0.9rem !important;
  }
  
  /* Mobile optimization for hero-stat badge */
  .hero-stat {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    bottom: 12px !important;
    left: 12px !important;
  }
  
  .hero-stat-icon {
    font-size: 1.3rem !important;
    margin-right: 8px !important;
  }
  
  .hero-stat strong {
    font-size: 1.3rem !important;
  }
  
  .hero-stat small {
    font-size: 0.75rem !important;
  }
}



/* ============================================
   HERO IMAGE CAROUSEL
   ============================================ */

.hero-carousel-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 4px solid var(--saffron-light);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  cursor: pointer;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 10;
  color: var(--maroon-deep);
}

.carousel-btn:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

/* Dots Navigation */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.8);
}

/* Stats Badge - repositioned for carousel */
.hero-carousel-container .hero-stat {
  position: absolute;
  bottom: 60px;
  left: 16px;
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

/* ============================================
   ZOOM MODAL
   ============================================ */

.carousel-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.carousel-zoom-modal.active {
  display: flex;
}

.carousel-zoom-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.zoom-close:hover { opacity: 1; }

.zoom-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.zoom-nav button {
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
}

.zoom-nav button:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

/* Responsive for Carousel */
@media (max-width: 1024px) {
  .hero-carousel-container {
    max-width: 100%;
    margin-top: 40px;
  }
  
  .hero-carousel {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 300px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  
  .hero-carousel-container .hero-stat {
    bottom: 50px;
    left: 10px;
    padding: 8px 12px;
  }
  
  .carousel-dots {
    bottom: 10px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}

/* Touch/swipe indicator */
.hero-carousel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
  pointer-events: none;
}

/* Top Bar */

.top-bar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 24px;
}
.top-bar-left a {
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.top-bar-left a:hover { opacity: 1; }
.top-bar-right {
  display: flex;
  gap: 12px;
}
.top-bar-right a {
  color: white;
  opacity: 0.9;
  transition: all 0.3s;
}
.top-bar-right a:hover { opacity: 1; transform: scale(1.1); }

@media (max-width: 768px) {
  .top-bar-left { gap: 12px; flex-wrap: wrap; }
  .top-bar-content { flex-direction: column; gap: 8px; }
  
}

.section-cream {
  background: #FFF9F0 !important;
}

.section-white {
  background: white !important;
}

/* Maroon accents */
.maroon-accent {
  color: #800020;
}

.maroon-border {
  border-color: #800020;
}

/* Enhanced section divider */
.divider-maroon {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #800020 0%, #FF6B00 50%, #800020 100%);
  margin: 0 auto;
  border-radius: 2px;
}















.navbar 


/* ===== Continuous Scrolling Gallery ===== */
.scrolling-gallery-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(to bottom, rgba(255,107,0,0.05), transparent);
  border-radius: 12px;
  touch-action: pan-y;
}

.scrolling-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scroll 36s linear infinite;
  width: max-content;
  will-change: transform;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track img {
  height: 240px;
  width: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(128,0,32,0.3);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-track img {
    height: 160px;
    width: 220px;
  }
  .gallery-track {
    animation: scroll 20s linear infinite;
    gap: 12px;
  }
  .gallery-track:hover {
    animation-play-state: running;
  }
  .gallery-track.touch-paused {
    animation-play-state: paused !important;
  }}


/* ===== Mobile Optimization Fixes ===== */

/* Prevent horizontal scroll on mobile */
* {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  section {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* Fix scrolling gallery on mobile */
  .scrolling-gallery-wrapper {
    overflow: hidden !important;
    max-width: 100vw !important;
    margin: 0 -20px !important;
  }
  
  /* Add padding to hero content on mobile */
  .inner-hero-content {
    padding: 24px 20px !important;
  }
  
  /* Fix trust badges overlapping on mobile */
  .trust-badges {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  
  .trust-badge {
    font-size: 13px !important;
    padding: 8px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  
  /* Fix hero buttons on mobile */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .hero-buttons a,
  .hero-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
  }
  
  /* Fix symptoms grid - CRITICAL FIX */
  .symptoms-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .symptom {
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }
  
  .symptom svg {
    flex-shrink: 0 !important;
  }
  
  /* Fix benefits section - prevent horizontal scroll */
  /* This targets inline grid styles */
  div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    grid-template-columns: unset !important;
  }
  
  div[style*="grid-template-columns"] > div {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .benefits-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .benefit-card {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix types grid */
  .types-grid {
    display: flex !important;


/* CRITICAL: Override ALL inline grid styles on mobile */
@media (max-width: 768px) {
  /* Target any element with inline grid styles */
  [style*="display: grid"],
  [style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
  }
  
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Force max-width on all direct children of grid containers */
  [style*="grid-template-columns"] > * {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* Override max-width: 1100px that causes overflow */
  [style*="max-width: 1100px"],
  [style*="max-width:1100px"] {
    max-width: 100% !important;
  }
}


/* Benefits grid - responsive */
.benefits-mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .benefits-mobile-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    max-width: 100% !important;


/* Mobile footer logo fix */
@media (max-width: 768px) {
  .footer-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  
  .footer-logo img {
    max-width: 120px !important;
    height: auto !important;
    margin: 0 auto 12px !important;
  }
  
  .footer-logo h3 {
    text-align: center !important;
    width: 100% !important;
  }
  
  /* Mobile language toggle styling */
  .mobile-menu .lang-toggle {
    justify-content: center !important;
    width: fit-content !important;
    margin: 0 auto 16px !important;
  }
}

    padding: 0 !important;
  }
}


    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .type-card {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix puja vidhi section alignment - CRITICAL FIX */
  .vidhi-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }
  
  .vidhi-card {
    width: 100% !important;
    padding: 20px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  
  .vidhi-icon {
    margin: 0 auto 12px !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .vidhi-card h3,
  .vidhi-card p {
    text-align: center !important;
    width: 100% !important;
  }
  
  /* Fix stats badge on mobile */
  .hero-stat {
    position: static !important;
    margin: 20px auto !important;
    width: fit-content !important;
    max-width: 90% !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
  
  /* Hide floating badge on mobile if it overlaps */
  .inner-hero-content .hero-stat {
    display: none !important;
  }
  
  /* Fix inner hero content padding */
  .inner-hero-content {
    padding: 24px 20px !important;
    margin: 0 !important;
  }
  
  /* Fix section padding */
  .section {
    padding: 40px 0 !important;
  }
  
  /* Fix package cards */
  .packages-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
  }
  
  .package {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix any remaining grid layouts */
  .services-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }
  
  /* Fix all cards to prevent overflow */
  .service-card,
  .feature-card,
  .step-card,
  .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    box-sizing: border-box !important;
  }
}

    gap: 15px;
    animation: scroll 15s linear infinite;
  }
}



