/* ============================================================
   Mata Lal Devi Mandir - Official Temple Website
   Divine Saffron & Gold Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Noto+Sans+Devanagari:wght@400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  --saffron: #D4641A;
  --saffron-bright: #E8761A;
  --saffron-light: #F5A032;
  --saffron-pale: #FFF0E0;
  --saffron-muted: #FDEBD5;
  --gold: #C9A227;
  --gold-bright: #E8BA30;
  --gold-light: #F5D060;
  --gold-pale: #FFF8DC;
  --cream: #FFFAF3;
  --cream-warm: #FFF5E8;
  --cream-dark: #F5ECD5;
  --parchment: #F0E0C0;
  --white: #FFFFFF;
  --text-deep: #3D1C02;
  --text-dark: #5C2E0A;
  --text-medium: #7A4E2D;
  --text-light: #A67C52;
  --text-subtle: #C4975A;
  --border-gold: #D4A840;
  --border-light: #EED090;
  --glow-gold: rgba(201, 162, 39, 0.25);
  --glow-saffron: rgba(212, 100, 26, 0.2);
  --shadow-warm: rgba(180, 90, 20, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

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

body {
  font-family: 'Crimson Text', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--saffron); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-deep);
  line-height: 1.25;
}

p { margin-bottom: 1.1rem; font-size: 1.05rem; }

/* ── Om Symbol ── */
.om-symbol {
  font-family: 'Noto Sans Devanagari', serif;
  color: var(--gold);
}

/* ── Background Pattern ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212,100,26,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(201,162,39,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.03'%3E%3Cpath d='M30 0l3.5 6.5L40 5l-3.5 6.5L43 15l-7 .5L33.5 23 30 16l-3.5 7-2.5-7.5-7-.5 6.5-3.5L20 5l6.5 1.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px var(--shadow-warm);
}

.nav-top {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-bright) 50%, #C05010 100%);
  text-align: center;
  padding: 6px 20px;
  color: var(--gold-light);
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-top span { margin: 0 15px; }

.nav-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 16px var(--glow-gold), 0 0 32px var(--glow-saffron);
  flex-shrink: 0;
  border: 2px solid var(--gold-light);
}

.nav-brand-text { line-height: 1.1; }
.nav-brand-text h1 {
  font-size: 1.15rem;
  color: var(--text-deep);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.nav-brand-text p {
  font-size: 0.78rem;
  color: var(--text-medium);
  font-family: 'Crimson Text', serif;
  margin: 0;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--saffron-pale);
  color: var(--saffron);
}

.nav-donate {
  background: linear-gradient(135deg, var(--gold), var(--saffron-light)) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 8px 16px !important;
  font-weight: 700 !important;
}

.nav-donate:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--glow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0D8 0%, #FFFAF0 40%, #FFF5E0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,118,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(201,162,39,0.07) 0%, transparent 70%);
}

.hero-temple-silhouette {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.12;
  pointer-events: none;
}

.hero-temple-silhouette svg {
  width: 100%;
  height: 95%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-pale), #FFF0C0);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px var(--glow-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--text-deep);
  margin-bottom: 8px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--saffron);
  font-family: 'Noto Sans Devanagari', serif;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-panel {
  position: relative;
}

.temple-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(180,90,20,0.2), 0 0 0 4px var(--border-gold), 0 0 0 8px var(--cream-warm);
}

.temple-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(160deg, #FFE4BC 0%, #FFD080 30%, #FF9C3A 60%, #E8761A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 480' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- Temple Silhouette --%3E%3Crect x='150' y='280' width='100' height='200' fill='rgba(255,255,255,0.15)'/%3E%3Cpolygon points='200,80 160,280 240,280' fill='rgba(255,255,255,0.2)'/%3E%3Cpolygon points='200,40 170,140 230,140' fill='rgba(255,255,255,0.25)'/%3E%3Ccircle cx='200' cy='35' r='12' fill='rgba(255,255,255,0.4)'/%3E%3Crect x='130' y='310' width='30' height='170' fill='rgba(255,255,255,0.12)'/%3E%3Crect x='240' y='310' width='30' height='170' fill='rgba(255,255,255,0.12)'/%3E%3Crect x='165' y='330' width='70' height='100' fill='rgba(180,70,0,0.2)'/%3E%3Cellipse cx='200' cy='320' rx='25' ry='8' fill='rgba(255,200,50,0.3)'/%3E%3C!-- Decorative lights --%3E%3Ccircle cx='200' cy='320' r='4' fill='rgba(255,220,80,0.8)'/%3E%3Ccircle cx='140' cy='380' r='3' fill='rgba(255,200,50,0.6)'/%3E%3Ccircle cx='260' cy='380' r='3' fill='rgba(255,200,50,0.6)'/%3E%3C/svg%3E") center/contain no-repeat;
}

.image-placeholder .placeholder-text {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.9);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.image-placeholder .placeholder-sub {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(60,20,0,0.7));
  color: var(--gold-light);
  padding: 30px 20px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--text-light);
  font-size: 0.82rem;
  font-style: italic;
}

.hero-scroll-hint::after {
  content: '▼';
  display: block;
  margin-top: 4px;
  color: var(--gold);
}

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

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #C05010);
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 16px var(--glow-saffron);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C05010, var(--saffron));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-saffron);
}

.btn-secondary {
  background: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
}

.btn-secondary:hover {
  background: var(--saffron-pale);
  color: var(--saffron);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--saffron-light));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--glow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--saffron-light), var(--gold));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-gold);
}

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
section { padding: 80px 20px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), #FFF0B0);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-deep);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-medium);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px auto 0;
  justify-content: center;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.divider-ornament::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.divider-symbol {
  font-size: 1.4rem;
  color: var(--gold);
  font-family: 'Noto Sans Devanagari', serif;
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENT TICKER
═══════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-top: 2px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
  overflow: hidden;
  padding: 10px 0;
}

.ticker {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--saffron);
  font-weight: 600;
  flex-shrink: 0;
}

.ticker-item::before {
  content: '✦ ';
  color: var(--gold);
}

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

/* ═══════════════════════════════════════════════
   QUICK INFO CARDS
═══════════════════════════════════════════════ */
.quick-info { background: var(--cream-warm); }

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

.quick-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px var(--shadow-warm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-warm);
}

.quick-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.quick-card h3 {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Crimson Text', serif;
  margin-bottom: 8px;
}

.quick-card p {
  font-size: 1.1rem;
  color: var(--text-deep);
  font-weight: 600;
  margin: 0;
}

.quick-card .card-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   ABOUT / INTRO SECTION
═══════════════════════════════════════════════ */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.intro-text p {
  font-size: 1.07rem;
  color: var(--text-medium);
  line-height: 1.85;
}

.intro-image { position: relative; }

.intro-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow-warm);
}

.intro-image-main img,
.intro-image-main .image-placeholder {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.intro-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px var(--glow-saffron);
}

.intro-image-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.intro-image-badge span {
  font-size: 0.78rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   FEATURES / DEVOTEE EXPERIENCE
═══════════════════════════════════════════════ */
.features-section { background: var(--cream-warm); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  box-shadow: 0 12px 40px var(--shadow-warm);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--saffron);
}

.feature-card p {
  font-size: 0.97rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TIMINGS PREVIEW (homepage)
═══════════════════════════════════════════════ */
.timings-preview {
  background: linear-gradient(135deg, #4A1C00 0%, #6B2D0A 50%, #4A1C00 100%);
  color: var(--white);
}

.timings-preview .section-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--gold-light);
}

.timings-preview .section-title { color: var(--gold-light); }
.timings-preview .section-subtitle { color: rgba(255,255,255,0.7); }

.timings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.timing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.timing-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}

.timing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.timing-name-hindi {
  font-family: 'Noto Sans Devanagari', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.timing-time {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.timing-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   GALLERY PREVIEW
═══════════════════════════════════════════════ */
.gallery-preview { background: var(--white); }

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-warm);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item .image-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-item:first-child img,
.gallery-item:first-child .image-placeholder {
  height: 416px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(60,20,0,0.75));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

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

/* ═══════════════════════════════════════════════
   TESTIMONIALS / DEVOTEE VOICES
═══════════════════════════════════════════════ */
.testimonials { background: var(--cream-warm); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px var(--shadow-warm);
  position: relative;
}

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

.testimonial-text {
  font-size: 1rem;
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-deep);
  font-family: 'Playfair Display', serif;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════
   CONTENT PAGES GENERAL
═══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #4A1C00 0%, #7A3A10 50%, #5C2800 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A227' fill-opacity='0.07'%3E%3Cpath d='M40 0l5 9.5L55 7.5 50 17 60 22l-11 1L46 33 40 24l-6 9-3-10-11-1 10-5-5-9.5 10 2z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero .breadcrumb {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold-light);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.page-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   CONTENT LAYOUT
═══════════════════════════════════════════════ */
.content-section { padding: 70px 20px; background: var(--white); }
.content-inner { max-width: 900px; margin: 0 auto; }

.content-inner h2 {
  font-size: 1.9rem;
  color: var(--saffron);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.content-inner h3 {
  font-size: 1.35rem;
  color: var(--text-deep);
  margin: 28px 0 12px;
}

.content-inner p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.88;
  margin-bottom: 1.2rem;
}

.content-inner ul, .content-inner ol {
  padding-left: 24px;
  margin-bottom: 1.2rem;
}

.content-inner li {
  font-size: 1.02rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.pull-quote {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-left: 5px solid var(--saffron);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 36px 0;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 600;
}

.info-box {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}

.info-box h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warn-box {
  background: #FFF3E0;
  border: 1px solid var(--saffron-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.warn-box h4 {
  color: var(--saffron);
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   TIMINGS TABLE
═══════════════════════════════════════════════ */
.timings-table-wrap { overflow-x: auto; margin: 24px 0; }

.timings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.timings-table th {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.timings-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-medium);
}

.timings-table tr:nth-child(even) td {
  background: var(--cream-warm);
}

.timings-table tr:hover td {
  background: var(--saffron-pale);
}

.timings-table td:first-child {
  font-weight: 700;
  color: var(--text-deep);
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section { padding: 70px 20px; background: var(--cream-warm); }
.faq-inner { max-width: 900px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: 0 4px 20px var(--shadow-warm); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-deep);
  font-weight: 700;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--saffron-pale); }
.faq-question.open { background: var(--saffron-pale); color: var(--saffron); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.faq-answer.open { display: block; }

/* ═══════════════════════════════════════════════
   GALLERY FULL
═══════════════════════════════════════════════ */
.gallery-full { padding: 70px 20px; background: var(--white); }
.gallery-full-inner { max-width: 1200px; margin: 0 auto; }

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-full-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow-warm);
  transition: all var(--transition);
}

.gallery-full-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px var(--shadow-warm);
}

.gallery-full-item img,
.gallery-full-item .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(60,20,0,0.8));
  padding: 30px 16px 12px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-deep);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

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

.form-group label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px var(--glow-saffron);
}

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

/* ═══════════════════════════════════════════════
   MAP PLACEHOLDER
═══════════════════════════════════════════════ */
.map-placeholder {
  background: linear-gradient(135deg, #E8F4EA, #F5F9F0);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-medium);
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.map-placeholder .map-pin { font-size: 3rem; }
.map-placeholder h3 { color: var(--text-deep); font-size: 1.2rem; }
.map-placeholder p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #3D1500 0%, #5C2200 50%, #3D1500 100%);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 16px var(--glow-gold);
}

.footer-logo-text h3 {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.footer-logo-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-col ul li a::before { content: '› '; color: var(--gold); opacity: 0.6; }

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.15);
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom span { color: var(--gold); }

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px var(--glow-saffron);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); color: var(--white); }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 999;
}

.whatsapp-float a {
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: var(--white);
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════ */
.stats-section { background: var(--cream-dark); padding: 60px 20px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

/* ═══════════════════════════════════════════════
   FESTIVAL CARDS
═══════════════════════════════════════════════ */
.festival-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-warm);
  margin-bottom: 40px;
}

.festival-card-header {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 28px 32px;
  color: var(--white);
}

.festival-card-header h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.festival-card-header p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0;
  font-size: 1rem;
}

.festival-card-body {
  padding: 32px;
}

.festival-card-body p {
  font-size: 1.04rem;
  color: var(--text-medium);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════
   HOW TO REACH
═══════════════════════════════════════════════ */
.route-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px var(--shadow-warm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--transition);
}

.route-card:hover {
  box-shadow: 0 8px 30px var(--shadow-warm);
  transform: translateY(-2px);
}

.route-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-content h3 {
  font-size: 1.3rem;
  color: var(--saffron);
  margin-bottom: 10px;
}

.route-content p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--cream-dark);
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.83rem;
  color: var(--text-light);
}

.breadcrumb-inner a { color: var(--saffron); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { margin: 0 6px; color: var(--border-gold); }

/* ═══════════════════════════════════════════════
   MODAL (Gallery Lightbox)
═══════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(40,10,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-content {
  max-width: 800px;
  width: 100%;
  position: relative;
}

.modal-content img { width: 100%; border-radius: var(--radius-md); }

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition);
}

.modal-close:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-image-panel { display: none; }
  .hero { min-height: auto; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-preview .gallery-item:first-child { grid-row: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--border-gold); padding: 20px; box-shadow: 0 10px 30px var(--shadow-warm); z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .nav-main { position: relative; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 16px; }
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; gap: 10px; }
  .route-card { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .gallery-full-grid { grid-template-columns: 1fr; }
  .timings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gallery-grid-preview { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 16px var(--glow-gold); }
  50% { box-shadow: 0 0 32px var(--glow-gold), 0 0 48px var(--glow-saffron); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
