/* Premium & Auspicious Home Page Styling */
:root {
  --jain-gold: #d97706;
  --jain-gold-dark: #b45309;
  --jain-gold-light: #fef3c7;
  --jain-gold-border: #fde68a;
  --jain-maroon: #831843;
  --jain-maroon-dark: #500724;
  --jain-maroon-light: #fdf2f8;
  --jain-saffron: #ea580c;
  --jain-saffron-light: #fff7ed;
  --royal-blue: #0284c7;
  --royal-blue-dark: #0369a1;
  --surface-cream: #fffdfa;
  --text-main: #0f172a;
  --text-muted: #475569;
}

/* 1. Auspicious Bar */
.auspicious-bar {
  background: linear-gradient(90deg, #500724 0%, #831843 30%, #9a3412 50%, #831843 70%, #500724 100%);
  color: #fef08a;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  border-bottom: 2px solid #f59e0b;
}

/* 2. Hero Section */
.home-hero {
  background: radial-gradient(circle at 80% 20%, #fdf2f8 0%, #fffbeb 40%, #f8fafc 100%);
  border: 2px solid #fde68a;
  border-radius: 28px;
  padding: 44px 36px;
  margin: 24px 0 44px;
  box-shadow: 0 16px 44px rgba(180, 83, 9, 0.08);
  position: relative;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(194, 24, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-banner-container {
  text-align: center;
  margin-bottom: 30px;
}

.hero-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  border: 3px solid #f59e0b;
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-banner-img:hover {
  transform: scale(1.01);
}

.hero-title-group {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1.5px solid #f59e0b;
  padding: 7px 22px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.hero-main-title {
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 900;
  color: #831843;
  line-height: 1.25;
  margin: 0 0 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.hero-sub-title {
  font-size: 1.18rem;
  color: #334155;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
  background: #ffffff;
  border: 2px solid #fcd34d;
  border-radius: 20px;
  padding: 20px 24px;
  max-width: 680px;
  margin: 28px auto 0;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.1);
  text-align: center;
}

.countdown-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #92400e;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-box {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 75px;
}

.countdown-box .count-num {
  font-size: 1.85rem;
  font-weight: 900;
  color: #831843;
  line-height: 1;
  display: block;
}

.countdown-box .count-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #78350f;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Event Key Highlights Grid */
.event-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 36px 0;
}

.highlight-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.12);
  border-color: #f59e0b;
}

.highlight-icon {
  font-size: 2.2rem;
  line-height: 1;
  background: #fef3c7;
  padding: 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-content span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.highlight-content strong {
  display: block;
  font-size: 1.1rem;
  color: #0f172a;
  margin-top: 4px;
  line-height: 1.35;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c21869, #831843);
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(194, 24, 105, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(194, 24, 105, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0369a1 !important;
  border: 2px solid #bae6fd;
  font-size: 1.15rem;
  font-weight: 750;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
  transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
  border-color: #0284c7;
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.15);
}

/* Quick Search Card */
.quick-search-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #cbd5e1;
  border-radius: 22px;
  padding: 28px 32px;
  margin: 36px 0 52px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Section Header Center */
.home-section {
  margin: 56px 0;
}

.section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.section-header-center .section-badge {
  display: inline-block;
  background: #fdf2f8;
  color: #c21869;
  border: 1px solid #fbcfe8;
  padding: 5px 16px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #831843;
  margin-bottom: 10px;
}

.section-header-center p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Categories Banner */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #c21869;
  box-shadow: 0 14px 32px rgba(194, 24, 105, 0.12);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.category-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Gallery Showcase */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
  border-color: #f59e0b;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-caption {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 750;
  color: #1e293b;
  background: #fafaf9;
  border-top: 1px solid #f1f5f9;
  line-height: 1.45;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 14px 30px rgba(180, 83, 9, 0.1);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fdf2f8;
  color: #c21869;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature-box p {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

/* Steps Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-card-visual {
  background: #ffffff;
  border: 2px solid #e0e7ff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.step-card-visual:hover {
  border-color: #0284c7;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.12);
}

.step-number-circle {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.step-card-visual h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-card-visual p {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* FAQ Accordion Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.faq-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.faq-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #831843;
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Important Notes Notice */
.important-notice-card {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 22px;
  padding: 32px 30px;
  margin: 48px 0;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.08);
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #92400e;
  font-size: 1.35rem;
  font-weight: 850;
  margin-bottom: 16px;
}

.notice-list {
  margin: 0;
  padding-left: 24px;
  color: #78350f;
  line-height: 1.8;
  font-size: 1.02rem;
}

.notice-list li {
  margin-bottom: 8px;
}

/* Contact Footer Banner */
.contact-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 44px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 56px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.contact-info h3 {
  color: #fde047;
  font-size: 1.5rem;
  font-weight: 850;
  margin-bottom: 8px;
}

.contact-info p {
  color: #e2e8f0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-helplines {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.helpline-chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fef08a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.helpline-chip:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
  .home-hero {
    padding: 26px 18px;
  }
  .btn-cta-primary, .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .gallery-card img {
    height: 190px;
  }
  .contact-banner {
    padding: 28px 20px;
  }
}
