/* ===== COLORS & VARIABLES ===== */
:root {
  --primary: #005d83;
  --primary-dark: #004563;
  --accent: #e8792f;
  --accent-dark: #d4611a;
  --gold: #f5a623;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a2e;
  --white: #fff;
  --text: #333;
  --text-light: #666;
  --whatsapp: #25D366;
}

/* ===== BASE OVERRIDES (work with Bootstrap) ===== */
body { font-family: 'Poppins', sans-serif; color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
a:hover { color: inherit; }
ul { list-style: none; padding-left: 0; margin-bottom: 0; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-left a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}
.top-bar-left a:hover { opacity: 0.8; color: var(--white); }
.booking-badge {
  background: linear-gradient(135deg, var(--accent), #e74c3c);
  color: var(--white) !important;
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  animation: pulse-badge 2s infinite;
  cursor: pointer;
  border: none;
  transition: transform 0.3s;
  display: inline-block;
}
.booking-badge:hover { transform: scale(1.05); color: var(--white); }
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.main-navbar .navbar-brand img {
  height: 55px;
}
.main-navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--accent) !important;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.main-navbar .navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.main-navbar .navbar-toggler:focus { box-shadow: none; }
.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23005d83' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-book-now {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
  font-weight: 600;
  padding: 8px 22px !important;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn-book-now:hover { background: var(--accent-dark) !important; }

/* ===== HERO SLIDER - FULL IMAGE DISPLAY ===== */
.hero-slider {
  position: relative;
  width: 100%;
  /* Auto height based on image aspect ratio */
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; position: relative; }
.slide img {
  width: 100%;
  height: 100%;
  /* contain = full image visible, no cropping */
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 300px;
  max-height: 85vh;
}
/* Ensure non-active slides match active slide dimensions */
.slide:not(.active) {
  position: absolute;
  top: 0; left: 0;
}
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  display: flex;
  align-items: center;
}
.slide-content {
  color: var(--white);
  max-width: 600px;
}
.slide-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.slide-content p {
  font-size: 17px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.slider-dot.active { background: var(--white); }
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.slider-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.25);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.5); }

/* ===== BUTTONS ===== */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  transition: background 0.3s;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 600;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: none;
}
.btn-whatsapp:hover { background: #1faa53; color: var(--white); }

/* ===== SECTION COMMON ===== */
.section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 45px;
}
.section-title h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto;
}

/* ===== ABOUT PREVIEW (Home) ===== */
.about-preview { background: var(--light-bg); }
.about-image { position: relative; }
.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 100%;
}
.about-image .experience-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: var(--accent);
  color: var(--white);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.experience-badge .number {
  font-size: 34px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.experience-badge .label { font-size: 13px; }
.about-text h2 {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 15px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 12px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.about-features li svg { flex-shrink: 0; }

/* ===== PACKAGE CARDS ===== */
.package-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.package-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.package-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.package-card:hover .card-image img { transform: scale(1.1); }
.package-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.card-body { padding: 22px; }
.card-body h3 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-light);
}
.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-body > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 10px;
}
.card-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.card-price small {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* ===== STATS / COUNTERS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 55px 0;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-size: 40px;
  font-weight: 700;
  display: block;
}
.stat-item .stat-label {
  font-size: 15px;
  opacity: 0.85;
}

/* ===== FEATURE CARDS (Why Choose Us) ===== */
.feature-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  height: 100%;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card .icon {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  background: rgba(0, 93, 131, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .icon svg {
  width: 26px; height: 26px;
  color: var(--primary);
}
.feature-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 93, 131, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  height: 100%;
}
.testimonial-card .quote {
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--primary);
}
.testimonial-card .stars { color: var(--gold); font-size: 14px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: #ccc;
  padding: 55px 0 0;
}
.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}
.footer-about p { font-size: 14px; margin-bottom: 14px; }
.footer-about .logo-footer { height: 48px; margin-bottom: 14px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0 50px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('baaner-1.jpeg') center/cover;
  opacity: 0.15;
}
.page-header h1 { font-size: 38px; position: relative; font-weight: 700; }
.page-header .breadcrumb-custom {
  position: relative;
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.85;
}
.page-header .breadcrumb-custom a { color: var(--white); }
.page-header .breadcrumb-custom a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE ===== */
.about-full-section .about-content img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 100%;
}
.vm-card {
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent);
  height: 100%;
}
.vm-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== TOUR DETAIL ===== */
.tour-detail {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 30px;
}
.tour-detail-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 25px 30px;
}
.tour-detail-header h2 { font-size: 26px; }
.tour-price-tag {
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}
.tour-detail-body { padding: 25px 30px; }
.itinerary-list { margin: 15px 0; }
.itinerary-item {
  display: flex;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.itinerary-item:last-child { border-bottom: none; }
.day-badge {
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.itinerary-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}
.tour-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.tour-info-item {
  background: var(--light-bg);
  padding: 14px;
  border-radius: 8px;
  text-align: center;
}
.tour-info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 14px;
}
.tour-info-item span {
  font-size: 13px;
  color: var(--text-light);
}
.inclusion-list h4 {
  color: var(--primary);
  margin-bottom: 10px;
}
.inclusion-list ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.inclusion-list.included ul li::before {
  content: "\2713";
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
}
.inclusion-list.excluded ul li::before {
  content: "\2717";
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
}
.dates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.dates-table th {
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
}
.dates-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.dates-table tr:hover { background: var(--light-bg); }

/* ===== CONTACT ===== */
.contact-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  align-items: flex-start;
}
.contact-card .icon-box {
  width: 48px; height: 48px;
  background: rgba(0, 93, 131, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.contact-card h4 { color: var(--primary); margin-bottom: 4px; font-size: 16px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-light); }
.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.contact-form h3 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 22px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0,93,131,0.15);
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #e74c3c);
  padding: 55px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: 34px; margin-bottom: 12px; }
.cta-section p { font-size: 17px; margin-bottom: 22px; opacity: 0.9; }

/* ===== RESPONSIVE FINE-TUNING ===== */

/* Tablet */
@media (max-width: 991.98px) {
  .slide-content h1 { font-size: 32px; }
  .slide-content p { font-size: 15px; }
  .section { padding: 50px 0; }
  .section-title h2 { font-size: 28px; }
  .about-image .experience-badge { bottom: -10px; right: 10px; padding: 14px; }
  .experience-badge .number { font-size: 28px; }
  .cta-section h2 { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
  .tour-detail-header h2 { font-size: 22px; }
  .tour-price-tag { font-size: 18px; padding: 8px 18px; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .top-bar { text-align: center; }
  .top-bar .d-flex { flex-direction: column; gap: 8px; align-items: center !important; }
  .top-bar-left { justify-content: center; gap: 12px; }
  .top-bar-left a { font-size: 13px; }

  .main-navbar .navbar-brand img { height: 42px; }
  .main-navbar .navbar-collapse {
    background: var(--white);
    padding: 15px;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .hero-slider { min-height: 250px; }
  .slide img { min-height: 250px; max-height: 60vh; }
  .slide-content h1 { font-size: 22px; }
  .slide-content p { font-size: 14px; margin-bottom: 15px; }
  .slide-content .btn { padding: 8px 18px; font-size: 13px; }

  .section { padding: 40px 0; }
  .section-title { margin-bottom: 30px; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14px; }

  .about-text h2 { font-size: 24px; }
  .about-features { grid-template-columns: 1fr; gap: 6px; }
  .about-image .experience-badge { position: relative; bottom: auto; right: auto; margin-top: 15px; display: inline-block; }

  .stat-item .stat-number { font-size: 30px; }
  .stat-item .stat-label { font-size: 13px; }

  .gallery-item { height: 180px; }

  .card-footer { flex-direction: column; align-items: flex-start; }
  .card-price { font-size: 20px; }

  .tour-detail-body { padding: 18px; }
  .itinerary-item { flex-direction: column; gap: 6px; }
  .tour-info-grid { grid-template-columns: 1fr 1fr; }
  .dates-table { font-size: 12px; }
  .dates-table th, .dates-table td { padding: 8px 6px; }
  .tour-price-tag { font-size: 16px; padding: 6px 14px; }

  .contact-form { padding: 20px; }
  .map-container iframe { height: 250px; }

  .cta-section { padding: 40px 0; }
  .cta-section h2 { font-size: 24px; }
  .cta-section p { font-size: 15px; }
  .cta-section .btn { font-size: 14px !important; padding: 10px 22px !important; }

  .footer { padding: 40px 0 0; }
  .page-header { padding: 50px 0 35px; }
  .page-header h1 { font-size: 28px; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Extra small */
@media (max-width: 575.98px) {
  .slide-content h1 { font-size: 20px; }
  .slide-content p { font-size: 13px; }
  .slide img { min-height: 220px; max-height: 50vh; }
  .tour-info-grid { grid-template-columns: 1fr; }
  .booking-badge { font-size: 12px; padding: 5px 14px; }
}
