/* 
   Caprivi Isaiah Tours & Safaris — Full Wild Savannah Theme
   All sections feature the wild savannah background with luxury dark glassmorphism
   Colors derived from exact logo (#76A02D & #1B2E11)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Logo Palette Colors */
  --color-logo-green: #689326;         /* Logo primary olive green */
  --color-logo-bright-green: #86b834;  /* Logo bright green "Isaiah" */
  --color-logo-dark-green: #1b2e11;    /* Logo dark forest green "Caprivi" */
  --color-logo-leaf: #94c843;          /* Logo leaf highlight */
  --color-logo-river-blue: #4080b8;    /* Logo river blue fish accent */
  
  --color-navy: #1b2e11;               /* Dark brand forest green */
  --color-navy-dark: #0d1708;          /* Deep dark background tint */
  --color-navy-light: #2c471d;         /* Card hover/subtle headers */
  
  --color-gold: #86b834;               /* Primary buttons & highlights (Logo green) */
  --color-gold-hover: #689326;         /* Primary button hover */
  --color-gold-light: rgba(134, 184, 52, 0.18); /* Light green pill background */
  --color-amber: #eab308;              /* Warm amber accent */
  --color-emerald: #86b834;            /* Badge green */
  --color-emerald-dark: #94c843;       /* Dark green text */
  --color-bg-light: #0d1708;           /* Deep savannah tint */
  --color-card-bg: rgba(255, 255, 255, 0.08); /* Glassmorphic card background */
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.82);
  --color-border: rgba(134, 184, 52, 0.25);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 24px rgba(134, 184, 52, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-image: url('assets/wild_savannah_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 23, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(134, 184, 52, 0.3);
  padding: 12px 0;
  transition: var(--transition);
}

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

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

.brand-logo-img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.brand-text h1 {
  font-size: 21px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand-text h1 span {
  color: var(--color-logo-bright-green);
}

.brand-text .ntb-badge {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--color-logo-bright-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.currency-toggle {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(134, 184, 52, 0.35);
  border-radius: var(--radius-full);
  padding: 4px;
  display: flex;
  gap: 2px;
}

.currency-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.currency-btn.active {
  background: var(--color-logo-bright-green);
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-logo-bright-green) 0%, var(--color-logo-green) 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--color-logo-leaf) 0%, var(--color-logo-bright-green) 100%);
  box-shadow: 0 12px 28px rgba(134, 184, 52, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: white;
  font-size: 24px;
}

/* Hero Section with Wild Savannah Background */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 90px;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(13, 23, 8, 0.65);
  backdrop-filter: blur(4px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(13, 23, 8, 0.85) 90%),
              linear-gradient(180deg, rgba(13, 23, 8, 0.4) 0%, rgba(13, 23, 8, 0.95) 100%);
}

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

.hero-logo-center {
  margin-bottom: 24px;
}

.hero-logo-center img {
  max-height: 125px;
  width: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.6));
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(134, 184, 52, 0.2);
  border: 1px solid rgba(134, 184, 52, 0.5);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-logo-bright-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-logo-bright-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item span.icon {
  font-size: 20px;
  color: var(--color-logo-bright-green);
}

/* Quick Stats Bar */
.stats-banner {
  background: rgba(13, 23, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(134, 184, 52, 0.25);
  padding: 24px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  padding: 12px;
}

.stat-card .num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-logo-bright-green);
  line-height: 1;
}

.stat-card .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

/* Section Header Component */
.section-hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-hdr .subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-logo-bright-green);
  margin-bottom: 10px;
}

.section-hdr h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-hdr p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* Tour Packages Section — Glassmorphic Dark Savannah */
.tours-section {
  padding: 90px 0;
  background: rgba(13, 23, 8, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(134, 184, 52, 0.2);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--color-logo-bright-green);
  color: #ffffff;
  border-color: var(--color-logo-bright-green);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tour-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(134, 184, 52, 0.3);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-logo-bright-green);
  background: rgba(255, 255, 255, 0.12);
}

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

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

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

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 23, 8, 0.9);
  backdrop-filter: blur(8px);
  color: var(--color-logo-bright-green);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(134, 184, 52, 0.3);
}

.tour-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.8);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.tour-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.tour-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.highlight-tag {
  background: rgba(134, 184, 52, 0.2);
  color: var(--color-logo-bright-green);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(134, 184, 52, 0.3);
}

.tour-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.tour-price .amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-logo-bright-green);
}

.tour-card-actions {
  display: flex;
  gap: 8px;
}

.btn-sm-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.btn-sm-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.btn-sm-gold {
  background: var(--color-logo-bright-green);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.btn-sm-gold:hover {
  background: var(--color-gold-hover);
}

/* Quote & Booking Calculator — Deep Glass Savannah */
.booking-section {
  padding: 90px 0;
  background: rgba(13, 23, 8, 0.88);
  backdrop-filter: blur(16px);
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid rgba(134, 184, 52, 0.2);
}

.booking-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(134, 184, 52, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-logo-bright-green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(13, 23, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-logo-bright-green);
  box-shadow: 0 0 0 3px rgba(134, 184, 52, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.addon-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 13px;
}

.addon-label:hover {
  background: rgba(255, 255, 255, 0.14);
}

.quote-summary-box {
  background: rgba(13, 23, 8, 0.94);
  border: 1px solid var(--color-logo-bright-green);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-header h4 {
  color: var(--color-logo-bright-green);
  font-size: 18px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
}

.summary-total {
  border-top: 2px dashed rgba(134, 184, 52, 0.4);
  padding-top: 16px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total .price-tag {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-logo-bright-green);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Interactive Map & Destinations Section */
.destinations-section {
  padding: 90px 0;
  background: rgba(13, 23, 8, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(134, 184, 52, 0.2);
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.dest-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dest-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.dest-card:hover, .dest-card.active {
  border-color: var(--color-logo-bright-green);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(6px);
}

.dest-card h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dest-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.dest-preview-box {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(134, 184, 52, 0.3);
}

.dest-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(13, 23, 8, 0.95) 0%, transparent 100%);
  color: #ffffff;
}

/* AI Chatbot Floating Drawer & Trigger */
.chatbot-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.chatbot-bubble {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-logo-bright-green) 0%, var(--color-logo-green) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(134, 184, 52, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(134, 184, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 184, 52, 0); }
}

.chatbot-bubble:hover {
  transform: scale(1.08);
}

.chatbot-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-navy);
}

.chatbot-badge {
  background: var(--color-navy-dark);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-logo-bright-green);
  white-space: nowrap;
}

.chatbot-drawer {
  position: fixed;
  bottom: 105px;
  right: 28px;
  width: 390px;
  height: 580px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 120px);
  background: rgba(13, 23, 8, 0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-logo-bright-green);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
}

.chatbot-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(134, 184, 52, 0.3);
}

.chatbot-hdr-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-hdr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-logo-bright-green);
  object-fit: cover;
}

.chatbot-hdr-info h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.chatbot-hdr-info p {
  font-size: 11px;
  color: var(--color-logo-bright-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-hdr-info p::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-logo-bright-green);
  border-radius: 50%;
  display: inline-block;
}

.chatbot-close {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.chatbot-close:hover {
  color: #ffffff;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
}

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
}

.msg-bot {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: var(--color-logo-bright-green);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-chips {
  padding: 10px 16px;
  background: rgba(13, 23, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.chip-btn:hover {
  background: var(--color-logo-bright-green);
  border-color: var(--color-logo-bright-green);
}

.chatbot-input-area {
  padding: 12px 16px;
  background: rgba(13, 23, 8, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
}

.chatbot-input {
  flex-grow: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
}

.chatbot-send-btn {
  background: var(--color-logo-bright-green);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Detail Modal Component */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 23, 8, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-card {
  background: rgba(13, 23, 8, 0.96);
  border: 1px solid var(--color-logo-bright-green);
  color: #ffffff;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-hdr {
  position: relative;
  height: 240px;
}

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

.modal-hdr-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
}

.modal-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: rgba(13, 23, 8, 0.96);
  backdrop-filter: blur(16px);
  color: #ffffff;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(134, 184, 52, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--color-logo-bright-green);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col p, .footer-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero h1 { font-size: 40px; }
  .booking-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero h1 { font-size: 32px; }
  .hero p.lead { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .chatbot-drawer { right: 16px; bottom: 95px; width: calc(100vw - 32px); }
}
