/* ==========================================================================
   LUXORIA TOURS — MAIN STYLESHEET
   Pure Emerald Green Palette · Real Place Bangalore Background Images · NO White Backgrounds
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOP UTILITY BAR & MAIN HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--emerald-abyss);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(52, 211, 153, 0.12);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-tagline {
  color: var(--text-secondary);
}

.topbar-tagline strong {
  color: var(--text-white);
}

.topbar-badge {
  color: var(--gold-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.site-header {
  background-color: rgba(5, 29, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--emerald-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold-accent);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold-accent);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: var(--emerald-surface);
  border: 1px solid var(--emerald-border);
  color: var(--text-white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-drawer {
  display: none;
  background: var(--emerald-darkest);
  border-top: 1px solid var(--emerald-border);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.mobile-menu-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mobile-nav-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0.35rem 0;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION — REAL BANGALORE PALACE BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--emerald-darkest);
  padding: 6rem 0 7rem;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bangalore-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(3, 20, 15, 0.85), 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #f1f7f4;
  font-weight: 450;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 14px rgba(3, 20, 15, 0.85), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .btn-gold {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.hero-content .btn-outline {
  background: rgba(3, 20, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Tour Search Bar — Deep Emerald Glassmorphism (NO WHITE) */
.hero-search-container {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  margin-bottom: 2rem;
}

.tour-search-bar {
  background: rgba(7, 39, 30, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--emerald-border);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.search-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.search-field-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.search-field-select {
  width: 100%;
  border: 1px solid var(--emerald-border);
  background: var(--emerald-darkest);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  color: var(--text-white);
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.search-field-select option {
  background: var(--emerald-darkest);
  color: var(--text-white);
}

.search-field-select:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(223, 196, 153, 0.2);
}

/* --------------------------------------------------------------------------
   3. ABOUT SECTION — REAL LALBAGH BOTANICAL GARDENS BACKGROUND
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
  padding: 6.5rem 0;
  background-color: var(--emerald-dark);
  overflow: hidden;
}

.about-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: brightness(1.22) saturate(1.25);
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bangalore-section);
  z-index: 1;
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Image Collage & Luxury Framing */
.about-image-wrapper {
  position: relative;
}

.about-frame-backdrop {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 90%;
  height: 90%;
  border: 1.5px solid rgba(223, 196, 153, 0.35);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.about-image-wrapper:hover .about-frame-backdrop {
  transform: translate(-4px, -4px);
  border-color: rgba(223, 196, 153, 0.65);
}

.about-img-container {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(52, 211, 153, 0.28);
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.03);
}

/* Top Floating Pill Badge */
.about-top-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(3, 20, 15, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(223, 196, 153, 0.4);
  padding: 0.38rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Bottom Floating Luxury Glass Card */
.about-floating-badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.25rem;
  z-index: 3;
  background: rgba(7, 39, 30, 0.95);
  backdrop-filter: blur(16px);
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(52, 211, 153, 0.35);
  max-width: 250px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.about-floating-badge:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
}

.about-badge-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.about-badge-num {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
}

.about-badge-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-badge-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Content Column (Fixed Stretch Bug with align-items: flex-start) */
.about-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag-wrapper {
  margin-bottom: 0.9rem;
}

.about-tag-wrapper .section-tag {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10, 61, 48, 0.85);
  border: 1px solid rgba(223, 196, 153, 0.35);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #dfc499 50%, #f3dfbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-title {
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

/* 4 Luxury Feature Glass Cards */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
  width: 100%;
  margin-bottom: 2.15rem;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(9, 46, 36, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  transition: all var(--transition-fast);
}

.about-feature-card:hover {
  background: rgba(14, 73, 58, 0.85);
  border-color: rgba(223, 196, 153, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(223, 196, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.feature-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Action Button & Trust Note Row */
.about-actions-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.about-actions-row .btn {
  padding: 0.85rem 1.85rem;
}

.about-tagline-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--gold-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-tagline-note .note-check {
  color: var(--emerald-border);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. POPULAR TOUR PACKAGES — DEEP EMERALD SECTION & CARDS
   -------------------------------------------------------------------------- */
.packages-section {
  padding: 6.5rem 0;
  background-color: var(--emerald-darkest);
  position: relative;
}

.package-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3.25rem;
}

.tab-btn {
  background: rgba(7, 39, 30, 0.8);
  border: 1px solid var(--emerald-border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--gold-accent);
  color: var(--text-white);
  background: var(--emerald-surface);
}

.tab-btn.active {
  background-color: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--emerald-abyss);
  font-weight: 800;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Tour Card: Deep Emerald Green (NO WHITE) */
.tour-card {
  background: var(--emerald-card);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--emerald-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-hover);
}

.tour-card-header {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.tour-duration-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(3, 20, 15, 0.9);
  color: var(--gold-accent);
  border: 1px solid var(--emerald-border);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

.tour-category-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--emerald-primary);
  border: 1px solid var(--emerald-border);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
}

.tour-card-body {
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--gold-star);
  font-weight: 700;
}

.tour-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.tour-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tour-inclusions {
  padding: 0.85rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(52, 211, 153, 0.15);
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tour-inc-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.tour-price-box {
  display: flex;
  flex-direction: column;
}

.tour-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tour-price-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-accent);
}

/* --------------------------------------------------------------------------
   5. TRAVEL STYLES — REAL NANDI HILLS BANGALORE BACKGROUND
   -------------------------------------------------------------------------- */
.styles-section {
  position: relative;
  padding: 6.5rem 0;
  background-color: var(--emerald-dark);
  overflow: hidden;
}

.styles-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.2);
}

.styles-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bangalore-section);
  z-index: 1;
}

.styles-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

/* Style Box: Deep Emerald Card */
.style-box {
  background: rgba(7, 39, 30, 0.88);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.style-box:hover {
  background: var(--emerald-surface);
  border-color: var(--gold-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.style-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-border);
  color: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.style-box:hover .style-icon-wrap {
  background: var(--gold-accent);
  color: var(--emerald-abyss);
}

.style-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.style-meta {
  font-size: 0.78rem;
  color: var(--gold-accent);
}

/* --------------------------------------------------------------------------
   6. WHY CHOOSE LUXORIA — REAL VIDHANA SOUDHA BANGALORE BACKGROUND
   -------------------------------------------------------------------------- */
.why-section {
  position: relative;
  padding: 6.5rem 0;
  background-color: var(--emerald-darkest);
  overflow: hidden;
}

.why-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: brightness(1.24) saturate(1.25);
}

.why-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bangalore-dark);
  z-index: 1;
}

.why-features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

/* Feature Cards: Deep Emerald Green */
.why-feature-card {
  background: rgba(10, 52, 40, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.why-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-hover);
}

.why-num-badge {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-accent);
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.stats-row {
  position: relative;
  z-index: 2;
  background: rgba(7, 39, 30, 0.95);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  box-shadow: var(--shadow-emerald);
}

.stat-num {
  font-size: 2.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--gold-accent);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-white);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. REVIEWS & TESTIMONIALS
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 6.5rem 0;
  background-color: var(--emerald-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--emerald-card);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold-star);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.author-tour {
  font-size: 0.78rem;
  color: var(--gold-accent);
}

/* --------------------------------------------------------------------------
   8. CALL TO ACTION BANNER — REAL BANGALORE PALACE PANORAMIC
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  padding: 6.5rem 0;
  background-color: var(--emerald-abyss);
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: brightness(1.28) contrast(1.1) saturate(1.22);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 20, 15, 0.48) 0%,
    rgba(7, 39, 30, 0.65) 50%,
    rgba(3, 20, 15, 0.85) 100%
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.cta-banner-sub {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

/* --------------------------------------------------------------------------
   9. FOOTER — DEEPEST EMERALD (NO WHITE)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--emerald-abyss);
  color: var(--text-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(52, 211, 153, 0.15);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-name {
  color: var(--text-white);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-hq-box {
  background: rgba(7, 39, 30, 0.85);
  border: 1px solid var(--emerald-border);
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   10. MODAL DIALOG — EMERALD THEME (NO WHITE)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 20, 15, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--emerald-darkest);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 660px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-hover);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(7, 39, 30, 0.9);
  border: 1px solid var(--emerald-border);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--emerald-surface);
  border-color: var(--gold-accent);
}

.modal-body {
  padding: 2.25rem;
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .tour-search-bar {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .styles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-menu,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .tour-search-bar {
    grid-template-columns: 1fr;
  }

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

  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .about-floating-badge {
    position: static;
    margin-top: 1.25rem;
    max-width: 100%;
  }

  .about-frame-backdrop {
    display: none;
  }

  .about-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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