/* ========================================
   Pandit Aaditya Pandey - Temple Theme CSS
   Mobile-First Hindu Mandir Design
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Poppins:wght@300;400;500;600;700&family=Tiro+Devanagari+Hindi&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Temple Colors */
  --saffron: #FF6F00;
  --deep-saffron: #E65100;
  --gold: #FFB300;
  --light-gold: #FFD54F;
  --maroon: #4A0E0E;
  --deep-maroon: #2D0505;
  --temple-red: #B71C1C;
  --vermillion: #D84315;
  --cream: #FFF8E1;
  --warm-cream: #FFF3E0;
  --sacred-white: #FFFDE7;
  --dark-temple: #1A0A00;
  --bronze: #8D6E63;
  --copper: #BF8040;

  /* Gradients */
  --temple-gradient: linear-gradient(135deg, var(--deep-maroon) 0%, var(--maroon) 30%, var(--deep-saffron) 100%);
  --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
  --sacred-gradient: linear-gradient(180deg, var(--cream) 0%, var(--warm-cream) 50%, var(--cream) 100%);

  /* Typography */
  --font-heading: 'Yatra One', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', serif;

  /* Spacing */
  --section-padding: 60px 16px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 14, 14, 0.1);
  --shadow-md: 0 4px 20px rgba(74, 14, 14, 0.15);
  --shadow-lg: 0 8px 40px rgba(74, 14, 14, 0.2);
  --shadow-gold: 0 4px 20px rgba(255, 179, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 179, 0, 0.4);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--maroon);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--saffron);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--maroon);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  color: var(--saffron);
  text-align: center;
  margin-bottom: 40px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.section-divider .line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
}

.section-divider .om,
.section-divider .om-symbol,
.section-divider .om-symbol-gold {
  font-size: 1.4rem;
  color: var(--saffron);
  font-family: var(--font-hindi);
}

.om-symbol {
  font-family: var(--font-hindi);
  color: var(--saffron);
}

.om-symbol-gold {
  font-family: var(--font-hindi);
  color: var(--gold);
}

/* ---------- SVG Icon Utilities ---------- */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

.icon-xxl {
  width: 48px;
  height: 48px;
}

/* ---------- Floating Diya Animation ---------- */
.floating-diyas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.diya-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatUp 8s infinite ease-in;
  opacity: 0;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ---------- Top Sacred Banner ---------- */
.sacred-banner {
  background: var(--deep-maroon);
  color: var(--gold);
  text-align: center;
  padding: 6px 16px;
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.sacred-banner .scroll-text {
  display: inline-block;
  animation: scrollText 20s linear infinite;
}

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

/* ---------- Header / Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(45, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  padding: 6px 16px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 4px 16px;
  box-shadow: var(--shadow-lg);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.logo-text {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--light-gold);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--deep-maroon);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  color: var(--cream);
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu a:hover,
.nav-menu a:active {
  color: var(--gold);
  padding-left: 8px;
}

.nav-menu a .nav-icon {
  font-size: 1.2rem;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(45, 5, 5, 0.7) 0%,
    rgba(45, 5, 5, 0.4) 40%,
    rgba(45, 5, 5, 0.6) 70%,
    rgba(45, 5, 5, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-mandala {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  animation: rotateSlow 30s linear infinite;
  opacity: 0.6;
  border-radius: 50%;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-om {
  font-family: var(--font-hindi);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; text-shadow: 0 0 10px rgba(255, 179, 0, 0.2); }
  50% { opacity: 1; text-shadow: 0 0 20px rgba(255, 179, 0, 0.6); }
}

.hero-profile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow), 0 0 60px rgba(255, 179, 0, 0.2);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--shadow-glow), 0 0 20px rgba(255, 179, 0, 0.2); }
  50% { box-shadow: var(--shadow-glow), 0 0 40px rgba(255, 179, 0, 0.4); }
}

.hero-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--deep-maroon);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.seo-title {
  display: block;
  font-size: 0.45em;
  font-family: var(--font-body);
  color: var(--light-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
  text-shadow: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero .hero-subtitle {
  font-family: var(--font-hindi);
  color: var(--light-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-desc {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-item {
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 12px;
  padding: 12px 8px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--deep-maroon);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  width: 100%;
  max-width: 280px;
}

.btn-primary:hover,
.btn-primary:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.btn-secondary:hover,
.btn-secondary:active {
  background: rgba(255, 179, 0, 0.1);
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ---------- Temple Border Decorative ---------- */
.temple-border {
  width: 100%;
  height: 12px;
  background: var(--gold-gradient);
  position: relative;
  overflow: hidden;
}

.temple-border::before {
  content: '\0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965 \0950 \0965';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-hindi);
  font-size: 8px;
  color: var(--deep-maroon);
  letter-spacing: 10px;
  white-space: nowrap;
  animation: scrollDecor 15s linear infinite;
}

@keyframes scrollDecor {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(-50%) translateX(-50%); }
}

/* ---------- About Section ---------- */
.about-section {
  padding: var(--section-padding);
  background: var(--sacred-gradient);
  position: relative;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 179, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.about-profile-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.about-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}

.about-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--maroon);
}

.about-title {
  font-family: var(--font-hindi);
  color: var(--saffron);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.about-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.feature-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(255, 179, 0, 0.15);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: var(--saffron);
}

.feature-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ---------- Services / Puja List ---------- */
.services-section {
  padding: var(--section-padding);
  background: var(--deep-maroon);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/mandala-pattern.jpg') center/cover;
  opacity: 0.05;
  mix-blend-mode: screen;
}

.services-section .section-title {
  color: var(--gold);
}

.services-section .section-subtitle {
  color: #fce4ec;
}

.service-categories {
  max-width: 850px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.service-category {
  margin-bottom: 24px;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 179, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-title {
  background: var(--sacred-gradient);
  color: var(--gold);
  padding: 12px 16px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--gold);
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  transition: background 0.3s ease;
  gap: 12px;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: rgba(255, 179, 0, 0.05);
}

.service-item-content {
  flex-grow: 1;
}

.service-name {
  font-size: 1.15rem;
  color: var(--deep-maroon);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.3;
  margin: 0;
}

.service-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--deep-maroon);
  border: 1.5px solid var(--deep-maroon);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}

.service-book-btn:hover {
  background: var(--deep-maroon);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .service-item {
    padding: 14px;
  }
  
  .service-book-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-text small {
    font-size: 0.6rem;
  }
}



/* ---------- Gallery Section ---------- */
.gallery-section {
  padding: var(--section-padding);
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid #fff;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item {
    border-width: 2px;
  }
}

/* ---------- Why Choose Us ---------- */
.why-section {
  padding: var(--section-padding);
  background: var(--sacred-gradient);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255, 179, 0, 0.15);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  color: var(--saffron);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ---------- Booking Section ---------- */
.booking-section {
  padding: var(--section-padding);
  background: var(--deep-maroon);
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/mandala-pattern.jpg') center/300px repeat;
  opacity: 0.03;
}

.booking-section .section-title {
  color: var(--gold);
}

.booking-section .section-subtitle {
  color: var(--light-gold);
}

.booking-form {
  background: rgba(255, 248, 225, 0.05);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: 20px;
  padding: 28px 20px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-gold);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 248, 225, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 248, 225, 0.4);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB300'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 40px;
}

.form-group select option {
  background: var(--deep-maroon);
  color: var(--cream);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-form .btn-primary {
  width: 100%;
  max-width: none;
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--sacred-gradient);
}

.testimonials-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex-shrink: 0;
  width: 85vw;
  max-width: 340px;
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 179, 0, 0.15);
  scroll-snap-align: start;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--deep-maroon);
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--maroon);
}

.testimonial-location {
  font-size: 0.75rem;
  color: #888;
}

/* ---------- Areas Covered ---------- */
.areas-section {
  padding: var(--section-padding);
  background: var(--deep-maroon);
  position: relative;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/mandala-pattern.jpg') center/300px repeat;
  opacity: 0.03;
}

.areas-section .section-title {
  color: var(--gold);
}

.areas-section .section-subtitle {
  color: var(--light-gold);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}

.area-tag {
  background: rgba(255, 179, 0, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--cream);
  font-size: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.area-tag:hover {
  background: rgba(255, 179, 0, 0.15);
  border-color: var(--gold);
  transform: scale(1.02);
}

.area-tag .pin {
  color: var(--saffron);
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: var(--section-padding);
  background: var(--sacred-gradient);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 179, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--saffron);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
}

.contact-value a {
  color: var(--maroon);
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--saffron);
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  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: bounceFloat 2s ease-in-out infinite;
  cursor: pointer;
  border: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes bounceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: bounceFloat 2s ease-in-out infinite 0.5s;
  cursor: pointer;
  border: none;
}

.call-float svg {
  width: 28px;
  height: 28px;
  fill: var(--deep-maroon);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-temple);
  padding: 40px 16px 20px;
  color: var(--cream);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  color: var(--light-gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 248, 225, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 20px auto;
  border-radius: 1px;
}

.footer-om {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 248, 225, 0.4);
  line-height: 1.6;
}

.footer-seo-text {
  font-size: 0.7rem;
  color: rgba(255, 248, 225, 0.15);
  margin-top: 16px;
  line-height: 1.8;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
  padding: var(--section-padding);
  background: var(--sacred-gradient);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(45, 5, 5, 0.6));
}

/* ---------- Animations on Scroll ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
  font-size: 1.2rem;
  color: var(--deep-maroon);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Responsive Breakpoints ---------- */

/* Tablet */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    width: 60vw;
  }
}

/* Desktop */
@media (min-width: 960px) {
  :root {
    --section-padding: 80px 24px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    border: none;
    flex-direction: row;
    padding: 0;
    gap: 4px;
  }

  .nav-menu a {
    padding: 6px 8px;
    border-bottom: none;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  .nav-menu a .nav-icon {
    display: none;
  }

  .nav-menu a:hover {
    background: rgba(255, 179, 0, 0.1);
    padding-left: 16px;
  }

  .nav-overlay {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-profile {
    width: 200px;
    height: 200px;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    padding: 40px;
  }

  .about-profile-area {
    margin-bottom: 0;
  }

  .about-text {
    text-align: left;
  }

  .booking-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-card {
    width: 350px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .navbar, .whatsapp-float, .call-float, .back-to-top, .floating-diyas {
    display: none !important;
  }
}

/* ---------- Phone CTA Area ---------- */
.phone-cta-area {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.phone-label {
  font-size: 0.85rem;
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}

.phone-number-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.phone-number-display a {
  color: var(--gold);
  transition: all 0.3s ease;
}

.phone-number-display a:hover {
  color: var(--light-gold);
  text-shadow: var(--shadow-glow);
}

.booking-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.booking-or-text {
  color: rgba(255, 248, 225, 0.4);
  font-size: 0.85rem;
  margin: 24px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  letter-spacing: 1px;
}

/* ---------- Nav Icon SVG ---------- */
.nav-menu a .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
