/* 
 * Custom CSS for Panditji.in
 * Religious theme with traditional Hindu colors
 * Updated: 2025-05-29
 */

:root {
  /* Traditional Hindu Religious Color Palette */
  --saffron: #FF9933;       /* Saffron - represents courage and sacrifice */
  --deep-saffron: #FF8000;  /* Deeper saffron for hover states */
  --kumkum: #FF5252;        /* Kumkum red - represents auspiciousness */
  --turmeric: #FFD700;      /* Turmeric yellow - represents prosperity */
  --tulsi: #006400;         /* Tulsi green - represents purity */
  --ganga: #87CEEB;         /* Ganga blue - represents divinity */
  --rudraksha: #8B4513;     /* Rudraksha brown - represents Lord Shiva */
  --sandalwood: #F5DEB3;    /* Sandalwood - represents peace */
  --lotus-pink: #F9A7B0;    /* Lotus pink - represents beauty */
  --sacred-ash: #E6E6E6;    /* Sacred ash - represents simplicity */
  
  /* Text colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #FFFFFF;
}

/* Global Styles */
body {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--sacred-ash);
  background-image: url('../images/bg-pattern.png');
  background-attachment: fixed;
  background-size: 200px;
  background-repeat: repeat;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Yatra One', 'Poppins', sans-serif;
  color: var(--rudraksha);
}

/* Header Styles */
.top-bar {
  background: linear-gradient(to right, var(--saffron), var(--kumkum)) !important;
  color: var(--text-light) !important;
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/om-pattern.png');
  background-size: 30px;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 0;
}

.top-bar .container {
  position: relative;
  z-index: 1;
}

/* Top bar text and icons - ensure white color with highest specificity */
.top-bar .contact-info,
.top-bar .contact-info .contact-item,
.top-bar .contact-info .contact-item span,
.top-bar .contact-info .contact-item span i,
.top-bar .contact-info span,
.top-bar .contact-info span i,
.top-bar .social-icons,
.top-bar .social-icons a,
.top-bar .social-icons a i {
  color: #FFFFFF !important;
}

/* Prevent any saffron/kumkum colors from being applied to top-bar */
.top-bar .contact-info *,
.top-bar .social-icons * {
  color: #FFFFFF !important;
}

/* Contact info layout */
.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
}

/* Mobile layout for contact info */
@media (max-width: 767.98px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.main-header {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: relative;
  border-bottom: 3px solid var(--saffron);
}

.logo-om {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Removed rotation for Om symbol in logo to respect its religious significance */
.logo:hover .logo-om {
  /* Enhanced appearance without animation */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-title {
  font-size: 1.5rem;
  color: var(--rudraksha);
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}

.site-tagline {
  font-size: 0.8rem;
  color: var(--text-medium);
  font-style: italic;
}

/* Navigation */
.navbar-dark {
  background: linear-gradient(to right, var(--tulsi), var(--ganga)) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--turmeric) !important;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--turmeric);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 70%;
}

/* Buttons */
.btn-primary {
  background-color: var(--saffron) !important;
  border-color: var(--saffron) !important;
  color: white !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--deep-saffron) !important;
  border-color: var(--deep-saffron) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.btn-outline-primary {
  border-color: var(--saffron) !important;
  color: var(--saffron) !important;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--saffron) !important;
  color: white !important;
  transform: translateY(-2px);
}

.btn-outline-primary.active,
.btn-outline-primary:active {
  background-color: var(--saffron) !important;
  color: black !important;
  border-color: var(--saffron) !important;
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--tulsi) !important;
  border-color: var(--tulsi) !important;
}

.btn-outline-success {
  border-color: var(--tulsi) !important;
  color: var(--tulsi) !important;
}

.btn-outline-success:hover {
  background-color: var(--tulsi) !important;
  color: white !important;
}

.btn-danger {
  background-color: var(--kumkum) !important;
  border-color: var(--kumkum) !important;
}

.btn-outline-danger {
  border-color: var(--kumkum) !important;
  color: var(--kumkum) !important;
}

.btn-outline-danger:hover {
  background-color: var(--kumkum) !important;
  color: white !important;
}

/* Language Switcher */
.language-switcher {
  background: linear-gradient(to right, var(--saffron), var(--kumkum)) !important;
  border: none !important;
  color: white !important;
  font-weight: bold;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.language-switcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
  background: linear-gradient(to right, var(--kumkum), var(--saffron)) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/temple-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
  border-radius: 0;
  margin-bottom: 2rem;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/om-pattern.png');
  background-size: 100px;
  background-repeat: repeat;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title,
.hero-content .hero-title,
.hero-content h1.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ff7e3f !important;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-subtitle,
.hero-content .hero-subtitle,
.hero-content p.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #4aa342 !important;
  font-weight: 600;
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.hero-btn {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
  border: none;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

/* Service Cards */
.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
  z-index: 2;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sandalwood);
  color: var(--saffron);
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.3s ease;
}

/* No rotation for Om symbol */
.service-card:hover .service-icon {
  background-color: var(--saffron);
  color: white;
}

/* Apply rotation only to non-Om icons */
.service-card:hover .service-icon:not(:has(.fa-om)) {
  transform: rotateY(180deg);
}

.service-title {
  color: var(--rudraksha);
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-link {
  color: var(--saffron);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  color: var(--kumkum);
  transform: translateX(5px);
}

/* About Section */
.about-section {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('../images/om-symbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}

/* Footer */
.main-footer {
  background: linear-gradient(to right, var(--rudraksha), #2D1E0F) !important;
  color: white;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
}

.footer-heading {
  color: var(--turmeric);
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--saffron);
}

.footer-links a {
  transition: all 0.3s ease;
  display: block;
  padding: 0.4rem 0;
}

.footer-links a:hover {
  transform: translateX(5px);
  color: var(--turmeric) !important;
}

.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--turmeric) !important;
  transform: translateY(-3px);
}

.bottom-footer {
  position: relative;
  z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 3rem 0;
  background-color: var(--sacred-ash);
  overflow: hidden;
}

/* Om Divider */
.om-divider {
  text-align: center;
  position: relative;
  margin: 2rem 0;
}

/* Sacred Mantra Section */
.mantra-section {
  position: relative;
  padding: 2rem 0;
}

.mantra-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.mantra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 400px;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.mantra-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 153, 51, 0.2);
  font-size: 4rem;
  z-index: 1;
}

.mantra-decoration.left {
  top: 20px;
  left: 20px;
}

.mantra-decoration.right {
  bottom: 20px;
  right: 20px;
}

.mantra-title {
  color: var(--rudraksha);
  font-weight: bold;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-bottom: 10px;
}

.mantra-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.mantra-text {
  position: relative;
  z-index: 1;
}

.sanskrit {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.5rem;
  color: var(--kumkum);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mantra-meaning {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Hindu Calendar Section */
.hindu-calendar-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255,153,51,0.05), rgba(255,82,82,0.05));
  overflow: hidden;
}

.hindu-calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/border-pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.festival-timeline {
  position: relative;
  padding: 20px 0;
  z-index: 1;
}

.festival-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--saffron), var(--kumkum));
  z-index: 0;
}

.festival-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
  z-index: 1;
}

.festival-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}

.date-number {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.date-month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.festival-content {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--saffron);
  transition: all 0.3s ease;
}

.festival-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.festival-name {
  color: var(--rudraksha);
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.festival-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.festival-description {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--saffron);
  font-family: serif;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--saffron);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: bold;
  color: var(--rudraksha);
  margin-bottom: 0.2rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-medium);
}

.testimonial-rating {
  color: var(--turmeric);
  margin-bottom: 0.5rem;
}

.testimonial-slider {
  padding-bottom: 3rem;
}

.testimonial-slider .slick-dots {
  bottom: 0;
}

.testimonial-slider .slick-dots li button:before {
  color: var(--saffron);
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: var(--kumkum);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--saffron);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.back-to-top:hover {
  background-color: var(--kumkum);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Blog Section */
.blog-section {
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 400px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.blog-intro {
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.blog-category span {
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-medium);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--saffron);
}

.blog-title {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-title a {
  color: var(--rudraksha);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-title a:hover {
  color: var(--saffron);
}

.blog-excerpt {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.read-more {
  color: var(--saffron);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--kumkum);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
  position: relative;
  padding: 2rem 0;
  background-color: var(--sacred-ash);
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/border-pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.gallery-intro {
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.gallery-filters {
  position: relative;
  z-index: 1;
}

.gallery-filter {
  margin: 0 5px 10px;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  border-color: var(--saffron);
  color: var(--rudraksha);
  transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  background-color: var(--saffron);
  color: black;
  box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
}

.gallery-container {
  position: relative;
  z-index: 1;
}

/* Gallery Button Container */
.gallery-button-container {
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 51, 0.2);
  transition: all 0.3s ease;
}

.gallery-button-container:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 153, 51, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 51, 0.2);
}

.gallery-button-container .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.3);
  transition: all 0.3s ease;
}

.gallery-button-container .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.gallery-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--saffron), var(--kumkum));
  z-index: 1;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  transition: all 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 153, 51, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1.2rem;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-icon {
  transform: scale(1);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-info h5 {
  color: var(--rudraksha);
  margin-bottom: 0.5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.5rem;
}

.gallery-info h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.gallery-info p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Puja Booking Section */
.puja-booking-section {
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
}

.puja-booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/om-pattern.png');
  background-size: 150px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.puja-booking-card {
  background-color: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.2);
  z-index: 1;
}

.puja-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.diya-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url('../images/diya.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.diya-decoration.left {
  top: 20px;
  left: 20px;
  transform: rotate(-15deg);
}

.diya-decoration.right {
  bottom: 20px;
  right: 20px;
  transform: rotate(15deg);
}

.booking-intro {
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.puja-booking-form {
  position: relative;
  z-index: 1;
}

.puja-booking-form .form-control,
.puja-booking-form .form-select {
  border-color: rgba(255, 153, 51, 0.3);
  transition: all 0.3s ease;
}

.puja-booking-form .form-control:focus,
.puja-booking-form .form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

.puja-submit-btn {
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border: none;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.puja-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
}

/* Religious Footer Styles */
.main-footer {
  position: relative;
  background: linear-gradient(135deg, var(--rudraksha), #3a2a1d);
  color: var(--text-light);
  overflow: hidden;
}

/* Temple Silhouette */
.temple-silhouette {
  height: 80px;
  background-image: url('../images/temple-silhouette.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 80px;
  margin-bottom: -1px;
  opacity: 0.5;
}

.footer-content {
  position: relative;
  padding: 3rem 0 1.5rem;
}

.footer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/om-pattern.png');
  background-size: 100px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.footer-heading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.footer-heading {
  color: var(--turmeric);
  margin: 0;
  font-weight: bold;
  font-size: 1.3rem;
}

.footer-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.social-icons-wrapper {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--turmeric);
  transform: translateX(5px);
}

.small-icon {
  color: var(--saffron);
  font-size: 0.8rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--turmeric);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.bottom-footer {
  position: relative;
  z-index: 1;
}

.copyright {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-links-small a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-decoration-bottom {
  height: 10px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

/* No animations for religious symbols */
/* Removed rotating animation to respect the religious significance of the Om symbol */

.pulse-animation {
  animation: pulse 2s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 153, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
  }
}

.booking-success h4 {
  color: var(--rudraksha);
  margin-bottom: 1rem;
  font-weight: bold;
}

.booking-success p {
  color: var(--text-dark);
}

/* Services Page Styles */
.services-hero-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  overflow: hidden;
}

.services-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 400px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.service-category-card {
  display: block;
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.service-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  text-decoration: none;
}

.service-category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rudraksha);
}

.service-category-card h3 {
  color: var(--rudraksha);
  margin-bottom: 1rem;
}

.service-category-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.category-arrow {
  color: var(--saffron);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.service-category-card:hover .category-arrow {
  transform: translateX(5px);
  color: var(--kumkum);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rudraksha);
}

.service-card h3 {
  color: var(--rudraksha);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--saffron);
  margin-right: 0.5rem;
}

.service-detail-section {
  position: relative;
  padding: 4rem 0;
}

.service-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/om-pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.cta-section {
  position: relative;
  padding: 4rem 0;
}

.cta-border {
  border: 2px solid transparent;
  border-image: linear-gradient(to right, var(--saffron), var(--kumkum));
  border-image-slice: 1;
  padding: 3rem;
  position: relative;
  background-color: white;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rudraksha);
}

/* Language Switcher */
.language-switcher {
  display: inline-block;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
  color: white;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: linear-gradient(to right, var(--deep-saffron), var(--kumkum));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-decoration: none;
}

.lang-btn img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-title,
  .hero-content .hero-title,
  .hero-content h1.hero-title {
    font-size: 2rem;
    color: #ff7e3f !important;
    font-weight: 800;
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.4px;
  }
  
  .hero-subtitle,
  .hero-content .hero-subtitle,
  .hero-content p.hero-subtitle {
    font-size: 1rem;
    color: #4aa342 !important;
    font-weight: 600;
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.2px;
  }
  
  /* Religious Elements */
  .om-divider i {
    font-size: 1.5rem;
  }
  
  .pattern-border {
    padding: 0.5rem 1.5rem;
  }
  
  /* Service Cards */
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card::before {
    font-size: 3rem;
  }
  
  /* Hindu Calendar */
  .festival-item {
    padding-left: 70px;
  }
  
  .festival-date {
    width: 50px;
    height: 50px;
  }
  
  .date-number {
    font-size: 1.2rem;
  }
  
  /* Mantra Section */
  .mantra-card {
    padding: 2rem 1rem;
  }
  
  .sanskrit {
    font-size: 1.2rem;
  }
  
  .mantra-decoration {
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
  }
  
  /* Puja Booking */
  .puja-booking-card {
    padding: 2rem 1rem;
  }
  
  .diya-decoration {
    width: 60px;
    height: 60px;
  }
  
  /* Gallery */
  .gallery-filter {
    margin: 0 3px 10px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .gallery-image img {
    height: 200px;
  }
  
  /* Blog */
  .blog-image img {
    height: 180px;
  }
  
  .blog-category span {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .blog-content {
    padding: 1.2rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .temple-silhouette {
    height: 60px;
    background-size: auto 60px;
  }
  
  .footer-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
  
  .divider-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  /* Hero Section */
  .hero-content {
    padding: 3rem 1rem;
  }
  
  .hero-title,
  .hero-content .hero-title,
  .hero-content h1.hero-title {
    font-size: 1.8rem;
    color: #ff7e3f !important;
    font-weight: 800;
    -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
  }
  
  .hero-subtitle,
  .hero-content .hero-subtitle,
  .hero-content p.hero-subtitle {
    font-size: 0.9rem;
    color: #4aa342 !important;
    font-weight: 600;
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.2px;
  }
  
  .hero-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Religious Elements */
  .om-divider::before, 
  .om-divider::after {
    width: 60px;
  }
  
  /* Service Cards */
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  /* Testimonials */
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  /* Hindu Calendar */
  .festival-timeline::before {
    left: 25px;
  }
  
  .festival-item {
    padding-left: 60px;
  }
  
  .festival-date {
    width: 45px;
    height: 45px;
  }
  
  /* Mantra Section */
  .mantra-card {
    padding: 1.5rem 1rem;
  }
  
  .sanskrit {
    font-size: 1rem;
  }
  
  /* Gallery */
  .gallery-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Blog */
  .blog-meta {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

/* Calendar Page Styles */
.calendar-hero-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  overflow: hidden;
}

.calendar-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 400px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.month-navigation .current-month h3 {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 30px;
  color: var(--rudraksha);
  font-family: var(--font-decorative);
}

.month-navigation .btn-outline-primary {
  border-color: var(--saffron);
  color: var(--rudraksha);
  transition: all 0.3s ease;
}

.month-navigation .btn-outline-primary:hover {
  background-color: var(--saffron);
  color: white;
}

.festival-timeline {
  position: relative;
  padding: 2rem 0;
}

.festival-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 3px;
  background: linear-gradient(to bottom, var(--saffron), var(--kumkum));
  z-index: 0;
}

.festival-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 80px;
}

.festival-item:last-child {
  margin-bottom: 0;
}

.festival-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--saffron), var(--kumkum));
  color: white;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.date-number {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.date-month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.festival-content {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.festival-content::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  z-index: -1;
  box-shadow: -3px 3px 5px rgba(0,0,0,0.02);
}

.festival-name {
  color: var(--rudraksha);
  margin-bottom: 0.5rem;
}

.festival-day {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.festival-description {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.festival-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--saffron-light);
  color: var(--rudraksha);
  border-radius: 20px;
  font-size: 0.8rem;
}

.festival-category i {
  margin-right: 5px;
  color: var(--saffron);
}

.festival-item.high .festival-date {
  background: linear-gradient(135deg, var(--kumkum), var(--rudraksha));
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.festival-item.high .festival-name {
  color: var(--kumkum);
}

.festival-item.high .festival-category {
  background-color: var(--kumkum-light);
  color: var(--kumkum-dark);
}

.festival-item.high .festival-category i {
  color: var(--kumkum);
}

.no-festivals .pattern-border {
  background-color: white;
}

.puja-booking-border {
  position: relative;
  padding: 3rem;
  background-color: white;
}

.puja-booking-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diya-decoration {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--turmeric), var(--saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.left-diya {
  margin-right: 2rem;
}

.right-diya {
  margin-left: 2rem;
}

.puja-booking-text {
  flex: 1;
  text-align: center;
}

/* Contact Page Styles */
.contact-hero-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/mandala-pattern.png');
  background-size: 400px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.contact-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--saffron), var(--kumkum));
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rudraksha);
}

.contact-card h4 {
  color: var(--rudraksha);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.contact-form .form-border {
  background-color: white;
  padding: 2rem;
}

.form-group label {
  color: var(--rudraksha);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.25rem rgba(255, 153, 0, 0.15);
}

.success-message .success-border {
  background-color: white;
  padding: 3rem;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--saffron), var(--tulsi));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 128, 0, 0.2);
}

.success-content h3 {
  color: var(--rudraksha);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.business-hours-section .hours-border {
  background-color: white;
  padding: 2rem;
}

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

.hours-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--kumkum-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rudraksha);
}

.hours-list {
  max-width: 400px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #e0e0e0;
}

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

.hours-item .day {
  font-weight: 500;
  color: var(--rudraksha);
}

.hours-item .time {
  color: var(--text-medium);
}

.hours-note {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-style: italic;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 0.8s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Custom Decorative Elements */
.om-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.om-divider::before,
.om-divider::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--saffron), transparent);
  margin: 0 15px;
}

.om-divider i {
  color: var(--saffron);
  font-size: 1.5rem;
}

.diya-decoration {
  position: relative;
}

.diya-decoration::before {
  content: '🪔';
  position: absolute;
  font-size: 1.5rem;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

.diya-decoration::after {
  content: '🪔';
  position: absolute;
  font-size: 1.5rem;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Religious Patterns */
.pattern-border {
  border: 15px solid transparent;
  border-image: url('../images/border-pattern.png') 30 round;
  padding: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--saffron);
  border-radius: 5px;
}

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


/* Honeypot fields - Anti-spam protection */
.honeypot,
input[name='website'],
input[name='email_confirm'], 
input[name='phone_verify'],
input[name='company_url'] {
}

/* Additional protection - hide any label for honeypot fields */
label[for='website'],
label[for='email_confirm'],
label[for='phone_verify'], 
label[for='company_url'] {
}
