/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Dark Theme Variables */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #222222;
  --bg-card-hover: #333333;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  --border-color: #333;
  --accent-color: #8b5cf6;
  --accent-secondary: #ffd700;
}

/* Light Theme Variables */
.light-theme {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #888888;
  --border-color: #e2e8f0;
  --accent-color: #8b5cf6;
  --accent-secondary: #ffd700;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
}

.logo i {
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.theme-toggle:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-color);
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #e0e0e0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  /* Add your background image here - replace with your actual image path */
  background-image: url("img/Durga-Puja-A-Guide-to-Rituals-Significance-and-Celebrations.jpeg.jpg");
  background-size: cover;
  background-position: top;
  background-attachment: scroll;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  display: block;
  font-size: 2.5rem;
  color: white;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd700;
}

.price-note {
  font-size: 1rem;
  opacity: 0.8;
}

.hero-cta {
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #333;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
  justify-content: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
  font-size: 4rem;
  color: #ffd700;
}

.image-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.section-header p {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: #111111;
}

ul.hero-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.367);
  padding: 12px 20px;
  border-radius: 10px;
}

.footer-legal a {
  color: #bbbb;
  margin-top: 12px;
  display: inline-block;
}

.footer-legal {
  margin-bottom: 12px;
}

.hero-benefits li {
  background-color: #fff0;
  min-width: 300px;
  text-align: left;
}

/* Credibility Images Section */
.credibility-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.credibility-card {
  background: #222222;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.credibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.credibility-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.credibility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credibility-image .placeholder {
  color: white;
  font-size: 3rem;
  opacity: 0.8;
}

.credibility-content {
  padding: 1.5rem;
}

.credibility-content h3 {
  color: #e0e0e0;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.credibility-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Image Gallery */
.image-gallery {
  padding: 80px 0;
  background: #111111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item .placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.gallery-item .overlay h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.gallery-item .overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #222222;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.benefit-card p {
  color: #b0b0b0;
  line-height: 1.6;
}

/* Pandals Coverage Section */
.pandals-coverage {
  padding: 80px 0;
  background: #1a1a1a;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background: #222222;
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #8b5cf6;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.coverage-card:hover {
  transform: translateY(-3px);
}

.coverage-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #8b5cf6;
}

.coverage-card p {
  font-weight: 600;
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.coverage-card ul {
  list-style: none;
}

.coverage-card li {
  padding: 0.3rem 0;
  color: #b0b0b0;
  position: relative;
  padding-left: 1.5rem;
}

.coverage-card li::before {
  content: "•";
  color: #8b5cf6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Pandal List Popup Modal */
.expand-more {
  cursor: pointer;
  color: #8b5cf6;
  font-weight: 600;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expand-more:hover {
  color: #a855f7;
  transform: translateX(5px);
}

.expand-more i {
  transition: transform 0.3s ease;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #0a0a0a;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid #eee;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #8b5cf6;
}

.modal-header h3 {
  color: #8b5cf6;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #8b5cf6;
}

.pandal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pandal-item {
  background: #333333;
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid #8b5cf6;
  transition: all 0.3s ease;
}

.pandal-item:hover {
  background: #444444;
  transform: translateX(5px);
}

.pandal-item h4 {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.pandal-item p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

/* Remove expandable items since we're using popup now */
.expandable-item {
  display: none;
}

/* Form Updates */
.form-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
  border-left: 3px solid #ffd700;
}

.form-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.form-disclaimer i {
  color: #ffd700;
  margin-right: 0.5rem;
}

/* Contact Info Updates */
.contact-item small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.contact-item .fab.fa-whatsapp {
  color: #25d366;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pricing .section-header h2,
.pricing .section-header p {
  color: white;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  color: #ffd700;
}

.period {
  font-size: 1.2rem;
  opacity: 0.8;
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  text-align: left;
}

.feature i {
  color: #4ade80;
  font-size: 1.2rem;
}

.pricing-cta {
  margin-top: 2rem;
}

/* How to Buy Section */
.how-to-buy {
  padding: 80px 0;
  background: #111111;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #222222;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  border: 1px solid #333;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.step-content p {
  color: #b0b0b0;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #1a1a1a;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #222222;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.faq-item.active {
  background: #333333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #333333;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0;
}

.faq-question i {
  color: #8b5cf6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffd700;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-item p {
  margin: 0;
  opacity: 0.9;
}

/* Booking Form */
.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
  background: #333;
  color: white;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ffd700;
  color: #333;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Styles */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links.active {
  display: flex;
  background-color: #333333;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #b0b0b0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .amount {
    font-size: 3rem;
  }

  /* Mobile Modal Adjustments */
  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }

  .pandal-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .benefit-card,
  .coverage-card,
  .step {
    padding: 1.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Mobile Theme Toggle */
@media (max-width: 768px) {
  .theme-toggle {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }
}

/* Mobile Message Modal */
@media (max-width: 768px) {
  .message-modal-content {
    margin: 20% auto;
    width: 95%;
    max-width: none;
  }

  .message-header {
    padding: 1rem 1rem 0;
  }

  .message-body {
    padding: 0 1rem 1rem;
  }

  .message-footer {
    padding: 0 1rem 1rem;
  }

  .message-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .message-body h3 {
    font-size: 1.2rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Theme Enhancements */
.benefit-card,
.coverage-card,
.credibility-card,
.faq-item,
.step {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.coverage-card::before,
.credibility-card::before,
.faq-item::before,
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before,
.coverage-card:hover::before,
.credibility-card:hover::before,
.faq-item:hover::before,
.step:hover::before {
  opacity: 1;
}

.benefit-card:hover,
.coverage-card:hover,
.credibility-card:hover,
.faq-item:hover,
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Form Focus Effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: rgba(0, 0, 0, 0.4);
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Message Popup Modal Styles */
.message-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.message-modal-content {
  background: var(--bg-card);
  margin: 10% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: messageSlideIn 0.3s ease-out;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

.message-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.message-icon.success {
  background: linear-gradient(45deg, #10b981, #059669);
  color: white;
}

.message-icon.error {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
}

.message-icon.info {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  color: white;
}

.close-message {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.close-message:hover {
  color: var(--text-primary);
}

.message-body {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}

.message-body h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.message-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.message-footer {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}

.message-footer .btn {
  min-width: 120px;
}

/* Message Modal Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Success Message Styles (keeping for backward compatibility) */
.success-message {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

.error-message {
  background: #ef4444;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
}

/* Counter Styles */
/* Counter Styles */
/* Counter Styles */
.customer-testimonials {
  padding: 80px 0;
}

.puja-promo-container {
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.puja-card {
  background: linear-gradient(145deg, #0f3460 0%, #1e1e30 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.puja-header {
  padding: 30px;
  text-align: center;
  background: linear-gradient(90deg, #e94560 0%, #ff6b6b 100%);
}

.puja-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.puja-header p {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.puja-content {
  display: flex;
  flex-wrap: wrap;
}

.puja-left-column {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.puja-right-column {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.puja-urgency-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #ffd700;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.puja-urgency-container h2 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.puja-progress-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
  margin: 20px 0;
}

.puja-progress-bar {
  height: 100%;
  width: 86%;
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  border-radius: 15px;
  position: relative;
  transition: width 0.5s ease;
}

.puja-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.puja-passes-left {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffd700;
  margin: 10px 0;
}

.puja-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.puja-countdown-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 10px;
  min-width: 80px;
  border: 1px solid #ffd700;
}

.puja-countdown-value {
  font-size: 2rem;
  font-weight: 700;
}

.puja-countdown-label {
  font-size: 0.8rem;
  color: #ccc;
}

.puja-deadline {
  background: rgba(233, 69, 96, 0.2);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
  border: 1px dashed #ffd700;
}

.puja-deadline h3 {
  color: #ffd700;
  margin-bottom: 5px;
}

.puja-benefits {
  margin: 20px 0;
}

.puja-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.puja-benefit i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-right: 15px;
}

.puja-cta-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 217, 0, 0.4);
  margin-top: 20px;
}

.puja-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 217, 0, 0.6);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 48px;
}

.puja-testimonial {
  padding: 32px 24px;
  margin: 20px 0;
  font-style: italic;
  border-left: 4px solid #ffd700;

  background: #222222;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.puja-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.puja-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  color: #ccc;
}

.puja-social-proof i {
  color: #ffd700;
  margin-right: 10px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .puja-content {
    flex-direction: column;
  }

  .puja-header h1 {
    font-size: 2.2rem;
  }

  .puja-countdown {
    flex-wrap: wrap;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .puja-passes-left {
    font-size: 1.25rem;
  }

  .puja-urgency-container h2 {
    font-size: 1rem;
  }
}

/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 999999999999999;
  transition: opacity 0.3s ease;
}

/* Popup Content */
.popup-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 0;
  border-radius: 15px;
  max-width: 500px;
  width: 92%;
  position: relative;
  animation: popupFadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  z-index: 999;
  transition: color 0.2s ease;
}
.close-btn:hover {
  color: #ffd700;
}

#popupForm p.form-note {
  font-size: 12px;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.form-message.success {
  color: #28a745; /* green */
}
.form-message.error {
  color: #dc3545; /* red */
}
.form-message.loading {
  color: #007bff; /* blue */
}

/* Animation */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**/
/*Fomo Notifier*/
/**/
.fomo-box {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1f2937;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  z-index: 9999;
}
.fomo-box.show {
  opacity: 1;
  transform: translateY(0);
}
.fomo-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}
.fomo-text {
  flex: 1;
}
.fomo-name {
  font-weight: 600;
  color: #facc15;
}
.fomo-location {
  font-weight: 500;
  color: #93c5fd;
}
