/* =============================================
   108 Shiv Mandir - Naba Kailash Temple, Kalna
   Divine Spiritual Theme - Saffron & Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Noto+Serif+Bengali:wght@400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --saffron: #E8650A;
  --saffron-light: #F4813A;
  --saffron-pale: #FEF0E6;
  --gold: #C8901A;
  --gold-light: #E6AF2E;
  --gold-pale: #FDF6E3;
  --cream: #FBF5EC;
  --white: #FFFFFF;
  --ivory: #FFFDF7;
  --warm-gray: #8B7355;
  --text-dark: #2D1B0E;
  --text-medium: #5C3D1E;
  --text-light: #8B6840;
  --border-gold: rgba(200, 144, 26, 0.3);
  --shadow-warm: rgba(232, 101, 10, 0.15);
  --shadow-gold: rgba(200, 144, 26, 0.2);
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lora', serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 8px;
  --max-width: 1200px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::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(--ivory);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: var(--saffron);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-medium);
  font-size: 1.05rem;
}

.display-font { font-family: var(--font-display); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--cream);
}

.section-gold {
  background: linear-gradient(135deg, var(--gold-pale), var(--saffron-pale));
}

.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.divider span {
  color: var(--gold);
  font-size: 1.4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .overline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.7rem;
}

.section-header h2 {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--gold-light));
  border-radius: 2px;
}

.section-header p {
  max-width: 680px;
  margin: 1.2rem auto 0;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-light);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}

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

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

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

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

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

.btn-gold:hover {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   MANDALA PATTERN BACKGROUND
   ============================================= */
.mandala-bg {
  position: relative;
  overflow: hidden;
}

.mandala-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23C8901A' stroke-width='0.5' opacity='0.15'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23C8901A' stroke-width='0.5' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23C8901A' stroke-width='0.5' opacity='0.1'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23E8650A' stroke-width='0.5' opacity='0.15'/%3E%3Cpolygon points='100,10 110,90 190,100 110,110 100,190 90,110 10,100 90,90' fill='none' stroke='%23C8901A' stroke-width='0.4' opacity='0.1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-gold);
  box-shadow: 0 2px 20px var(--shadow-warm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.navbar-brand .brand-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px var(--shadow-warm));
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--saffron);
  line-height: 1.1;
  font-weight: 700;
}

.navbar-brand .brand-sub {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.navbar-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

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

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(254, 240, 230, 0.45) 0%,
    rgba(232, 101, 10, 0.3) 40%,
    rgba(45, 27, 14, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-om {
  font-size: 3.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  animation: glow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(230, 175, 46, 0.8));
}

@keyframes glow {
  from { filter: drop-shadow(0 0 10px rgba(230, 175, 46, 0.5)); }
  to { filter: drop-shadow(0 0 30px rgba(230, 175, 46, 1)); }
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200, 144, 26, 0.2);
  border: 1px solid rgba(230, 175, 46, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(230, 175, 46, 0.7);
  border-radius: 15px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

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

/* =============================================
   INFO CARDS
   ============================================= */
.info-cards {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-gold);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--gold-light));
}

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

.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.info-card h3 {
  font-size: 1rem;
  color: var(--saffron);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

.info-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* =============================================
   ABOUT SECTION (HOMEPAGE)
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split.reverse {
  direction: rtl;
}

.about-split.reverse > * {
  direction: ltr;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-gold);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--saffron), var(--gold-light), var(--saffron));
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--saffron);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--shadow-warm);
}

.about-content .overline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 0.7rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.about-feature .feature-icon {
  width: 42px;
  height: 42px;
  background: var(--saffron-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.about-feature h4 {
  color: var(--saffron);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-light);
}

/* =============================================
   108 SIGNIFICANCE SECTION
   ============================================= */
.significance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.significance-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px var(--shadow-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.significance-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200, 144, 26, 0.04));
  pointer-events: none;
}

.significance-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-gold);
  border-color: var(--gold-light);
}

.significance-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 2px 10px var(--shadow-gold);
}

.significance-item h3 {
  font-size: 1.1rem;
  color: var(--saffron);
  margin-bottom: 0.8rem;
}

.significance-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 27, 14, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* =============================================
   FESTIVAL CARDS
   ============================================= */
.festival-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.festival-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-gold);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.festival-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px var(--shadow-gold);
}

.festival-card-img {
  height: 200px;
  overflow: hidden;
}

.festival-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.festival-card:hover .festival-card-img img {
  transform: scale(1.05);
}

.festival-card-body {
  padding: 1.8rem;
}

.festival-card-body .tag {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border-gold);
}

.festival-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.festival-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* =============================================
   QUOTE SECTION
   ============================================= */
.quote-section {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '🕉';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.quote-section blockquote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.quote-section blockquote::before {
  content: '"';
  font-size: 5rem;
  color: rgba(255,255,255,0.25);
  font-family: Georgia, serif;
  line-height: 0;
  position: absolute;
  top: 0;
  left: -2rem;
}

.quote-section cite {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* =============================================
   TIMINGS TABLE
   ============================================= */
.timings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow-gold);
  border: 1px solid var(--border-gold);
}

.timings-table thead tr {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
}

.timings-table thead th {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.timings-table tbody tr {
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.timings-table tbody tr:last-child {
  border-bottom: none;
}

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

.timings-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.timings-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--saffron);
}

.timings-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  border: 1px solid var(--border-gold);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-gold);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 6px 25px var(--shadow-gold);
}

.faq-question {
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
  user-select: none;
}

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

.faq-question.active {
  color: var(--saffron);
  background: var(--saffron-pale);
  border-bottom: 1px solid var(--border-gold);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--saffron);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  display: none;
  padding: 1.3rem 1.5rem;
  color: var(--text-medium);
  font-size: 0.97rem;
  line-height: 1.8;
}

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

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow-gold);
  border: 1px solid var(--border-gold);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--border-gold);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 8px 40px var(--shadow-gold);
  border: 3px solid var(--border-gold);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-light);
}

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

.breadcrumb span {
  color: var(--saffron);
}

.breadcrumb .sep {
  color: var(--text-light);
}

.breadcrumb-section h1 {
  font-family: var(--font-display);
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.breadcrumb-section p {
  font-style: italic;
  color: var(--text-light);
  max-width: 700px;
  margin: 0;
}

/* =============================================
   SIDEBAR / CONTENT LAYOUT
   ============================================= */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-gold);
  margin-bottom: 2rem;
}

.sidebar-widget-header {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-widget-body {
  padding: 1.5rem;
}

.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-gold);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-medium);
  transition: var(--transition);
}

.sidebar-link-list a:last-child {
  border-bottom: none;
}

.sidebar-link-list a:hover {
  color: var(--saffron);
  padding-left: 0.5rem;
}

/* =============================================
   PAGE CONTENT
   ============================================= */
.content-body h2 {
  color: var(--saffron);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border-gold);
}

.content-body h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.content-body h3 {
  color: var(--gold);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.content-body p {
  line-height: 1.9;
  color: var(--text-medium);
}

.content-body ul,
.content-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-body li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.7;
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
}

.content-body ul li::before {
  content: '🔱';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.2rem;
}

.content-body ol {
  counter-reset: ol-counter;
}

.content-body ol li {
  counter-increment: ol-counter;
}

.content-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-left: 4px solid var(--saffron);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
}

.highlight-box h4 {
  color: var(--saffron);
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.highlight-box p {
  margin: 0;
  font-size: 0.97rem;
}

.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.dos, .donts {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 15px var(--shadow-gold);
}

.dos h4 {
  color: #2E7D32;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donts h4 {
  color: #C62828;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dos li::before {
  content: '✅' !important;
}

.donts li::before {
  content: '❌' !important;
}

/* =============================================
   HOW TO REACH - TRANSPORT CARDS
   ============================================= */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.transport-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px var(--shadow-gold);
  transition: var(--transition);
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-gold);
}

.transport-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.transport-card h3 {
  color: var(--saffron);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.transport-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(135deg, #2D1B0E, #3D2410);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 144, 26, 0.2);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-brand .om-symbol {
  font-size: 3rem;
  color: var(--gold-light);
  opacity: 0.7;
}

.footer h4 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

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

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-page-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow-gold);
  border: 2px solid var(--border-gold);
  transition: var(--transition);
}

.gallery-page-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px var(--shadow-gold);
  border-color: var(--gold-light);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.08);
}

.gallery-page-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-page-item:hover .overlay {
  background: rgba(45, 27, 14, 0.4);
}

.gallery-page-item .overlay span {
  color: var(--white);
  font-size: 2.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-caption {
  text-align: center;
  padding: 0.7rem;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--saffron);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   LOADING ANIMATION
   ============================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-om {
  font-size: 4rem;
  animation: pulse 1.5s ease-in-out infinite;
  margin-bottom: 1rem;
}

.loader-text {
  font-family: var(--font-heading);
  color: var(--saffron);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow-warm);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-warm);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 8px 20px var(--shadow-warm);
    align-items: stretch;
    gap: 0.2rem;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav a {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-split.reverse {
    direction: ltr;
  }

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

  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dos-donts {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .info-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }
