/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1e7fe0;
  --blue-dark: #0b5fc7;
  --navy: #0b2540;
  --navy-dark: #071a30;
  --yellow: #f5b400;
  --yellow-soft: #ffdf7e;
  --green: #25d366;
  --green-dark: #1fb855;
  --text-dark: #1a2333;
  --text-muted: #6b7686;
  --bg-soft: #f4f8fc;
  --red: #e8443f;
  --radius: 12px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.5;
  background: #fff;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.muted { color: var(--text-muted); font-size: 14px; }
.muted-sm { color: var(--text-muted); font-size: 13px; }

.section { padding: 56px 0; content-visibility: auto; contain-intrinsic-size: 500px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

h2 { font-size: 30px; font-weight: 700; color: var(--text-dark); }

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}
.topbar-inner {
  display: flex;
  gap: 28px;
  padding: 6px 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.logo img { height: 42px; }

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 4px;
}
.main-nav a.active {
  background: var(--blue);
  color: #fff;
  border-radius: 20px;
  padding: 8px 18px;
}
.caret { font-size: 11px; }

/* ---- Header dropdown (Tour Packages / Destinations) ---- */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(11,37,64,0.16);
  padding: 8px;
  z-index: 120;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  display: flex;
}
.nav-dropdown a {
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.call-link {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.3;
}
.call-link strong { color: var(--text-dark); font-size: 14px; }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: var(--green-dark); }

/* ============ HERO ============ */
.hero { position: relative; width: 100%; min-height: 620px; overflow: hidden; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(7,26,48,0.82) 0%,
    rgba(7,26,48,0.62) 35%,
    rgba(7,26,48,0.28) 62%,
    rgba(7,26,48,0.05) 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 110px 6% 110px 6%;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 44px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.hero-content h1 span { color: var(--yellow-soft); }
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat strong {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.hero-stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}

.hero-form-wrap {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  z-index: 5;
}
.hero-form-card {
  width: 500px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(7,26,48,0.35);
  padding: 30px 26px 24px;
  border-top: 4px solid var(--blue);
}
.hero-form-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.hero-form-card h3 { font-size: 20px; margin-bottom: 4px; color: var(--navy); }
.hero-form-card .hero-form-sub { font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; }
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1.5px solid #e6ebf1;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text-dark);
  background: var(--bg-soft);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.hero-form-card textarea { resize: vertical; min-height: 60px; }
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30,127,224,0.12);
}
.hero-form-card .btn-hero-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 13px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 10px 24px rgba(30,127,224,0.35);
}
.hero-form-card .btn-hero-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(30,127,224,0.45); }
.hero-form-trust {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .hero-content h1 { font-size: 36px; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,26,48,0.78) 0%, rgba(7,26,48,0.55) 100%); }
  .hero-content {
    max-width: 100%;
    padding: 60px 20px 40px;
    text-align: center;
  }
  .hero-content h1 { font-size: 30px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-form-wrap {
    position: relative;
    z-index: 6;
    transform: none;
    margin-top: 0;
    padding: 0 16px 40px;
  }
  .hero-form-card { width: 100%; max-width: 420px; margin-left: 23px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .hero-stat strong { font-size: 20px; }
}

/* ============ DESTINATION BANNER (destination.php) ============ */
.dest-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: 320px;
  overflow: hidden;
}
.dest-banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.dest-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.dest-banner-img.active { opacity: 1; z-index: 1; }
.dest-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(11,37,64,0.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.dest-banner-arrow:hover { background: rgba(11,37,64,0.8); }
.dest-banner-arrow.prev { left: 16px; }
.dest-banner-arrow.next { right: 16px; }
.dest-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dest-banner-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dest-banner-dots .dot.active { background: #fff; transform: scale(1.15); }
.dest-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11,37,64,0.15) 0%, rgba(11,37,64,0.85) 100%);
  padding-bottom: 30px;
}
.dest-breadcrumb {
  color: #cfe0f5;
  font-size: 13px;
  margin-bottom: 10px;
}
.dest-breadcrumb a { color: #cfe0f5; text-decoration: underline; }
.dest-breadcrumb a:hover { color: #fff; }
.dest-banner-overlay h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}
.dest-banner-desc {
  color: #e3ecf7;
  font-size: 14.5px;
  max-width: 640px;
}
@media (max-width: 640px) {
  .dest-banner, .dest-banner-slides { min-height: 220px; height: 220px; }
  .dest-banner-overlay h1 { font-size: 24px; }
  .dest-banner-arrow { width: 32px; height: 32px; font-size: 18px; }
}

/* ============ DESTINATIONS ============ */
.destinations { background: var(--bg-soft); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.dest-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.25s;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-card-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

/* ============ OFFERS ============ */
.offers {
  background: linear-gradient(90deg, #fff6df 0%, #fff1cf 100%);
  padding: 40px 0;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.offer-intro h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 6px 0;
  letter-spacing: 0.5px;
}
.offer-intro p { font-weight: 600; color: var(--text-dark); }
.tag-limited {
  background: var(--navy);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  display: inline-block;
}
.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  aspect-ratio: 335 / 162;
}
.offer-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ PACKAGES ============ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pkg-card {
  border: 1px solid #eaeef3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.25s;
  background: #fff;
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-img { position: relative; }
.pkg-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.pkg-duration-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 15, 25, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 13px;
  border-radius: 20px;
}
.pkg-off-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(232,68,63,0.4);
}
.pkg-body { padding: 18px; }
.pkg-body h3 { font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.pkg-meta, .pkg-tags {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pkg-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 8px 0;
  display: none;
}
.pkg-desc.open { display: block; }
.pkg-desc p { margin: 0 0 4px; }
.pkg-desc ul, .pkg-desc ol { margin: 0; padding-left: 18px; }
.pkg-desc h1, .pkg-desc h2, .pkg-desc h3 { font-size: 15px; margin: 0 0 6px; }
.pkg-desc blockquote { margin: 6px 0; padding-left: 9px; border-left: 3px solid var(--red); }
.pkg-desc ul { list-style: none; padding-left: 0; }
.pkg-desc ul li { position: relative; padding-left: 15px; margin: 0 0 7px; }
.pkg-desc ul li::before { content: ''; position: absolute; left: 0; top: .48em; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 7px solid #e71924; }
.pkg-destination { font-size: 13px; color: #8053dc; margin: 0 0 7px; }
.pkg-destination strong { color: var(--text-dark); }
.pkg-desc strong, .pkg-desc b { color: var(--text-dark); font-weight: 700; }

.pkg-includes-icons {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 16px 0 14px;
}
.pkg-include-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.pkg-include-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.pkg-include-item span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pkg-inclusion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid #eef1f5;
}
.pkg-view-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}
.pkg-view-more:hover { text-decoration: underline; }

.pkg-start-row {
  text-align: center;
  margin: 14px 0 16px;
}
.pkg-start-label {
  font-size: 12.5px;
  color: var(--text-muted);
}
.pkg-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin: 0 4px;
}
.pkg-per-person {
  font-size: 12.5px;
  color: var(--text-muted);
}
.old-price {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 4px;
}
.rating {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 4px;
  text-align: center;
}
.pkg-actions { display: flex; gap: 10px; }
.btn-view {
  flex: 1;
  text-align: center;
  background: var(--blue);
  border: none;
  color: #fff;
  padding: 11px 0;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.btn-view:hover { background: var(--blue-dark); }
.btn-wa-sm {
  flex: 1;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 11px 0;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 700;
}
.btn-wa-sm:hover { background: var(--green-dark); }

/* ============ WHY CHOOSE US ============ */
.why { background: var(--bg-soft); text-align: left; }
.why h2 { margin-bottom: 4px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.why-icon {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 10px;
}
.why-card h4 { font-size: 15px; margin-bottom: 4px; }
.why-card p { font-size: 13px; color: var(--text-muted); }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  border: 1px solid #eaeef3;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.testi-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.testi-top img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-top div { flex: 1; }
.testi-top h4 { font-size: 15px; }
.stars { font-size: 12px; color: var(--yellow); white-space: nowrap; }
.testi-card p { font-size: 13.5px; color: var(--text-muted); }

/* ============ CTA BANNER ============ */
.cta { width: 100%; line-height: 0; }
.cta-img { width: 100%; height: auto; object-fit: cover; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: #cfd8e3; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.2fr;
  gap: 24px;
  padding: 50px 20px 30px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13.5px;
  color: #b7c2d0;
  margin-bottom: 10px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon { font-size: 24px; }
.footer-logo strong { color: #fff; font-size: 16px; }
.about-col p { font-size: 13px; margin-bottom: 16px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #13314f;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  margin-bottom: 0;
  color: #fff;
}
.map-col img {
  border-radius: 8px;
  margin-bottom: 10px;
}
.btn-map {
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px;
  color: #93a0b3;
}
.footer-links a { color: #93a0b3; }
.footer-links a:hover { color: #fff; }

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 200;
  color: #fff;
}
.float-wa { background: var(--green); bottom: 90px; }
.float-call { background: var(--blue); bottom: 24px; }

/* ============ QUOTE ENQUIRY MODAL ============ */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 48, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.quote-modal-overlay.active { display: flex; }
.quote-modal {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: quoteModalIn 0.2s ease;
}
@keyframes quoteModalIn {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.quote-modal-head {
  background: var(--green-dark);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
}
.quote-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.quote-modal-form {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-modal-form input,
.quote-modal-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #14b8ac;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
}
.quote-modal-form input::placeholder { color: #8a94a3; }
.quote-modal-form select { appearance: auto; background: #fff; color: #8a94a3; }
.quote-modal-form select:valid { color: var(--navy); }
.quote-modal-submit {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 4px;
}
.quote-modal-submit:hover { background: var(--green); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { justify-content: space-between; position: relative; }
  .nav-toggle { display: flex; order: 2; }
  .header-actions { order: 3; }
  .main-nav {
    display: none;
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 6px 20px 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #eef1f5;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.active { border-radius: 8px; padding: 13px 12px; }
  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item > a { flex: 1; border-bottom: none; }
  .nav-item .caret { cursor: pointer; padding: 0 10px; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 6px 14px;
    display: none;
  }
  .nav-item.open .nav-dropdown { display: flex; }
  .nav-item:not(.open) .nav-dropdown { display: none; }
  .nav-item { border-bottom: 1px solid #eef1f5; }
  .nav-item:last-child { border-bottom: none; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  h2 { font-size: 24px; }
}
