/* ==========================================================================
   TRIPMAKES DESIGN SYSTEM & CORE STYLES
   Colors: Deep Evergreen (#0d3829), Warm Amber (#d97706), Alabaster/Sand (#fcfaf6)
   Typography: Outfit (Headings), Plus Jakarta Sans (Body & UI)
   Mobile-First & Zero Document-Level Horizontal Overflow
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #0d3829;
  --primary-dark: #072218;
  --primary-light: #16533c;
  --primary-subtle: #eaf3ee;
  
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-light: #fef3c7;
  
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  
  /* Neutral Palette */
  --bg-page: #fbf9f5;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f4f0e6;
  --bg-card: #ffffff;
  
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --text-inverse: #ffffff;
  
  --border-subtle: #e5e7eb;
  --border-light: #d1d5db;
  --border-focus: #0d3829;
  
  /* Status Colors */
  --success: #059669;
  --success-bg: #ecfdf5;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --info: #0284c7;
  --info-bg: #f0f9ff;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Elevation Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  /* Layout Spacing */
  --container-max: 1240px;
  --header-height: 72px;
  --sticky-bar-height: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Responsive Images & Media */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.5rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.2rem, 1.65rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.catalogue-main {
  padding-bottom: 5rem;
}

.section-sm {
  padding: 2.5rem 0;
}

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

.section-bg-dark {
  background-color: var(--primary);
  color: var(--text-inverse);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--text-inverse);
}

.section-bg-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.content-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.content-card h2:first-child {
  margin-top: 0;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 0.85rem;
}

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

/* Buttons and Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  min-height: 38px;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
  min-height: 54px;
}

.btn-block {
  width: 100%;
}

.form-privacy-note {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.form-privacy-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.admin-table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-link:hover {
  color: var(--accent-light);
}

/* Header Top Trust & Contact Bar */
.header-top-bar, .top-bar {
  background-color: #0b131e;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.header-top-bar .container,
.top-bar .container,
.header-top-bar .header-top-inner,
.top-bar .top-bar-inner {
  max-width: 100% !important;
  width: 100%;
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
  padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.header-top-inner, .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-top-left, .top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-top-left span, .top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-top-left a, .top-bar-left a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.header-top-left a:hover, .top-bar-left a:hover {
  color: #f59e0b;
}

.header-top-right, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-top-right span, .top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e2e8f0;
  font-weight: 500;
}

@media (max-width: 900px) {
  .header-top-bar, .top-bar {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  width: 100%;
}

.site-header .container,
.site-header .header-inner {
  max-width: 100% !important;
  width: 100%;
  padding-left: clamp(1rem, 2.5vw, 2.5rem);
  padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo-brand:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-logo-brand {
  display: inline-block;
  background: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  flex: 1 1 auto;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid var(--border-subtle);
  z-index: 1050;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-item:hover {
  background-color: var(--primary-subtle);
  color: var(--primary);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 56, 41, 0.92), rgba(7, 34, 24, 0.96)),
              url('../images/south-india-circuits.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fef3c7;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Google Search Ads Landing Hero 2-Column Grid */
.hero-landing-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-landing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fef3c7;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-bullets li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-bullets li span {
  color: #fbbf24;
  font-weight: 800;
}

.hero-quote-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.hero-quote-box h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.hero-quote-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title span {
  color: #fbbf24;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.25);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.hero-feature-text h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.hero-feature-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

/* Customer Promise Component (5 Core Questions) */
.customer-promise-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}

.promise-header {
  margin-bottom: 1.5rem;
}

.promise-header h3 {
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.promise-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-surface-alt);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.promise-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.promise-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(13, 56, 41, 0.25);
}

.promise-card h5 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.promise-card p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.promise-action-card {
  grid-column: 1 / -1;
  background: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.promise-action-card h5 {
  color: #92400e;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.promise-action-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #78350f;
}

/* Destination Planning Guide & FAQ Components */
.dest-guide-section {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.dest-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dest-guide-card {
  background: var(--bg-surface-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
}

.dest-guide-card:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dest-guide-card h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-guide-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.dest-guide-card ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dest-guide-card ul li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
}

.dest-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.dest-faq-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.dest-faq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.dest-faq-card h5 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.dest-faq-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Quick Search Engine Widget */
.search-widget-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-subtle);
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 160px;
  gap: 1rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-control, .form-select {
  width: 100%;
  height: 48px;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 56, 41, 0.12);
}

/* Destination Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-light);
}

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

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

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.dest-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(13, 56, 41, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.dest-card-title {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}

.dest-card-duration {
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.dest-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.dest-spots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.dest-spot-tag {
  font-size: 0.75rem;
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* Trust / Why Us Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  position: relative;
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-rating {
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.review-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.reviewer-trip {
  font-size: 0.8rem;
  color: var(--accent-hover);
  font-weight: 600;
}

/* Sticky Mobile Bottom Bar (Crucial Workplan Requirement) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--sticky-bar-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
  align-items: center;
  justify-content: space-around;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.sticky-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 44px;
  margin: 0 0.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-btn-call {
  background-color: var(--primary);
  color: #ffffff;
}

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

.sticky-btn-quote {
  background-color: var(--accent);
  color: #ffffff;
}

/* Site Footer */
.site-footer {
  background-color: var(--primary);
  color: #ffffff;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer p {
  color: #ffffff;
  line-height: 1.6;
}

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

.footer-desc {
  color: #f8fafc !important;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background-color: var(--accent);
}

.footer-col p {
  color: #f1f5f9 !important;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.footer-links a {
  color: #f8fafc !important;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #fbbf24 !important;
  padding-left: 5px;
}

/* Bank Account Card in Footer */
.footer-bank-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin-top: 1rem;
}

.footer-bank-card h5 {
  color: #fbbf24;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.bank-detail-item {
  font-size: 0.88rem;
  color: #ffffff !important;
  line-height: 1.55;
}

.bank-detail-item strong {
  color: #fef3c7;
  font-weight: 700;
}

/* Map Card in Footer */
.footer-map-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.map-header-info {
  padding: 0.75rem 0.9rem;
  background: #ffffff;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.map-header-info h5 {
  font-size: 0.88rem;
  margin: 0;
  color: #0d3829;
  font-weight: 700;
}

.map-header-info p {
  font-size: 0.75rem;
  color: #4b5563 !important;
  margin: 0;
}

.map-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d97706;
  background: #fef3c7;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.footer-map-embed {
  position: relative;
  height: 130px;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}

.footer-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.footer-bottom p {
  color: #f1f5f9 !important;
  margin: 0;
}

/* Modal Popup Core */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-alt);
  position: sticky;
  top: 0;
  z-index: 2;
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: #ffffff;
  color: var(--text-main);
}

.modal-body {
  padding: 1.5rem;
}

.children-ages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

/* Responsive Media Queries */
@media (max-width: 1280px) {
  .top-bar {
    display: none;
  }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 14px 30px -5px rgba(0, 0, 0, 0.2);
    display: none !important;
    border-top: 1px solid var(--border-subtle);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 9999;
    gap: 0.35rem;
  }

  .main-nav.active {
    display: flex !important;
  }
  
  .main-nav .nav-link {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface-alt);
  }

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

  .main-nav .nav-dropdown {
    width: 100%;
  }

  .main-nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    display: none !important;
    border-radius: var(--radius-sm);
  }

  .main-nav .nav-dropdown.open .dropdown-menu {
    display: flex !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-surface-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    color: var(--primary);
    cursor: pointer;
  }
  
  .header-cta-group .btn {
    display: none;
  }
}

@media (max-width: 1150px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .coorg-mysore-page .hero {
    padding: 2.75rem 0 2.5rem;
  }

  .coorg-mysore-page .hero-quote-box,
  .coorg-mysore-page .hero-bullets li:nth-child(n + 3),
  .coorg-mysore-page .hero-actions .btn-outline-white {
    display: none;
  }

  .coorg-mysore-page .hero-bullets {
    margin: 1rem 0 1.25rem;
  }

  .estimate-breakdown {
    grid-template-columns: 1fr !important;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Show sticky bar on mobile */
  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(var(--sticky-bar-height) + var(--safe-bottom));
  }
}

@media (max-width: 480px) {
  .hero-badge,
  .hero-trust-badge {
    max-width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    border-radius: var(--radius-sm);
  }

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

  .btn {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
