/* =====================
   ZENDA HIKING - Frontend CSS
   Color Palette: Green #2c5f2e, Dark Green #1a3b1c, Light Green #4a8c4d, Accent #e8f5e9, Orange #e67e22
   ===================== */

:root {
  --zenda-primary: #2c5f2e;
  --zenda-dark: #1a3b1c;
  --zenda-light: #4a8c4d;
  --zenda-accent: #e8f5e9;
  --zenda-orange: #e67e22;
  --zenda-text: #2d2d2d;
  --zenda-muted: #666;
  --zenda-border: #e0e0e0;
  --zenda-white: #ffffff;
  --zenda-shadow: 0 4px 20px rgba(0,0,0,0.1);
  --zenda-radius: 12px;
}

* { box-sizing: border-box; }

.zenda-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========== SEARCH BAR =========== */
.zenda-search-bar {
  background: var(--zenda-white);
  border-radius: var(--zenda-radius);
  box-shadow: var(--zenda-shadow);
  padding: 12px;
  margin: 20px 0;
}
.search-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.search-field {
  flex: 1;
  min-width: 140px;
  padding: 8px 12px;
}
.search-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--zenda-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.search-field input, .search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--zenda-text);
  background: transparent;
}
.search-divider { width: 1px; height: 40px; background: var(--zenda-border); }
.tourist-selector { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.tourist-btn {
  width: 28px; height: 28px;
  border: 2px solid var(--zenda-primary);
  background: none;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  color: var(--zenda-primary);
  display: flex; align-items: center; justify-content: center;
}
.search-btn {
  background: var(--zenda-primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--zenda-dark); }

/* =========== SECTIONS =========== */
.zenda-tours-section, .zenda-adventures-section {
  padding: 60px 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-title-area h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--zenda-text);
  margin: 0 0 8px;
}
.section-title-area p { color: var(--zenda-muted); margin: 0; }
.section-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--zenda-border);
  background: white;
  cursor: pointer;
  font-size: 13px;
  color: var(--zenda-text);
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--zenda-primary);
  color: white;
  border-color: var(--zenda-primary);
}
.see-all-link {
  color: var(--zenda-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

/* =========== TOUR CARDS =========== */
.tours-slider-wrapper { position: relative; overflow: hidden; }
.tours-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.tours-slider::-webkit-scrollbar { display: none; }

.tour-card {
  min-width: 240px;
  max-width: 280px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--zenda-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.tour-card:hover .card-image img { transform: scale(1.05); }
.tour-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--zenda-orange);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.card-overlay { position: absolute; bottom: 10px; left: 10px; }
.level-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.level-beginner { background: #27ae60; }
.level-intermediate { background: var(--zenda-orange); }
.level-advanced { background: #e74c3c; }

.card-body { padding: 14px; }
.card-title { font-size: 14px; font-weight: 700; margin: 0 0 6px; line-height: 1.3; }
.card-title a { color: var(--zenda-text); text-decoration: none; }
.card-meta { font-size: 12px; color: var(--zenda-muted); margin: 2px 0; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.card-price .price-label { font-size: 10px; color: var(--zenda-muted); display: block; }
.card-price .price-value { font-size: 18px; font-weight: 800; color: var(--zenda-text); }
.card-price .price-cur { font-size: 12px; color: var(--zenda-muted); }
.btn-card {
  background: var(--zenda-primary);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.btn-card:hover { background: var(--zenda-dark); color: white; }

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 20px;
  color: var(--zenda-primary);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--zenda-primary); color: white; }
.slider-prev { left: -15px; }
.slider-next { right: -15px; }

/* =========== ADVENTURE TABS =========== */
.adventure-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--zenda-border);
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--zenda-text);
  transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--zenda-primary);
  color: white;
  border-color: var(--zenda-primary);
}

/* =========== TOUR PAGE LAYOUT =========== */
.zenda-tour-page { padding: 40px 0 80px; }
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) { .tour-layout { grid-template-columns: 1fr; } }

.tour-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.stars { font-size: 20px; color: #f39c12; }
.reviews-count { color: var(--zenda-muted); font-size: 14px; }
.see-reviews { color: var(--zenda-primary); font-size: 14px; text-decoration: none; font-weight: 600; }

.tour-feature-image {
  border-radius: var(--zenda-radius);
  overflow: hidden;
  margin-bottom: 12px;
  height: 400px;
}
.tour-feature-image img { width: 100%; height: 100%; object-fit: cover; }

.tour-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}
.gallery-thumb {
  border-radius: 8px;
  overflow: hidden;
  height: 90px;
  cursor: pointer;
  position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s; }
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-more {
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.tour-section { margin-bottom: 30px; }
.tour-section h2 { font-size: 22px; font-weight: 700; color: var(--zenda-text); border-bottom: 2px solid var(--zenda-border); padding-bottom: 10px; margin-bottom: 16px; }

.tour-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--zenda-accent);
  border-radius: var(--zenda-radius);
  padding: 20px;
  margin-bottom: 30px;
}
.stat-item { text-align: center; }
.stat-icon { font-size: 24px; display: block; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: var(--zenda-muted); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.stat-value { font-size: 15px; font-weight: 700; color: var(--zenda-text); display: block; }

.tour-include-exclude {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}
.include-section h3 { color: #27ae60; }
.exclude-section h3 { color: #e74c3c; }
.include-section ul, .exclude-section ul {
  list-style: none;
  padding: 0; margin: 0;
}
.include-section li::before { content: "✓ "; color: #27ae60; font-weight: 700; }
.exclude-section li::before { content: "✗ "; color: #e74c3c; font-weight: 700; }

.tour-faq { margin-bottom: 30px; }
.faq-item { border-bottom: 1px solid var(--zenda-border); }
.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--zenda-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========== TOUR SIDEBAR / BOOKING WIDGET =========== */
.tour-sidebar { position: sticky; top: 20px; }
.booking-widget {
  background: white;
  border-radius: var(--zenda-radius);
  box-shadow: var(--zenda-shadow);
  padding: 24px;
  border: 1px solid var(--zenda-border);
}
.widget-categories { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.category-badge {
  background: var(--zenda-accent);
  color: var(--zenda-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.widget-price { margin-bottom: 20px; }
.price-from { font-size: 12px; color: var(--zenda-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-main { font-size: 36px; font-weight: 900; color: var(--zenda-text); line-height: 1.1; }
.price-currency { font-size: 16px; font-weight: 600; color: var(--zenda-muted); }
.price-per { font-size: 12px; color: var(--zenda-muted); }

.widget-field { margin-bottom: 14px; }
.widget-field label { display: block; font-size: 12px; font-weight: 700; color: var(--zenda-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.widget-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--zenda-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--zenda-text);
  background: white;
  cursor: pointer;
}
.qty-control { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 34px; height: 34px;
  border: 2px solid var(--zenda-border);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--zenda-primary);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--zenda-primary); background: var(--zenda-accent); }
#qty-value { font-size: 18px; font-weight: 700; min-width: 30px; text-align: center; }

.btn-book-now {
  width: 100%;
  background: var(--zenda-primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.btn-book-now:hover { background: var(--zenda-dark); }
.btn-show-dates {
  width: 100%;
  background: none;
  color: var(--zenda-primary);
  border: 1px solid var(--zenda-primary);
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.2s;
}
.btn-show-dates:hover { background: var(--zenda-accent); }

.widget-departure {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--zenda-accent);
  border-radius: 8px;
  margin-bottom: 16px;
}
.departure-icon { font-size: 24px; }
.departure-info strong { font-size: 14px; color: var(--zenda-text); }
.departure-info p { font-size: 13px; color: var(--zenda-muted); margin: 2px 0; }
.see-location { color: var(--zenda-primary); font-size: 12px; text-decoration: none; font-weight: 600; }

.widget-upcoming-dates { margin-bottom: 16px; }
.widget-upcoming-dates strong { font-size: 14px; color: var(--zenda-text); display: block; margin-bottom: 10px; }

.date-card {
  background: white;
  border: 1px solid var(--zenda-border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
}
.date-card.last_spots { border-color: var(--zenda-orange); }
.date-card.sold_out { opacity: 0.6; }
.date-card-row { display: flex; gap: 16px; margin-bottom: 8px; }
.date-card-row > div { flex: 1; }
.date-label { font-size: 10px; text-transform: uppercase; color: var(--zenda-muted); letter-spacing: 0.5px; display: block; }
.date-card strong { font-size: 15px; font-weight: 700; display: block; }
.date-card small { font-size: 12px; color: var(--zenda-muted); }
.date-card-footer { display: flex; justify-content: space-between; align-items: center; }
.status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-badge.available { background: #e8f5e9; color: #27ae60; }
.status-badge.last_spots { background: #fff3e0; color: var(--zenda-orange); }
.status-badge.sold_out { background: #fce4e4; color: #e74c3c; }

.widget-custom-tour {
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--zenda-border);
  border-radius: 8px;
}
.custom-tour-icon { font-size: 32px; margin-bottom: 8px; }
.widget-custom-tour p { font-size: 13px; color: var(--zenda-muted); margin: 0 0 10px; }

/* Related Tours */
.related-tours { margin-top: 40px; }
.related-tours h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.related-tours-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .related-tours-slider { grid-template-columns: 1fr; } }

/* =========== MODALS =========== */
.zenda-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
.modal-container {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--zenda-radius);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-md { width: 540px; max-width: 100%; }
.modal-lg { width: 800px; max-width: 100%; }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--zenda-border);
  position: sticky; top: 0; background: white; z-index: 1;
}
.modal-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--zenda-muted);
  line-height: 1;
  padding: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--zenda-border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* All Dates Modal */
.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr 120px 100px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--zenda-border);
  transition: background 0.15s;
}
.date-row:hover { background: var(--zenda-accent); }
.date-row.past { opacity: 0.5; }
.d-label { font-size: 10px; text-transform: uppercase; color: var(--zenda-muted); letter-spacing: 0.5px; }
.d-main { font-size: 15px; font-weight: 700; text-transform: capitalize; }
.d-time { font-size: 12px; color: var(--zenda-muted); }
.badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge.available { background: #e8f5e9; color: #27ae60; }
.badge.last-spots { background: #fff3e0; color: var(--zenda-orange); }
.badge.sold-out { background: #fce4e4; color: #e74c3c; }

.modal-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 16px;
}
.page-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--zenda-border);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.page-btn.active {
  background: var(--zenda-primary);
  color: white;
  border-color: var(--zenda-primary);
}

.custom-tour-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--zenda-accent);
  border-radius: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.custom-tour-banner .custom-tour-icon { font-size: 36px; }
.custom-tour-banner strong { font-size: 15px; display: block; }
.custom-tour-banner p { font-size: 13px; color: var(--zenda-muted); margin: 2px 0 0; }

/* Booking Form */
.participant-block {
  background: var(--zenda-accent);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.participant-block h5 { font-size: 15px; font-weight: 700; margin: 0 0 12px; color: var(--zenda-primary); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.field-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--zenda-border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--zenda-text);
  background: white;
}
.field-input:focus { outline: none; border-color: var(--zenda-primary); box-shadow: 0 0 0 3px rgba(44,95,46,0.1); }
.modal-subtitle { font-size: 13px; color: var(--zenda-muted); margin-bottom: 16px; }
.btn-add-participant {
  background: none;
  color: var(--zenda-primary);
  border: 1px dashed var(--zenda-primary);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--zenda-text); }
.btn-block { width: 100%; }

/* Seat Selector */
.zenda-seat-selector { padding: 16px 0; }
.seat-legend { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--zenda-muted); }
.seat-demo { width: 20px; height: 20px; border-radius: 4px; display: inline-block; }
.seat-demo.available { background: var(--zenda-primary); }
.seat-demo.booked { background: #ccc; }
.seat-demo.selected { background: var(--zenda-orange); }

.vehicle-container { background: #f5f5f5; border-radius: 12px; padding: 20px; display: inline-block; }
.vehicle-front { display: flex; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 2px solid #ddd; }
.driver-seat { font-size: 12px; font-weight: 700; color: var(--zenda-muted); background: #e0e0e0; padding: 6px 10px; border-radius: 6px; }
.driver-seat.left { margin-right: auto; }
.driver-seat.right { margin-left: auto; }
.seat-grid { display: grid; gap: 6px; }
.seat {
  width: 46px; height: 42px;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.15s;
  user-select: none;
}
.seat.passenger { background: var(--zenda-primary); color: white; }
.seat.passenger:hover:not(.booked) { background: var(--zenda-light); }
.seat.passenger.selected { background: var(--zenda-orange); }
.seat.passenger.booked { background: #bbb; cursor: not-allowed; color: #888; }
.seat.aisle { background: transparent; cursor: default; }
.seat.empty { background: transparent; cursor: default; }
.seat-number { font-size: 10px; }
.seat-info { font-size: 13px; color: var(--zenda-muted); margin-top: 12px; }

/* Reviews */
.reviews-summary { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; }
.big-rating { font-size: 64px; font-weight: 900; color: var(--zenda-text); line-height: 1; }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 12px; }
.bar { flex: 1; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.bar div { height: 100%; background: #f39c12; border-radius: 4px; }

/* Buttons */
.btn-primary {
  background: var(--zenda-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--zenda-dark); }
.btn-outline {
  background: none;
  color: var(--zenda-primary);
  border: 2px solid var(--zenda-primary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--zenda-primary); color: white; }
.btn-outline-lg {
  background: none;
  color: var(--zenda-primary);
  border: 2px solid var(--zenda-primary);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-sm { padding: 6px 14px; font-size: 12px; font-weight: 600; }
.btn-back {
  background: none;
  color: var(--zenda-muted);
  border: 1px solid var(--zenda-border);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
.btn-book-date {
  background: var(--zenda-primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-book-date:hover { background: var(--zenda-dark); }

/* My Bookings */
.zenda-my-bookings { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.booking-card {
  background: white;
  border-radius: var(--zenda-radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--zenda-border);
}
.booking-card.status-confirmed { border-left-color: #27ae60; }
.booking-card.status-pending { border-left-color: var(--zenda-orange); }
.booking-card.status-cancelled { border-left-color: #e74c3c; }
.booking-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.booking-status.confirmed { color: #27ae60; font-weight: 700; }
.booking-status.pending { color: var(--zenda-orange); font-weight: 700; }
.booking-status.cancelled { color: #e74c3c; font-weight: 700; }

/* Google Translate */
#google_translate_element { display: inline-block; }
.goog-te-gadget-simple { border: 1px solid var(--zenda-border) !important; border-radius: 6px !important; }

/* Loading */
.zenda-loading {
  text-align: center;
  padding: 30px;
  color: var(--zenda-muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-include-exclude { grid-template-columns: 1fr; }
  .search-bar-inner { flex-direction: column; }
  .search-divider { display: none; }
  .search-field { width: 100%; }
  .date-row { grid-template-columns: 1fr 1fr; }
  .tour-gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

/* =========== HERO =========== */
.zenda-hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #1a3b1c 0%, #2c5f2e 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
}
.hero-content .zenda-search-bar {
  max-width: 900px;
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
}

/* =========== BANNER =========== */
.zenda-banner {
  background: var(--zenda-accent);
  padding: 80px 0;
}
.zenda-banner .zenda-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.banner-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.banner-content p { font-size: 16px; color: var(--zenda-muted); line-height: 1.7; margin-bottom: 24px; }
.banner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.banner-img { border-radius: 8px; overflow: hidden; height: 160px; }
.banner-img img { width: 100%; height: 100%; object-fit: cover; }
.banner-img:first-child { height: 200px; }
@media (max-width: 768px) {
  .zenda-banner .zenda-container { grid-template-columns: 1fr; }
  .banner-images { grid-template-columns: repeat(2, 1fr); }
}
