*, *::before, *::after { box-sizing: border-box; }

:root {
  --navy: #10213d;
  --navy-2: #183962;
  --orange: #f58220;
  --sun: #ffc857;
  --sea: #168aad;
  --green: #5b9f3a;
  --cream: #fff8ee;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #637084;
  --line: #e6ebf2;
  --line-strong: #d6dfec;
  --shadow: 0 18px 48px rgba(16, 33, 61, 0.13);
  --shadow-lift: 0 24px 58px rgba(16, 33, 61, 0.2);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 58%, #fff8ee 100%);
  line-height: 1.6;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 200, 87, 0.2), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader dotlottie-wc {
  width: min(300px, 72vw);
  height: min(300px, 72vw);
}

.page-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 24, 0.6);
  backdrop-filter: blur(8px);
  z-index: 95;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 8px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a,
footer a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.25s ease; }
.topbar a:hover,
footer a:hover { color: var(--sun); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(214, 223, 236, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand img {
  width: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(16, 33, 61, 0.12));
}

.brand-name,
h1, h2, h3,
.form label,
.price,
.btn,
.nav-links a,
.eyebrow,
.brand-tagline,
th {
  font-family: "Montserrat", Arial, sans-serif;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--sea);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover { color: var(--orange); }

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--navy);
  border: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245,130,32,0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(245,130,32,0.32);
}


.btn.secondary {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(8, 20, 44, 0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(16,33,61,0.14);
  box-shadow: none;
}

.btn.whatsapp-btn,
.btn.submit-btn{
  font-size: 13px;
}

.btn.whatsapp-btn{background: #25D366!important;}

.submit-btn {
  position: relative;
  min-width: 220px;
}

.loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.92);
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: form-spin 0.8s linear infinite;
  margin-left: 10px;
}

.submit-btn.loading .loader {
  display: inline-block;
}

.submit-btn.loading .btn-text {
  opacity: 0.7;
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.82;
}

@keyframes form-spin {
  100% { transform: rotate(360deg); }
}

.btn.ghost:hover {
  background: rgba(16,33,61,0.04);
  border-color: rgba(16,33,61,0.24);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-slider {
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 0.75s ease;
  transform: scale(1.02);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--navy);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(16,33,61,0.18) 40%, rgba(16,33,61,0.4) 100%),
    radial-gradient(circle at top left, rgba(255,200,87,0.12), transparent 30%);
}

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

.page-hero {
  min-height: 380px;
  background:
    linear-gradient(110deg, rgba(16,33,61,0.94), rgba(24,57,98,0.7)),
    url("../images/buss.jpeg") right center / cover no-repeat,
    var(--navy);
}

.hero-inner,
.section,
.footer-inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 700px; padding: 108px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--sun);
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  /* font-size: clamp(42px, 6vw, 74px); */
  font-size: clamp(32px, 4vw, 50px);
  margin: 16px 0 18px;
}

.hero p,
.page-hero p {
  color: rgba(255,255,255,0.84);
  max-width: 620px;
  font-size: 19px;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease;
}

.hero-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: 4vw; }
.hero-next { right: 4vw; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.34);
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease;
}

.hero-dot.active {
  background: var(--sun);
  transform: scale(1.18);
}

.quick-strip {
  width: min(1180px, 90vw);
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(214, 223, 236, 0.85);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-item {
  padding: 24px;
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.quick-item:hover { background: rgba(22,138,173,0.03); }
.quick-item:last-child { border-right: 0; }

.quick-item span {
  display: block;
  color: var(--sea);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.quick-item strong {
  display: block;
  color: var(--navy);
  margin-top: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

main { background: transparent; }

.section { padding: 92px 0; }

.section.white {
  background: rgba(255,255,255,0.86);
  width: 100%;
  max-width: none;
  padding-left: 5vw;
  padding-right: 5vw;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), inset 0 -1px 0 rgba(214,223,236,0.54);
}

.section.white > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.section-head p { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; }
.section h2 { font-size: clamp(32px, 4vw, 50px); margin-top: 10px; }
.section.cta h2 { font-size: clamp(32px, 4vw, 40px); margin-top: 10px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(214,223,236,0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16,33,61,0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(22,138,173,0.18);
}

.card-body { padding: 24px; }

.card h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.card p { color: var(--muted); margin: 0 0 16px; font-size: 17px; }

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #edf4f8;
  transition: transform 0.5s ease;
}

.card:hover img { transform: scale(1.05); }

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.list li {
  display: flex;
  gap: 9px;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.price {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22,138,173,0.1);
  color: var(--sea);
  font-weight: 800;
  font-size: 14px;
}

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(91,159,58,0.12);
  color: #376d21;
  font-weight: 800;
  font-size: 14px;
}

.pill-tour {
  background: rgba(245,130,32,0.12);
  color: #b45710;
}

.package-card {
  position: relative;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,138,173,0.24), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card:hover::after { opacity: 1; }

.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.feature-band {
  background:
    radial-gradient(circle at top right, rgba(255,200,87,0.12), transparent 20%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  width: 100%;
      padding: 92px 50px;
    margin-bottom: 90px;
}

.feature-band h2,
.feature-band h3 { color: #fff; }

.feature-band p,
.feature-band li { color: rgba(255,255,255,0.78); }

.feature-band .card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.feature-band .card:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.11);
}

.reviews-section {
  padding-top: 0;
}

.reviews-head {
  align-items: end;
}

.reviews-smile {
  display: inline-block;
  margin-left: 10px;
}

.reviews-slider {
  position: relative;
  padding: 0 72px 54px;
}

.reviews-track {
  position: relative;
  min-height: 310px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(36px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,238,0.96));
  border: 1px solid rgba(245,130,32,0.16);
  border-radius: 26px;
  box-shadow: 0 20px 44px rgba(16,33,61,0.09);
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.review-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.review-card::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(245,130,32,0.12);
  font-size: 34px;
}

.review-stars {
  display: flex;
  gap: 5px;
  color: #d69a2d;
  font-size: 14px;
}

.review-card p {
  margin: 0;
  max-width: 860px;
  color: #333a4f;
  font-size: 23px;
  line-height: 1.65;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c96a1b, var(--sun));
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(245,130,32,0.25);
}

.review-author strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  color: var(--navy);
}

.review-author span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16,33,61,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(16,33,61,0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
  box-shadow: 0 16px 30px rgba(16,33,61,0.16);
}

.reviews-prev { left: 0; }
.reviews-next { right: 0; }

.reviews-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.reviews-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(16,33,61,0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.reviews-dot.active {
  background: var(--orange);
  transform: scale(1.18);
}

.table-wrap {
  overflow-x: auto;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

table { width: 100%; border-collapse: collapse; min-width: 620px; }

th, td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: rgba(22,138,173,0.08);
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

tr:last-child td { border-bottom: 0; }

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.form {
  background: rgba(255,255,255,0.98);
  padding: 20px;
  border: 1px solid rgba(214,223,236,0.92);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(22,138,173,0.44);
  box-shadow: 0 0 0 4px rgba(22,138,173,0.1);
  background: #fff;
}

.form textarea { min-height: 120px; resize: vertical; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hidden-field {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.visible-field {
  max-height: 120px;
  opacity: 1;
}

.quote-dynamic-row { align-items: start; }

.cta {
  background:
    linear-gradient(120deg, rgba(16,33,61,0.94), rgba(22,138,173,0.82)),
    url("../images/buss.jpeg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  border-radius: 26px;
  width: min(1180px, 90vw);
  margin: 0 auto 92px;
  box-shadow: var(--shadow-lift);
}

.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.82); max-width: 680px; margin: 12px auto 24px; font-size: 18px; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.quote-modal {
  width: min(980px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
  box-shadow: 0 28px 80px rgba(6, 12, 24, 0.26);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s ease;
  position: relative;
}

.modal-backdrop.open .quote-modal { transform: translateY(0) scale(1); }

.quote-modal-copy {
  padding: 12px 0;
  background:
    radial-gradient(circle at top left, rgba(255,200,87,0.18), transparent 28%),
    linear-gradient(180deg, rgba(16,33,61,0.03), rgba(22,138,173,0.06));
  border-radius: 18px;
  padding: 24px;
}

.quote-modal-copy h2 { font-size: clamp(28px, 4vw, 42px); margin: 14px 0; }
.quote-modal-copy p { color: var(--muted); font-size: 17px; }

.modal-form { box-shadow: none; margin: 0; }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(16,33,61,0.08);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.modal-close:hover {
  background: rgba(16,33,61,0.14);
  transform: rotate(90deg);
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.76);
  padding: 58px 0 24px;
}

.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 34px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
  border-radius: 10px;
}

footer h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}

.copyright {
  width: min(1180px, 90vw);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(37,211,102,0.4);
}

@media (max-width: 1080px) {
  .hero-nav { display: none; }
  .quote-modal { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .menu-btn { display: inline-grid; place-items: center; }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5vw 20px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-cta { margin-top: 8px; }
  .quick-strip, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .contact-panel, .footer-inner { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .cta { margin-bottom: 70px; }
  .reviews-slider { padding-left: 0; padding-right: 0; }
  .reviews-nav { display: none; }
}

@media (max-width: 620px) {
  .topbar { display: none; }
  .nav { min-height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 65px; }
  .brand-name { font-size: 18px; }
  .brand-tagline { font-size: 8px; letter-spacing: 1.4px; }
  .hero { min-height: 640px; }
  .hero-content { padding: 72px 0 150px; }
  .hero h1, .page-hero h1 { font-size: 42px; }
  .hero p, .page-hero p { font-size: 17px; }
  .hero-dots { bottom: 22px; }
  .quick-strip, .grid-2, .grid-4, .split { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 66px 0; }
  .card img { height: 210px; }
  .card-actions { align-items: stretch; }
  .card-actions .btn { width: 100%; }
  .cta { border-radius: 22px; }
  .quote-modal { padding: 20px; }
  .form { padding: 22px; }
  .feature-band{ padding: 66px 22px;margin-bottom: 75px; }
  .review-card { min-height: 360px; padding: 28px 24px; }
  .review-card p { font-size: 18px; }
  .review-author strong { font-size: 16px; }
  .review-author span { font-size: 14px; }
}



.nav-cta{
  padding-left: 12px!important;
  width: fit-content;
  padding-right: 12px!important;
}

.nav-cta:hover{
  color:rgba(6, 12, 24, 0.86)!important;
}

.plan-my-trip{
  width:160px;
}

@media(max-width:746px){
  .plan-my-trip{
    margin-top: 10px;
  }
}
