/* ============ 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;
}

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; }

.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-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: static;
    transform: none;
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 0 16px 40px;
  }
  .hero-form-card { width: 100%; max-width: 420px; }
}

@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;
  overflow: hidden;
}
.dest-banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.dest-banner-overlay {
  position: absolute;
  inset: 0;
  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-img, .dest-banner { min-height: 220px; height: 220px; }
  .dest-banner-overlay h1 { font-size: 24px; }
}

/* ============ 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(4, 1fr);
  gap: 20px;
}
.pkg-card {
  border: 1px solid #eaeef3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-img img { width: 100%; display: block; }
.pkg-body { padding: 16px; }
.pkg-body h3 { font-size: 17px; margin-bottom: 6px; }
.pkg-meta, .pkg-tags {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pkg-start {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}
.pkg-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.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;
}
.pkg-actions { display: flex; gap: 10px; }
.btn-view {
  flex: 1;
  text-align: center;
  background: none;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  padding: 9px 0;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.btn-view:hover { background: var(--blue); color: #fff; }
.btn-wa-sm {
  flex: 1;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 9px 0;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 600;
}
.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; }
  .pkg-grid { grid-template-columns: repeat(2, 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) {
  .main-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .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; }
}
