:root {
  --gold: #d4a017;
  --gold-light: #ffcc33;
  /* brighter for highlights */
  --gold-dark: #9c7300;

  --cream: #fffaf0;
  /* lighter background */
  --cream-dark: #f5e6c8;

  --brown: #3b2500;
  /* deeper = better contrast */
  --brown-light: #6e4a00;

  --saffron: #ff7a00;
  --saffron-light: #ffb347;

  --white: #ffffff;

  --text-dark: #1f1300;
  /* darker text */
  --text-muted: #7a6a4f;


}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;

  transform: none !important;

}

h1, h2, h3 {
  font-family: "Open Sans", sans-serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fffaf0;
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid rgba(212, 160, 23, 0.15);
  transition: box-shadow 0.3s, background 0.3s;
  padding: 20px 10px;
  width: 100%;
}

#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(92, 61, 0, 0.12);
  background: #fffaf0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 2rem;
  height: 68px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 2rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  color: #3b2500;
}

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


.best-time {
  display: flex;
  justify-content: space-between;
}

.logo-text span {
  color: #d4a017;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  flex: 1;
  font-weight: 600 !important;
  color: #4a3728 !important;
}

.nav-links a {
  text-decoration: none;
  color: #4a3728 !important;
  font-size: 1rem;
  font-weight: 600 !important;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  overflow: hidden;
  font-size: 0.75rem;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--brown);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.active {
  background: var(--gold);
  color: #fff;
}

.btn-add-prop {
  background: none;
  border: 1.5px solid var(--brown);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-prop:hover {
  background: var(--brown);
  color: var(--cream);
}

.btn-book-nav {
  background: linear-gradient(135deg, #ffcc33, #ff7a00);
  color: #000;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.35);
  transition: all 0.2s;
}

.btn-book-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 80vh;
  /* 👈 reduce from 100vh */
  min-height: 400px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-1 {
  background-image: url('../assets/images/1.webp');
}

.slide-2 {
  background-image: url('../assets/images/2.webp');
}

.slide-3 {
  background-image: url('../assets/images/3.webp');
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(160deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.45) 30%,
      rgba(0, 0, 0, 0.25) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;

}

.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.25);
  border: 1px solid rgba(212, 160, 23, 0.6);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, #ffcc33, #ff7a00);
  color: #000;
  /* 👈 IMPORTANT */
  font-weight: 700;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.5);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 30px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* swiper bullets */
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 8px;
  height: 8px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── BOOKING WIDGET ── */
#bookingWidget {
  position: absolute;
  bottom: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 900px;
  z-index: 10;

}

.booking-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border-radius:10px;
  padding: 1.6rem 2rem 1.2rem;
  box-shadow: 0 -4px 40px rgba(92, 61, 0, 0.18);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: none;
}

.booking-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-title .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.2rem;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}

.field-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.field-group input, .field-group select {
  width: 100%;
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  /*background: var(--cream);*/
  outline: none;
  transition: border 0.2s;
}

.field-group input:focus, .field-group select:focus {
  border-color: var(--gold);
}

.btn-search-hotels {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 11px 26px;
 border-radius: var(--bs-border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-search-hotels:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.4);
}

/* ── SECTION BASE ── */
section {
  padding: 5rem 0;
}


.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-heading span {
  color: var(--gold);
}

.section-desc {
  color: #6b5a3d;
  font-size: 0.92rem;
  line-height: 1.7;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  border-radius: 2px;
  margin: 1rem 0;
}
   /* highlight box */
    .hl-box {
      background: linear-gradient(90deg, var(--gold), var(--saffron));
      border-left: 4px solid var(--saffron);
      border-radius: 0 8px 8px 0;
      padding: 15px 20px;
      margin: 18px 0;
      font-size: 14.5px;
      color: var(--brown-mid);
      line-height: 1.65;
    }
  
/* about shirdi */

/* #about-shirdi {
background:linear-gradient(360deg, #fff 0%, var(--cream) 100%)
} */
#about-shirdi .about-shirdi-img {
  overflow: hidden;
  border-radius: 16px;
}

#about-shirdi .about-shirdi-img img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#about-shirdi .about-shirdi-img:hover img {
  transform: scale(1.05);
}

/* Highlights */
#about-shirdi .about-highlights {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
}


#about-shirdi .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
}

#about-shirdi .highlight-item span {
  color: var(--gold-dark);
}

#about-shirdi .highlight-item p {
  margin: 0;
  font-size: 0.9rem;
}

/* ── STATS STRIP ── */
#stats {
  background: linear-gradient(135deg, var(--brown) 0%, #3d2000 100%);
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 0.5rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* ── HOTELS ── */
#hotels {
  background: #fff;
}

.hotel-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hotel-tab {
  border: 1.5px solid rgba(212, 160, 23, 0.3);
  background: none;
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.2s;
}

.hotel-tab.active, .hotel-tab:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.hotel-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(212, 160, 23, 0.1);
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(92, 61, 0, 0.16);
}

.hotel-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.hotel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.hotel-card:hover .hotel-img-wrap img {
  transform: scale(1.06);
}

.hotel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.hotel-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.hotel-body {
  padding: 1.2rem;
}

.hotel-name {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.hotel-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.hotel-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hotel-price strong {
  font-size: 1.25rem;
  color: var(--brown);
  font-weight: 700;
}

.hotel-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-book-hotel {
  flex: 1;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-book-hotel:hover {
  background: var(--gold-dark);
}

.btn-view-hotel {
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  background: none;
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-view-hotel:hover {
  background: var(--cream-dark);
}

/* ── SPIRITUAL ── */
#spiritual {
  background: linear-gradient(360deg, #fff 0%, var(--cream) 100%);
}

.aarti-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform 0.2s;
}

.aarti-card:hover {
  transform: translateY(-4px);
}

.aarti-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.aarti-name {
  font-weight: 600;
  color: var(--brown);
  font-size: 1.05rem;
  margin: 4px 0;
}

.aarti-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.attraction-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
  display: flex;
  gap: 0;
}

.attraction-card:hover {
  transform: translateY(-4px);
}

.attraction-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.attraction-icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.8rem;
}

.attraction-body {
  padding: 1rem 1.2rem;
}

.attraction-title {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.attraction-dist {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── HOW TO REACH ── */
#reach {
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
}

.reach-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all 0.25s;
}

.reach-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.reach-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15) 0%, rgba(255, 111, 0, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.reach-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--gold-dark);
}

.reach-title {
   font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.reach-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── WEATHER WIDGET ── */
.weather-widget {
  background: linear-gradient(135deg, #1a6494 0%, #2980b9 100%);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 100, 148, 0.3);
}

.weather-temp {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.weather-place {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.weather-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ── MAP ── */
#mapSection {
  background: var(--cream-dark);
  padding: 0;
}

.map-embed {
  width: 100%;
  height: 380px;
  border: none;
  filter: sepia(0.15) saturate(1.2);
}

.map-overlay-card {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-width: 240px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

/* ── NEARBY PLACES SLIDER ── */
#nearby {
  background: linear-gradient(135deg, #2a1800 0%, #1a0e00 100%);
}

#nearby .section-heading {
  color: #fff;
}

#nearby .section-heading span {
  color: var(--gold-light);
}

#nearby .section-desc {
  color: rgba(255, 255, 255, 0.75);
}




#nearby .section-label {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
}

.nearby-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 280px;
}

.nearby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.nearby-card:hover img {
  transform: scale(1.08);
}

.nearby-overlay {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.2) 60%);
}

.nearby-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  color: #fff;
}

.nearby-caption h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.nearby-caption span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* HORIZONTAL SCROLL */
.itinerary-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.itinerary-scroll::-webkit-scrollbar {
  display: none;
}

/* SLIDE */
.itinerary-slide {
  min-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
}

/* DAY BADGE */
.itinerary-day {
  background: linear-gradient(45deg, #d4af37, #f5d77a);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 10px;
}

/* TITLE */
.itinerary-slide h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 25px;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
  display: flex
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #d4af37;
  border-radius: 50%;
}

/* ICON */
.timeline-item .icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 4px;
}

.timeline-item svg {
  width: 16px;
  height: 16px;
  fill: #d4af37;
}

/* TEXT */
.timeline-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* DESKTOP */
@media (min-width: 992px) {
  .itinerary-scroll {
    overflow: visible;
  }

  .itinerary-slide {
    min-width: auto;
    flex: 1;
  }
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: #fff;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 160, 23, 0.12);
  height: 100%;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown);
}

.reviewer-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── ADD PROPERTY ── */
#addProperty {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.property-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 12px 50px rgba(92, 61, 0, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.form-floating-gold label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-control-gold {
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  background: var(--cream);
  width: 100%;
  outline: none;
  transition: border 0.2s;
  color: var(--text-dark);
}

.form-control-gold:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-label-gold {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.btn-submit-property {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: #fff;
  border: none;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
  transition: all 0.2s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-property:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.45);
}

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

.prop-feat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(255, 111, 0, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-feat-icon .material-symbols-outlined {
  color: var(--gold-dark);
  font-size: 1.5rem;
}

.prop-feat-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 3px;
}

.prop-feat-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #2d1a00 0%, #1a0e00 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 700;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}
footer ul{
  padding-left: 0rem!important;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
a {
    color: rgb(193 136 35)!important;
    text-decoration: none;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6)!important;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: "chevron_right";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
  font-size: 0.9rem;
  color: #d4a017;
  margin-right: 0.4rem;
  display: inline-flex;
  align-items: center;
}

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

.footer-keywords {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  margin-top: 2.5rem;
}

.keyword-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── FLOATING ELEMENTS ── */
.btn-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: none;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: none;
}

.btn-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.chatbot-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.5);
  transition: none;
}

.chatbot-btn:hover {
  transform: none
}

.chatbot-btn .material-symbols-outlined {
  font-size: 1.6rem;
}

.chatbot-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 998;
  width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(92, 61, 0, 0.22);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.chatbot-panel.open {
  display: flex;
}

/* @keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } } */
.chatbot-header {
  background: linear-gradient(135deg, var(--brown), var(--gold-dark));
  color: #fff;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chatbot-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.chatbot-subtitle {
  font-size: 0.72rem;
  opacity: 0.8;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.chat-msg {
  max-width: 82%;
  font-size: 0.83rem;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 12px;
}

.chat-msg.bot {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: 4px 12px 12px 12px;
}

.chat-msg.user {
  background: var(--gold);
  color: #fff;
  align-self: flex-end;
  border-radius: 12px 4px 12px 12px;
}

.chatbot-input-row {
  display: flex;
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  padding: 0.7rem;
}

.chatbot-input-row input {
  flex: 1;
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  outline: none;
  color: var(--text-dark);
  background: var(--cream);
}

.chatbot-send {
  background: var(--gold);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-left: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send .material-symbols-outlined {
  font-size: 1.1rem;
}

/* Mobile sticky book btn */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: #fff;
  padding: 0.8rem 1rem;
  box-shadow: 0 -4px 24px rgba(92, 61, 0, 0.13);
  border-top: 1px solid rgba(212, 160, 23, 0.15);
}

@media(max-width: 768px) {
  .mobile-book-bar {
    display: flex;
    gap: 0.6rem;
  }

  .btn-mobile-book {
    flex: 1;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
  }

  #about-shirdi .about-highlights {
    flex-direction: column;
  }

  .best-time {
    flex-direction: column;
  }

  .logo-text {

    font-size: 1.3rem;

  }

  #mainNav {
    position: sticky;
    padding: 5px 10px;
  }

}

/* ── NAV DOTS ── */
.nav-dots {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(92, 61, 0, 0.25);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.nav-dot.active, .nav-dot:hover {
  background: var(--gold);
  transform: scale(1.35);
}

@media(max-width:768px) {
  .nav-dots {
    display: none;
  }
}

/* ── RESPONSIVE ── */
@media(max-width: 992px) {
  .booking-fields {
    grid-template-columns: 1fr 1fr;
  }

  .btn-search-hotels {
    grid-column: span 2;
  }

  .nav-links {
    display: none;
  }
}

@media(max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .map-overlay-card {
    display: none;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  section {
    padding: 3.5rem 0;
  }
}

@media(max-width: 576px) {
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .btn-search-hotels {
    grid-column: span 1;
  }
}

/* ── DARSHAN ── */
.darshan-timeline {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.darshan-step {
  position: relative;
  margin-bottom: 1.5rem;
}

.darshan-step::before {
  content: '';
  position: absolute;
  left: -1.93rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

.darshan-step h3 {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 600;
}

.darshan-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.6;
}

/* ── BACKGROUND DECORATORS ── */
.bg-mandala {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  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='%23d4a017' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23d4a017' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23d4a017' stroke-width='1'/%3E%3Cpath d='M100,10 L110,90 L190,100 L110,110 L100,190 L90,110 L10,100 L90,90 Z' fill='none' stroke='%23d4a017' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── UTILS ── */
.text-gold {
  color: var(--gold-dark) !important;
}

.bg-cream {
  background: var(--cream);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL'1, 'wght'400, 'GRAD'0, 'opsz'24;
}


/* Things to do in shirdi */
#eglobe-shirdi-experiences {
  background-color: #5c3d00;
}

#eglobe-shirdi-experiences .eglobe-exp-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 340px;
}

#eglobe-shirdi-experiences .eglobe-exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#eglobe-shirdi-experiences .eglobe-exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
}

/* Title */
#eglobe-shirdi-experiences .eglobe-exp-title {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #fff;
  z-index: 2;
}

#eglobe-shirdi-experiences .eglobe-exp-title h3 {
  font-size: 1.5rem;
}

/* Hover Content */
#eglobe-shirdi-experiences .eglobe-exp-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 2;
}

/* Hover Effect */
#eglobe-shirdi-experiences .eglobe-exp-card:hover img {
  transform: scale(1.08);
}

#eglobe-shirdi-experiences .eglobe-exp-card:hover .eglobe-exp-content {
  opacity: 1;
  transform: translateY(0);
}



/* temples */

#shirdi-explore {
  background: #5c3d00;
}




#shirdi-explore .explore-box {
  background: #f3eddd;
  padding: 25px;

  backdrop-filter: blur(6px);
}

#shirdi-explore .explore-title {
  text-align: center;
  color: #f67905;
  margin-bottom: 20px;
  font-weight: 600;
}

#shirdi-explore .explore-card {
  position: relative;
  overflow: hidden;

  cursor: pointer;
}

#shirdi-explore .explore-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: 0.4s;
}

#shirdi-explore .explore-card span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

#shirdi-explore .explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

#shirdi-explore .explore-card:hover img {
  transform: scale(1.08);
}

/* Button */
#shirdi-explore .explore-btn {
  background: linear-gradient(45deg, #d4af37, #b8962e);
  padding: 8px 20px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
}


/* Banner */
.banner {
  background: url("https://eglobe-solutions.com/images/ai/bg.jpg");
  color: #fff;
  padding: 40px 60px;
  /* reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Left Content */
.banner-left {
  max-width: 60%;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.banner h1 {
  font-size: 42px;
  margin: 5px 0;
  font-weight: 700;
}

.highlight {
  color: #ffcc00;
}

.banner p {
  font-size: 14px;
  margin: 10px 0 20px;
  opacity: 0.85;
}

/* AI Tools */
.tools {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tool {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.tool svg {
  width: 20px;
  height: 20px;
}
    /* ── REACH CARDS ── */
    .reach-card {
      background: var(--cream);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 18px;
      height: 100%;
    }
    .reach-card h4 { font-size: 14px; color: var(--maroon); margin-bottom: 8px; }
  
    /* ── CAVE CARDS ── */
 .cave-card p  { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.6; }
    
/* CTA */
.cta {
  background: #ffcc00;
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.cta:hover {
  background: #ffd633;
}

/* Right Image */
.banner-right img {
  height: 320px;
  /* reduced */
}

/* Responsive */
@media(max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .banner-left {
    max-width: 100%;
  }

  .banner-right img {
    margin-top: 20px;
    height: 180px;
  }
}



/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26, 18, 9, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}



/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 160, 23, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(92, 58, 30, 0.3) 0%, transparent 60%);
}
.bg-gold{background-color:var(--gold)}
.clr-white{color:#fff}
.clr-dark{color:#000!important}
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.04;
  animation: spin 60s linear infinite;
}
#main-content{margin-top:100px}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.page-hero-label {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.h-stat {
  text-align: center;
}

.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.h-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}



/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

/* ── TEMPLE FILTER TABS ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(212, 160, 23, 0.2);
  color: var(--gold);
  border-color: rgba(212, 160, 23, 0.4);
}

/* ── FEATURED TEMPLE ── */
.featured-temple {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(92, 58, 30, 0.35), rgba(26, 18, 9, 0.8));
  border: 1px solid var(--gold-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 60px;
  position: relative;
}

@media(max-width:768px) {
  .featured-temple {
    grid-template-columns: 1fr;
  }
}

.featured-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-temple:hover .featured-img img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body .section-label {
  margin-bottom: 12px;
}

.featured-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.featured-body h2 span {
  color: var(--gold);
}

.featured-body p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.feat-tag {
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.feat-timings {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.feat-timing-item {
  text-align: center;
}

.feat-timing-item .time {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
}

.feat-timing-item .label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── TEMPLE GRID ── */
.temples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* ── TEMPLE CARD ── */
.temple-card {
  background: linear-gradient(135deg, rgba(46, 31, 16, 0.6), rgba(26, 18, 9, 0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: pointer;
}

.temple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 160, 23, 0.35);
  border-color: rgba(212, 160, 23, 0.4);
}

.temple-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.temple-card:hover .temple-card-img img {
  transform: scale(1.06);
}

.temple-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 18, 9, 0.85) 100%);
}

.temple-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26, 18, 9, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 50px;
}

.temple-dist {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.temple-card-body {
  padding: 22px 24px 26px;
}

.temple-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.temple-card-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.temple-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.meta-chip .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--gold);
}

.temple-card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-details {
  flex: 1;
  padding: 10px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-details:hover {
  background: rgba(212, 160, 23, 0.3);
  color: var(--gold-light);
}

.btn-map-pin {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-map-pin:hover {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
  border-color: rgba(212, 160, 23, 0.3);
}

.btn-map-pin .material-symbols-outlined {
  font-size: 1.1rem;
}

/* ── TEMPLE DETAIL MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark2), transparent);
}

.modal-body {
  padding: 32px;
}

.modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 6px;
}

.modal-body h2 span {
  color: var(--gold);
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media(max-width:500px) {
  .modal-info-grid {
    grid-template-columns: 1fr;
  }
}

.modal-info-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.modal-info-label {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.modal-info-value {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 500;
}

.modal-significance {
  background: rgba(212, 160, 23, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.modal-significance h4 {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-significance p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-img {
  position: relative;
}

/* ── TIPS SECTION ── */
.tips-strip {
  background: linear-gradient(135deg, rgba(92, 58, 30, 0.25), rgba(26, 18, 9, 0.5));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.tip-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.tip-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.tip-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── BREADCRUMB ── */
.breadcrumb-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb-row a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-row a:hover {
  text-decoration: underline;
}

/* ── MAP EMBED ── */
.map-section {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 380px;
  margin-top: 60px;
  position: relative;
}

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

/* ── FOOTER ── */


/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:600px) {
  .featured-body {
    padding: 28px 22px;
  }

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

  .tips-strip {
    padding: 28px 20px;
  }
  .ai-agent img {
    width:100%;
  }
  #main-content{margin-top:0px}
}

