/* ==========================================================================
   Wander Tours & Travels - Premium Light Blue & Sky Blue Style Sheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Kaushan+Script&family=Caveat:wght@600;700&display=swap');

:root {
  --primary-blue: #0284c7;       /* Vibrant Sky / Light Blue */
  --primary-blue-dark: #0369a1;  /* Deep Sky Blue */
  --primary-navy: #0a1128;       /* Deep Navy Top Bar & Footer */
  --btn-blue: #0284c7;           /* Buttons Light Blue */
  --btn-blue-hover: #0369a1;
  --accent-gold: #f59e0b;        /* Gold/Yellow for script text & highlights */
  --accent-yellow: #facc15;
  --bg-light-blue: #f0f7ff;      /* Light Blue Tinted Background */
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-blue: #bae6fd;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 10px 25px rgba(2, 132, 199, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-blue-dark);
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.section {
  padding: 50px 0 70px;
}

/* ==========================================================================
   1. Top Announcement Header Bar
   ========================================================================== */
.top-bar {
  background: #0a1128;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-contact-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
}

.top-icon-circle:hover {
  background: #0369a1;
  transform: scale(1.08);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-social-list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-social-list a {
  color: #ffffff;
  font-size: 0.92rem;
  transition: transform 0.2s, color 0.2s;
  opacity: 0.9;
}

.top-social-list a:hover {
  transform: translateY(-2px);
  color: var(--accent-gold);
  opacity: 1;
}

.top-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   2. Main Header & Navigation
   ========================================================================== */
.main-header {
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(2, 132, 199, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

/* Round Badge Logo */
.brand-logo-circle-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 2.5px solid #ffffff;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.nav-item a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav-item a:hover,
.nav-item a.active {
  color: #0284c7;
}

.btn-enquire {
  background: #0284c7;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-enquire:hover {
  background: #0369a1;
  transform: translateY(-1px);
}

.btn-primary {
  background: #0284c7;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0369a1;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: #0a1128;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

/* Form Styles */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1e293b;
  font-family: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

select.form-control {
  appearance: auto;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

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

/* ==========================================================================
   3. Hero Banner Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 50px 0 130px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.45) 0%, rgba(2, 132, 199, 0.7) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  color: #ffffff;
  max-width: 600px;
  text-align: left;
}

.hero-script {
  font-family: 'Kaushan Script', cursive;
  font-size: 2.4rem;
  color: #f59e0b;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-heading {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtext {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.35;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Hero Carousel Indicators */
.hero-indicators {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
  background: #f59e0b;
  width: 32px;
  border-radius: 10px;
  border-color: #f59e0b;
}

/* Search Bar Floating Widget */
.search-container {
  max-width: 1080px;
  margin: -45px auto 45px;
  position: relative;
  z-index: 10;
}

.search-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1.6fr;
  gap: 16px;
  align-items: center;
  border: 1px solid #e2e8f0;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.search-field-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field-select-wrap i {
  position: absolute;
  left: 12px;
  color: #0284c7;
  font-size: 0.9rem;
  pointer-events: none;
}

.search-field select {
  width: 100%;
  height: 44px;
  padding: 0 12px 0 34px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.88rem;
  outline: none;
  font-family: inherit;
  color: #475569;
  background: #ffffff;
  appearance: none;
  cursor: pointer;
}

.search-field-plain select {
  padding-left: 12px !important;
}

.btn-search {
  background: #0284c7;
  color: #ffffff;
  border: none;
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-search:hover {
  background: #0369a1;
}

/* ==========================================================================
   4. Section Divider & Section Header Titles
   ========================================================================== */
.section-title-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.section-title-wrap h2 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title-wrap h2::before,
.section-title-wrap h2::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #bae6fd;
}

/* ==========================================================================
   5. Our Specialized Destinations Carousel
   ========================================================================== */
.destinations-slider-wrap {
  position: relative;
  margin-bottom: 25px;
}

.destinations-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 18px;
}

.destinations-grid::-webkit-scrollbar {
  display: none;
}

.dest-card {
  flex: 0 0 240px;
  min-width: 240px;
  height: 260px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.1);
  scroll-snap-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.22);
}

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

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

.dest-label-overlay {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  background: rgba(10, 17, 40, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-center-wrap {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 60px;
}

.btn-outline-pill {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline-pill:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ==========================================================================
   6. Popular Tour Packages Auto-Slider
   ========================================================================== */
.packages-slider-wrap {
  position: relative;
  margin-bottom: 25px;
}

.packages-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 15px;
}

.packages-grid::-webkit-scrollbar {
  display: none;
}

.pkg-card {
  flex: 0 0 calc(20% - 13px);
  min-width: 225px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.06);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 132, 199, 0.15);
}

.pkg-img-box {
  position: relative;
  height: 140px;
}

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

.pkg-badge-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
}

.badge-bestseller { background: #0284c7; }
.badge-popular { background: #ea580c; }
.badge-trending { background: #0284c7; }
.badge-bestvalue { background: #0369a1; }
.badge-family { background: #be185d; }

.pkg-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 2px;
}

.pkg-nights {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.pkg-price-row {
  text-align: right;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 12px;
  margin-top: auto;
}

.btn-view-details {
  background: #0284c7;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.btn-view-details:hover {
  background: #0369a1;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.15);
  color: #0284c7;
}

.slider-arrow.left { left: -18px; }
.slider-arrow.right { right: -18px; }

/* ==========================================================================
   7. Hotel & Car Booking Dual Banners
   ========================================================================== */
.service-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.service-card-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.1);
}

.service-card-left {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.service-header-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.service-subtitle {
  font-size: 0.9rem;
  color: #e0f2fe;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: #e0f2fe;
  margin-bottom: 20px;
}

.btn-white-pill {
  background: #ffffff;
  color: #0284c7;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: auto;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-white-pill:hover {
  background: #f0f7ff;
}

.service-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   8. 4 Features Icon Strip
   ========================================================================== */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  padding: 20px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0f9ff;
  border: 1.5px dashed #0284c7;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
  background: #0a1128;
  color: #cbd5e1;
  padding: 50px 0 0;
  font-size: 0.86rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.5fr 1.5fr;
  gap: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-about-text {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 0.84rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.footer-social-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.84rem;
}

.footer-services-list i {
  color: #38bdf8;
  font-size: 0.8rem;
}

.footer-office-block {
  margin-bottom: 15px;
}

.footer-office-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-office-desc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-office-desc i {
  margin-top: 3px;
  color: #ffffff;
}

.btn-yellow-enquire {
  background: var(--accent-gold);
  color: #052326 !important;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.2s;
}

.btn-yellow-enquire:hover {
  background: #eab308;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Fixed Mobile Bottom Quick Action Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  z-index: 1500;
  display: flex;
  box-shadow: 0 -4px 20px rgba(2, 132, 199, 0.15);
  border-top: 1px solid #e2e8f0;
}

.bottom-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-call {
  background: #ffffff;
  color: #334155;
  border-right: 1px solid #e2e8f0;
}

.btn-call i {
  font-size: 1.15rem;
  color: #334155;
}

.btn-whatsapp {
  background: #ffffff;
  color: #16a34a;
  border-right: 1px solid #e2e8f0;
}

.btn-whatsapp i {
  font-size: 1.25rem;
  color: #25d366;
}

.btn-book-now {
  background: #0284c7;
  color: #ffffff !important;
  flex: 1.4;
}

.btn-book-now i {
  font-size: 1.1rem;
  color: #ffffff;
}

.btn-book-now:hover {
  background: #0369a1;
}

/* Modal Styling */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: 14px;
  width: 90%;
  max-width: 500px;
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0284c7;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
  z-index: 3000;
  transition: transform 0.3s;
  font-weight: 600;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   10. Comprehensive Mobile Responsive Breakpoints
   ========================================================================== */

/* Laptop & Desktop Adjustments (<= 1200px) */
@media (max-width: 1200px) {
  .dest-card { flex: 0 0 210px; min-width: 210px; height: 230px; }
  .pkg-card { flex: 0 0 calc(33.333% - 11px); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 24px; }
}

/* Tablet Breakpoint (<= 992px) */
@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.12);
    border-top: 1px solid #e2e8f0;
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
  }

  .search-box {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px;
  }

  .pkg-card { flex: 0 0 calc(45% - 8px); }
  .service-cards-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }

  .container {
    padding: 0 16px;
  }

  /* Top Bar */
  .top-bar {
    padding: 6px 0;
  }

  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .top-contact-list {
    gap: 8px;
  }

  .top-icon-circle {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  /* Brand Logo Badge Mobile */
  .brand-logo-circle {
    width: 54px;
    height: 54px;
    padding: 2px;
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: 440px;
    padding: 40px 0 110px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }

  .hero-script {
    font-size: 1.7rem;
  }

  .hero-heading {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-indicators {
    bottom: 55px;
  }

  /* Search Container Mobile */
  .search-container {
    margin: -35px auto 35px;
    padding: 0 10px;
  }

  .search-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .btn-search {
    height: 46px;
    width: 100%;
    margin-top: 4px;
  }

  /* Hide slider arrows on mobile for native touch swiping */
  .slider-arrow {
    display: none !important;
  }

  /* Destinations & Packages Sliders Mobile */
  .dest-card {
    flex: 0 0 200px;
    min-width: 200px;
    height: 220px;
  }

  .pkg-card {
    flex: 0 0 80%;
    min-width: 240px;
  }

  /* Split Service Banners Mobile */
  .service-card-split {
    grid-template-columns: 1fr;
  }

  .service-card-right {
    height: 180px;
    order: -1;
  }

  /* Features Strip Mobile */
  .features-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 30px;
  }

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

  /* Form & Page Layout Stacks */
  div[style*="grid-template-columns: 1.2fr 1fr"],
  div[style*="grid-template-columns: 2fr 1.1fr"],
  div[style*="grid-template-columns: 1.1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

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

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.95rem;
  }

  .hero-script {
    font-size: 1.5rem;
  }

  .dest-card {
    flex: 0 0 170px;
    min-width: 170px;
    height: 190px;
  }

  .dest-label-overlay {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .pkg-card {
    flex: 0 0 88%;
  }

  /* Prevent auto zoom on iOS text inputs */
  input, select, textarea {
    font-size: 16px !important;
  }
}
