/* ==========================================================================
   Shri Gajanan Maharaj Sansthan Shegaon - Official Style Sheet
   Designed with Premium Spiritual Aesthetics, Saffron/Maroon Accents & Responsive Layouts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Inter:wght@300;400;500;600;700&family=Rozha+One&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap');

:root {
  --primary-maroon: #7c1c1c;
  --primary-maroon-dark: #581111;
  --primary-saffron: #d97706;
  --primary-saffron-hover: #b45309;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --bg-cream: #fffdf7;
  --bg-card: #ffffff;
  --text-dark: #1c1917;
  --text-muted: #57534e;
  --border-light: #e7e5e4;
  --border-gold: #fcd34d;
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-marathi: 'Tiro Devanagari Marathi', 'Rozha One', serif;
  
  --shadow-sm: 0 2px 8px rgba(124, 28, 28, 0.06);
  --shadow-md: 0 8px 24px rgba(124, 28, 28, 0.1);
  --shadow-lg: 0 16px 36px rgba(124, 28, 28, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sacred Chant Top Bar */
.chant-top-bar {
  background: linear-gradient(90deg, var(--primary-maroon-dark) 0%, var(--primary-maroon) 50%, var(--primary-maroon-dark) 100%);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--accent-gold);
  overflow: hidden;
}

.chant-ticker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.chant-text {
  font-family: var(--font-marathi);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chant-text::before, .chant-text::after {
  content: '🚩';
  font-size: 0.9rem;
}

.top-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}

.top-contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fef08a;
  transition: var(--transition-fast);
}

.top-contact-info a:hover {
  color: #ffffff;
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.logo-icon {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, var(--accent-gold) 0%, var(--primary-saffron) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-maroon);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-maroon);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--primary-saffron);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-saffron);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-maroon);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--primary-saffron-hover) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-maroon);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 80% 20%, #fef3c7 0%, #fffdf7 60%), linear-gradient(180deg, #fff7ed 0%, #fffdf7 100%);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--primary-maroon);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-maroon-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--primary-saffron);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 90%;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-feature-item svg {
  color: var(--primary-saffron);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Card Showcase Illustration Graphic */
.hero-visual-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sansthan-art-banner {
  height: 240px;
  background: linear-gradient(135deg, var(--primary-maroon-dark) 0%, var(--primary-maroon) 60%, var(--primary-saffron) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.sansthan-art-banner .diya-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.8));
}

.art-title {
  font-family: var(--font-marathi);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.art-sub {
  font-size: 0.9rem;
  color: #fef08a;
  margin-top: 4px;
}

.quick-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat-box {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Quick Darshan Status Section */
.darshan-status-bar {
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-top: -30px;
  position: relative;
  z-index: 20;
  box-shadow: var(--shadow-md);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.darshan-time-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.darshan-icon-bg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.darshan-details h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.darshan-details p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-maroon);
}

/* Interactive Room Booking Section */
.booking-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-saffron);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-maroon-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.booking-form-header {
  margin-bottom: 24px;
}

.booking-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-maroon);
}

.booking-form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #fafafa;
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-saffron);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

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

/* Booking Summary Card */
.booking-summary-card {
  background: radial-gradient(circle at 100% 0%, #fff7ed 0%, #fef3c7 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-maroon);
  border-bottom: 1.5px dashed var(--border-gold);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.summary-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.summary-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.summary-label {
  color: var(--text-muted);
}

.summary-value {
  font-weight: 700;
  color: var(--text-dark);
}

.total-donation-box {
  background: var(--primary-maroon);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.total-donation-box .label {
  font-size: 0.9rem;
  font-weight: 500;
}

.total-donation-box .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.booking-note-alert {
  font-size: 0.8rem;
  color: var(--primary-maroon-dark);
  background-color: rgba(245, 158, 11, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-saffron);
  margin-bottom: 20px;
}

/* Room Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.room-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.room-header-badge {
  background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-saffron) 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.room-type-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.room-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-price-tag {
  margin-bottom: 16px;
}

.room-price-tag .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-maroon);
  font-family: var(--font-heading);
}

.room-price-tag .unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.room-feature-li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-feature-li svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Multi Location Section */
.locations-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.location-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.location-tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.location-tab-btn:hover, .location-tab-btn.active {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-color: var(--primary-maroon);
  box-shadow: var(--shadow-sm);
}

.location-content-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  background: var(--bg-cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.location-visual {
  height: 320px;
  background: linear-gradient(135deg, #1e1b4b 0%, var(--primary-maroon-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.location-visual .loc-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-maroon-dark);
  margin-bottom: 12px;
}

.location-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.location-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.loc-highlight {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-maroon);
}

/* History & Legacy */
.history-section {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 20%, #fff7ed 0%, #fffdf7 70%);
  border-top: 1px solid var(--border-gold);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-maroon-dark);
  margin-bottom: 16px;
}

.history-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.history-milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.milestone-item {
  display: flex;
  gap: 16px;
}

.milestone-year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-saffron);
  min-width: 60px;
}

.milestone-desc h4 {
  font-size: 1rem;
  color: var(--primary-maroon);
}

.milestone-desc p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Devotee Reviews Section */
.reviews-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-maroon);
  font-size: 0.9rem;
}

.review-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-gold);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-maroon-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.faq-question:hover {
  color: var(--primary-saffron);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-saffron);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* Site Footer */
.site-footer {
  background: linear-gradient(180deg, var(--primary-maroon-dark) 0%, #3b0a0a 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.footer-brand p {
  color: #d6d3d1;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary-saffron);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #d6d3d1;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  color: #d6d3d1;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #a8a29e;
}

/* Floating WhatsApp Action Bar for Mobile */
.floating-whatsapp-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition-normal);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-green-dark);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .location-content-card {
    grid-template-columns: 1fr;
  }

  .history-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .chant-ticker {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-features-list {
    grid-template-columns: 1fr;
  }

  .darshan-status-bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
