* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

:root {
  --blue: #0f4d96;
  --blue-dark: #082f49;
  --green: #16a34a;
  --viber: #7360f2;
  --text: #0f172a;
  --muted: #64748b;
  --page-bg: #eef6fb;
  --card: rgba(255, 255, 255, 0.96);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
  --shell: min(calc(100% - 80px), 1700px);
  --section: min(calc(100% - 64px), 1180px);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { min-width: 320px; overflow-x: hidden; background: var(--page-bg); color: var(--text); }
button, a, input { font: inherit; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { max-width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: url('../media/hero.webp') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(5, 25, 40, 0.96) 0%,
    rgba(5, 25, 40, 0.87) 33%,
    rgba(5, 25, 40, 0.48) 65%,
    rgba(5, 25, 40, 0.14) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
  to bottom,
  rgba(238, 246, 251, 0) 0%,
  rgba(238, 246, 251, 0.10) 58%,
  rgba(238, 246, 251, 0.25) 90%,
  rgba(238, 246, 251, 0.33) 94%,
  #eef6fb 100%
);
}
.hero h1, .hero p, .badge, .logo strong, .logo small {
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.56);
}

/* ===== NAVBAR ===== */
.navbar {
  position: relative; z-index: 5;
  margin-inline: auto; padding: 26px 60px 0 60px;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) auto;
  align-items: start; gap: 28px;
  width: 100%; max-width: 1700px;
}
.logo {
  display: flex; align-items: center; gap: 18px;
}
.logo-img {
  width: 126px; height: 126px; object-fit: contain; flex: 0 0 auto;
}
.logo strong {
  display: block; color: #fff;
  font-size: 36px; line-height: 1.03; letter-spacing: 0.2px; text-transform: uppercase; white-space: normal;
}
.logo small {
  display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.98);
  font-size: 17px; font-weight: 800;
}
.nav-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
}
.nav-links {
  display: flex; gap: 10px; margin-right: 14px;
}
.nav-links a, .top-phone, .lang-switch, .menu-toggle {
  background: rgba(255, 255, 255, 0.96); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.nav-links a {
  min-height: 42px; padding: 10px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-dark); border: 1px solid rgba(186, 230, 253, 0.72);
  font-size: 14.5px; font-weight: 900; white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-links a::after { content: "›"; color: var(--blue); font-size: 22px; font-weight: 900; line-height: 1; transform: translateY(-1px); }
.nav-links a:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24); }
.top-phone {
  min-height: 42px; padding: 10px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 14.5px; font-weight: 900; white-space: nowrap;
}
.nav-cards { height: 42px; width: auto; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24)); }
.lang-switch {
  min-height: 32px; padding: 5px 8px; border-radius: 999px;
  display: flex; align-items: center; gap: 6px; margin-left: 18px;
}
.lang-switch span { width: 1px; height: 15px; background: rgba(15, 23, 42, 0.18); }
.lang-option {
  background: transparent; color: var(--text); font-weight: 900; font-size: 12px;
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.lang-option img { width: 17px; height: 12px; object-fit: cover; border-radius: 2px; }
.menu-toggle {
  display: none; width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 999px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 19px; height: 2px; border-radius: 999px; background: var(--text); display: block; }
.mobile-menu {
  display: none; position: absolute; top: calc(100% + 12px); right: 0; width: 245px; padding: 10px;
  border-radius: 18px; background: rgba(255, 255, 255, 0.98); box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  z-index: 50;
}
.mobile-menu.open { display: grid; gap: 8px; }
.mobile-menu a {
  min-height: 46px; padding: 12px 14px; border-radius: 13px;
  display: flex; align-items: center; justify-content: space-between;
  background: #f8fafc; color: var(--text); font-size: 14.5px; font-weight: 900;
}
.mobile-menu a::after { content: "›"; color: var(--blue); font-size: 22px; }

/* ===== HERO OVERLAY ===== */
.hero-overlay {
  position: relative; z-index: 2; min-height: 620px;
  margin-inline: auto; padding: 58px 60px 122px 60px;
  display: grid; grid-template-columns: minmax(460px, 690px) minmax(380px, 410px);
  justify-content: space-between; align-items: center; gap: 72px;
  pointer-events: none; width: 100%; max-width: 1700px;
}
.hero-content, .hero-card { pointer-events: auto; }
.hero-content { width: 100%; max-width: 690px; }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 43px; margin-bottom: 34px; padding: 10px 22px; border-radius: 999px;
  background: var(--blue); border: 1px solid rgba(186, 230, 253, 0.42);
  color: #fff; box-shadow: 0 10px 24px rgba(15, 77, 150, 0.24);
  font-size: 13.5px; font-weight: 900; letter-spacing: 0.8px;
}
.hero h1 { max-width: 690px; margin-bottom: 28px; font-size: 62px; line-height: 1.04; letter-spacing: -1.4px; }
.hero p { max-width: 610px; margin-bottom: 40px; font-size: 21px; line-height: 1.45; }

/* Contact Buttons */
.contact-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; align-items: stretch; }
.hero-actions { width: min(100%, 580px); margin-top: 8px; }
.card-actions { width: 100%; margin-top: 14px; }
.centered-actions { width: min(390px, 100%); margin: 0 auto; }
.contact-btn {
  width: 100%; height: 50px; padding: 0 16px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15.5px; font-weight: 900; white-space: nowrap;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.16);
  transition: transform 0.15s, box-shadow 0.15s;
}
.contact-btn:hover { transform: translateY(-2px); }
.whatsapp-btn { background: var(--green); color: #fff; box-shadow: 0 12px 25px rgba(22, 163, 74, 0.3); }
.viber-btn { background: var(--viber); color: #fff; }
.email-btn { background: #fff; color: var(--blue); border: 1px solid rgba(15, 77, 150, 0.2); }
.contact-icon { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }
.whatsapp-icon svg { width: 21px; height: 21px; }
.payment-cards { display: block; width: 152px; height: auto; margin-top: 26px; filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.2)); }

/* Hero slideshow */
.hero-slideshow-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: auto;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 25, 40, 0.02) 0%, rgba(5, 25, 40, 0.28) 42%, rgba(5, 25, 40, 0.88) 100%);
}

.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 32px;
  color: #fff;
}

.slide-content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  backdrop-filter: blur(8px);
}

.slide-content h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.7px;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.42);
}

.slide-content p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  line-height: 1.5;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.42);
}

.slide-dots {
  position: absolute;
  left: 32px;
  top: 30px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-dots span.active-dot {
  width: 24px;
  background: #fff;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: rgba(8, 47, 73, 0.46);
  color: #fff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.slide-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.slide-arrow-left::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.slide-arrow-right::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.slide-arrow:hover {
  transform: translateY(-50%) scale(1.045);
  background: rgba(15, 77, 150, 0.72);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.34);
}

.slide-arrow:focus-visible {
  outline: 3px solid rgba(255, 210, 31, 0.74);
  outline-offset: 3px;
}

.slide-arrow-left { left: 22px; }
.slide-arrow-right { right: 22px; }


/* ===== BOOKING CARD ===== */
.hero-card {
  width: 100%; max-width: 380px;
  background: var(--card); color: var(--text); padding: 22px;
  border-radius: 26px; box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28); backdrop-filter: blur(8px);
}
.hero-card-inner { display: block; }
.hero-card-col-left, .hero-card-col-right { display: block; }
.hero-card-heading { text-align: center; margin-bottom: 18px; }
.hero-card-kicker, .section-kicker {
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 9px; padding: 7px 11px; border-radius: 999px;
  background: #eaf4fb; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: 0.8px;
}
.hero-card h3 { margin-bottom: 9px; font-size: 32px; line-height: 1.08; letter-spacing: -0.4px; }
.hero-card p { color: var(--muted); font-size: 15px; line-height: 1.45; }
.hero-booking-form { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
.hero-booking-form input {
  width: 100%; padding: 16px 17px; border-radius: 14px;
  border: 1px solid #dbe4ea; background: #fff;
  font-size: 15.5px; font-weight: 700; outline: none;
}
.hero-booking-form input:focus { border-color: rgba(15, 77, 150, 0.5); box-shadow: 0 0 0 4px rgba(15, 77, 150, 0.1); }
.location-status { max-width: 315px; margin: 4px auto 14px; color: var(--muted); font-size: 12.5px; line-height: 1.4; text-align: center; }
.map-focus-btn, .landscape-btn {
  width: 100%; min-height: 43px; margin-bottom: 14px;
  border: 1px solid rgba(15, 77, 150, 0.16); border-radius: 12px;
  background: #f8fbff; color: var(--blue); font-size: 14.5px; font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}
.landscape-btn { display: none; align-items: center; justify-content: center; font-size: 22px; }
.hero-card .contact-btn { height: 47px; padding: 0; gap: 0; }
.hero-card .contact-btn span:not(.contact-icon) { display: none; }
.hero-card .contact-icon, .hero-card .contact-icon svg { width: 22px; height: 22px; }

/* ===== SERVICES ===== */
.services {
  position: relative; z-index: 4;
  width: min(calc(100% - 64px), 1220px); margin: -55px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.service-card {
  min-height: 94px; padding: 20px 18px; border-radius: 18px;
  background: #fff; box-shadow: 0 18px 35px rgba(15, 23, 42, 0.09);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 900; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12); }
.service-icon { font-size: 34px; line-height: 1; }

/* ===== MAIN SECTION ===== */
.main-section {
  width: var(--section); margin: 70px auto;
  display: grid; grid-template-columns: minmax(0, 1.36fr) minmax(360px, 0.92fr); gap: 34px; align-items: stretch;
}
.booking-box, .review-box { background: rgba(255, 255, 255, 0.9); padding: 34px; border-radius: 28px; box-shadow: var(--shadow); }
.booking-box h2, .review-box h2 { margin-bottom: 12px; font-size: 34px; line-height: 1.1; }
.booking-box p { margin-bottom: 24px; color: var(--muted); font-size: 17px; }
.route-info-box { position: relative; overflow: hidden; }
.route-info-box::after {
  content: ""; position: absolute; right: -70px; top: -70px; width: 180px; height: 180px;
  border-radius: 999px; background: radial-gradient(circle, rgba(14, 116, 144, 0.12), rgba(14, 116, 144, 0));
  pointer-events: none;
}
.route-steps { display: grid; gap: 14px; margin-top: 22px; }
.route-step {
  padding: 16px; border: 1px solid #e2e8f0; border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start;
}
.route-step-icon {
  width: 46px; height: 46px; border-radius: 14px; background: #f0f9ff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px;
}
.route-step strong { display: block; margin-bottom: 4px; font-size: 16px; }
.route-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.booking-benefits { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.booking-benefits span {
  min-height: 38px; padding: 9px 12px; border-radius: 999px; border: 1px solid #e2e8f0;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.review-box { display: flex; flex-direction: column; }
.review-box h2, .review, .rating, .reviews-btn, .review-box .contact-row {
  width: min(100%, 420px); margin-left: auto; margin-right: auto;
}
.review-box h2 { margin-bottom: 28px; }
.review { margin-bottom: 8px; color: #334155; line-height: 1.55; }
/* Keep rotating review text from changing the card height. */
.active-review {
  height: 164px;
  min-height: 164px;
  overflow: hidden;
  transition: opacity 0.35s ease;
}

.review p {
  min-height: calc(1.55em * 4);
  margin-bottom: 12px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review strong { display: block; margin-bottom: 6px; font-size: 16px; }
.rating {
  margin: 10px 0 18px; color: #f59e0b; font-weight: 900;
  display: flex; align-items: center; gap: 14px;
}
.rating-stars { font-size: 30px; letter-spacing: 1px; line-height: 1; }
.rating span:not(.rating-stars) { color: #334155; font-size: 19px; }
.reviews-btn {
  display: block; padding: 15px 20px; border-radius: 12px;
  border: 1px solid rgba(15, 77, 150, 0.18); background: #fff; color: var(--blue);
  font-size: 15px; font-weight: 900; cursor: pointer;
}
.contact-row { margin-top: 14px; }
.review-box .centered-actions { width: 100%; margin: 0; grid-template-columns: 1fr; gap: 12px; }
.review-box .contact-btn { height: 52px; font-size: 15px; }
.review-box .contact-icon, .review-box .contact-icon svg { width: 19px; height: 19px; }

/* ===== FOOTER ===== */
footer { background: #B3CEE5; color: #062f46; padding: 48px 6%; border-top: 1px solid rgba(8, 51, 68, 0.12); }
.footer-inner { max-width: 1450px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1.15fr 1.15fr 1.15fr; gap: 72px; }
footer strong { color: var(--blue-dark); font-size: 24px; }
footer h4 { margin-bottom: 12px; font-size: 17px; }
footer p { margin-top: 7px; line-height: 1.5; }
footer a { color: var(--blue-dark); font-weight: 800; }

/* ===== ABOUT SECTION ===== */
.about-section {
  grid-column: 1 / -1;
  width: min(100%, 1040px);
  margin: 2px auto 10px;
  padding: 18px 0 6px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.about-copy { min-width: 0; }
.about-copy .section-kicker { margin-bottom: 14px; }

.about-copy h2 {
  max-width: 470px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.9px;
}

.about-copy p {
  max-width: 560px;
  color: #475569;
  font-size: 18px;
  line-height: 1.68;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}

.about-highlight {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 77, 150, 0.12);
  background: transparent;
  border-radius: 0;
  text-align: left;
}

.about-highlight:last-child { border-bottom: 0; }

.about-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  font-size: 25px;
}

.about-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.about-highlight p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}


/* ===== CALL BUTTON ADDITION =====
   Adds an obvious phone action beside WhatsApp, Viber and Email
   without changing the rest of the homepage structure. */
.call-btn {
  background: linear-gradient(135deg, #FFE55C 0%, #FFD21F 48%, #F4B400 100%);
  color: #111827;
  border: 1px solid rgba(255, 236, 120, 0.78);
  box-shadow: 0 12px 25px rgba(244, 180, 0, 0.34);
}

.call-btn:hover {
  box-shadow: 0 16px 32px rgba(244, 180, 0, 0.42);
}

.call-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-actions,
.card-actions,
.review-box .centered-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-actions {
  width: min(100%, 720px);
  max-width: 720px;
}

.review-box .centered-actions {
  width: min(100%, 520px);
}

body.map-focused .card-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ===== REVIEW TEXT HEIGHT STABILITY =====
   Prevent longer rotating reviews from resizing the review box. */


/* ===== REVIEW / BOOKING BALANCE =====
   Removes duplicate review-card contact buttons and balances the two main cards. */
.review-box .contact-row {
  display: none !important;
}

.route-info-box,
.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-box,
.review-box {
  padding-block: 30px;
}

.route-info-box .route-steps {
  gap: 16px;
  margin-top: 24px;
}

.route-info-box .booking-benefits {
  margin-top: 22px;
}

.review-box h2 {
  margin-bottom: 26px;
}

.review-box .active-review {
  height: 154px;
  min-height: 154px;
}

.review-box .rating {
  margin-top: 12px;
  margin-bottom: 20px;
}

.review-box .reviews-btn {
  margin-top: 2px;
}


/* ===== FINAL MAIN-CARD VISUAL BALANCE FIX =====
   Keeps the duplicate review contact buttons removed, restores the small
   section badge width, and makes the review card feel intentional without
   forcing it to stretch to the booking card height. */
.route-info-box .section-kicker {
  align-self: flex-start;
  width: auto;
  max-width: max-content;
}

.review-box {
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: 430px;
  justify-content: center;
  gap: 0;
  padding: 38px 34px;
}

.review-box::before {
  content: "";
  position: absolute;
  right: -64px;
  top: -64px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 210, 31, 0.16), rgba(255, 210, 31, 0));
  pointer-events: none;
}

.review-box::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 77, 150, 0.08), rgba(15, 77, 150, 0));
  pointer-events: none;
}

.review-box > * {
  position: relative;
  z-index: 1;
}

.review-box h2 {
  margin-bottom: 24px;
}

.review-box .active-review {
  height: 142px;
  min-height: 142px;
  margin-bottom: 10px;
}

.review-box .rating {
  margin-top: 8px;
  margin-bottom: 22px;
}

.review-box .reviews-btn {
  margin-top: 0;
}


/* Slideshow responsive overrides */


/* Homepage slideshow width refinement */


/* Homepage hero slideshow/button refinement: wide-card balance and 2-row buttons only before slideshow stacks. */

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   Ordered from wider layouts to smaller screens.
   ========================================================= */

@media (max-width: 1700px) {
.nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-actions { position: relative; }
}

@media (max-width: 1680px) {
:root { --shell: min(calc(100% - 60px), 1540px); }
  .hero-overlay { gap: 64px; }
  .hero h1 { font-size: 60px; }
}

@media (min-width: 1381px) {
.hero-overlay {
    grid-template-columns: minmax(520px, 690px) minmax(560px, 680px);
    gap: clamp(48px, 4vw, 80px);
  }

  .hero-slideshow-card {
    max-width: 680px;
    height: 520px;
    justify-self: end;
  }
}

@media (min-width: 1381px) and (max-width: 1650px) {
.hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
    max-width: 520px;
  }

  .hero-actions .contact-btn {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-actions .contact-icon,
  .hero-actions .contact-icon svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }

  .hero-actions .whatsapp-icon svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 1350px) {
.navbar {
    padding: 26px 42px 0;
    grid-template-columns: minmax(440px, 1fr) auto;
    gap: 18px;
  }

  .logo { gap: 16px; }
  .logo-img { width: 112px; height: 112px; }
  .logo strong { font-size: 32px; line-height: 1.04; }
  .logo small { font-size: 16px; }

  .nav-actions { gap: 10px; }
  .top-phone { padding-inline: 14px; font-size: 14px; }
  .nav-cards { height: 40px; }
  .lang-switch { margin-left: 8px; }

  .services {
    width: min(calc(100% - 64px), 1220px);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card { min-height: 84px; padding: 16px 14px; font-size: 14px; }
  .service-icon { font-size: 30px; }
}

@media (max-width: 1200px) {
:root {
    --shell: min(calc(100% - 40px), 1100px);
    --section: min(calc(100% - 40px), 900px);
  }

  .hero-overlay {
    grid-template-columns: minmax(450px, 620px) minmax(360px, 380px);
    gap: 48px;
    padding: 34px 42px 112px;
    align-items: center;
  }

  .hero-content { max-width: 620px; }

  .hero h1 {
    max-width: 620px;
    font-size: 56px;
    line-height: 1.05;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .hero p { max-width: 580px; font-size: 20px; }
  .hero-card { max-width: 380px; }
  .hero-actions { width: min(100%, 590px); max-width: 590px; }
  .hero-actions .contact-btn { height: 48px; font-size: 14.5px; }

.hero-actions {
    width: min(100%, 680px);
    max-width: 680px;
  }

.hero-slideshow-card {
    max-width: 390px;
    height: 485px;
  }
}

@media (min-width: 1051px) and (max-width: 1150px) {
  .nav-cards { display: none; }

  .navbar {
    width: min(calc(100% - 56px), 1080px);
    max-width: 1080px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 24px 0 0;
  }

  .logo {
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    min-width: 0;
  }

  .logo-img { width: 104px; height: 104px; }
  .logo strong { font-size: 32px; line-height: 1.04; white-space: nowrap; }
  .logo small { font-size: 15px; margin-top: 6px; }

  .nav-actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .top-phone {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

  .top-phone span:last-child { display: none; }
  .lang-switch { margin-left: 0; min-height: 42px; }
  .menu-toggle { width: 46px; height: 46px; }
}

@media (max-width: 1050px) {
:root {
    --shell: min(calc(100% - 56px), 980px);
    --section: min(calc(100% - 72px), 760px);
  }

  .nav-cards { display: none; }
  .hero { min-height: 760px; }

  .navbar {
    width: min(calc(100% - 56px), 980px);
    max-width: 980px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 24px 0 0;
  }

  .logo {
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    min-width: 0;
  }

  .logo-img { width: 104px; height: 104px; }
  .logo strong { font-size: 32px; line-height: 1.04; white-space: nowrap; }
  .logo small { font-size: 15px; margin-top: 6px; }

  .nav-actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .top-phone {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

  .top-phone span:last-child { display: none; }
  .lang-switch { margin-left: 0; min-height: 42px; }
  .menu-toggle { width: 46px; height: 46px; }

  .hero-overlay {
    width: min(calc(100% - 56px), 980px);
    max-width: 980px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 38px;
    padding: 34px 0 108px;
    min-height: 535px;
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
    margin-inline: 0;
  }

  .badge, .hero h1, .hero p, .hero-actions, .payment-cards { margin-inline: 0; }
  .badge { margin-bottom: 28px; }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(42px, 4.9vw, 52px);
    line-height: 1.06;
    margin-bottom: 24px;
    text-align: left;
  }

  .hero p { max-width: 520px; font-size: 20px; margin-bottom: 34px; }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-content: start;
    gap: 12px;
    width: min(100%, 560px);
    max-width: 560px;
    margin-top: 0;
  }

  .hero-actions .contact-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 48px;
    padding-inline: 10px;
    font-size: 14.5px;
    gap: 8px;
  }

  .payment-cards {
    width: auto;
    height: 56px;
    margin-top: 18px;
  }

  .hero-card { width: 100%; max-width: 380px; justify-self: end; }

  .services {
    width: min(calc(100% - 96px), 900px);
    margin-top: -48px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  .services .service-card { grid-column: span 2; }
  .services .service-card:nth-child(4),
  .services .service-card:nth-child(5) { grid-column: span 3; }

  .main-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 82px;
    margin-bottom: 82px;
  }

  .booking-box,
  .review-box {
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 32px;
  }

  .review-box h2,
  .review,
  .reviews-btn,
  .review-box .contact-row { width: min(100%, 440px); }

  .rating {
    width: min(100%, 440px);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }

  .review-box .centered-actions { grid-template-columns: repeat(3, 1fr); }

  footer { padding-inline: 0; }
  .footer-inner {
    width: min(calc(100% - 144px), 900px);
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: 36px 96px;
    margin-inline: auto;
  }

.about-section {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding-top: 8px;
  }

  .about-copy h2,
  .about-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy h2 { font-size: clamp(32px, 4.7vw, 42px); }
  .about-copy p { font-size: 17px; }

  .about-highlights {
    width: min(100%, 660px);
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 14px;
    border: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.5);
  }

  .about-icon {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

.route-info-box,
  .review-box {
    justify-content: flex-start;
  }

.review-box {
    align-self: stretch;
    min-height: 0;
    justify-content: flex-start;
  }

  .route-info-box .section-kicker {
    align-self: center;
  }

.hero-slideshow-card {
    width: 100%;
    max-width: 380px;
    height: 470px;
    justify-self: end;
  }
}

@media (min-width: 861px) and (max-width: 1000px) {
.hero { min-height: auto; }

  .navbar {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    padding: 22px 30px 0;
  }

  .logo { justify-content: center; text-align: center; }
  .logo-img { width: 118px; height: 118px; }
  .logo strong { font-size: 34px; white-space: nowrap; }
  .logo small { font-size: 16px; }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-phone {
    width: auto;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0 15px;
  }

  .top-phone span:last-child { display: inline; }
  .lang-switch { min-height: 42px; }
  .menu-toggle { width: 46px; height: 46px; }

  .hero-overlay {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 86px;
    padding: 78px 30px 120px;
    min-height: 0;
  }

  .hero-content {
    width: min(100%, 760px);
    max-width: 760px;
    margin-inline: auto;
  }

  .badge,
  .hero h1,
  .hero p,
  .hero-actions,
  .payment-cards { margin-inline: auto; }

  .badge { margin-bottom: 38px; }

  .hero h1 {
    max-width: 760px;
    font-size: 48px;
    line-height: 1.08;
    text-align: center;
    margin-bottom: 32px;
  }

  .hero p {
    max-width: 620px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 660px);
    gap: 14px;
  }

  .hero-actions .contact-btn {
    width: 100%;
    height: 48px;
    padding-inline: 12px;
    font-size: 14.5px;
    gap: 8px;
  }

  .hero-actions .contact-icon,
  .hero-actions .contact-icon svg {
    display: inline-flex;
    width: 18px;
    height: 18px;
  }

  .payment-cards {
    display: block;
    height: 58px;
    width: auto;
    margin-top: 32px;
  }

  .hero-card {
    width: min(100%, 560px);
    max-width: 560px;
    justify-self: center;
    padding: 28px;
  }

  .hero-card .contact-btn {
    gap: 8px;
    padding-inline: 12px;
  }

  .hero-card .contact-btn span:not(.contact-icon) { display: inline; }
  .hero-card .contact-icon,
  .hero-card .contact-icon svg { width: 18px; height: 18px; }

.hero-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 760px);
  }

.hero-slideshow-card {
    width: min(100%, 620px);
    max-width: 620px;
    height: clamp(390px, 52vw, 500px);
    justify-self: center;
  }

  .slide-content {
    text-align: left;
  }
}

@media (min-width: 861px) and (max-width: 1380px) {
.hero {
    min-height: auto;
  }

  .hero-overlay {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 76px;
    padding: 72px 42px 126px;
    min-height: 0;
  }

  .hero-content {
    max-width: 780px;
    margin-inline: auto;
  }

  .badge,
  .hero h1,
  .hero p,
  .hero-actions,
  .payment-cards {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 780px;
    text-align: center;
  }

  .hero p {
    max-width: 640px;
    text-align: center;
  }

  .hero-actions {
    width: min(100%, 660px);
    max-width: 660px;
  }

  .hero-slideshow-card {
    width: min(100%, 780px);
    max-width: 780px;
    height: clamp(420px, 46vw, 540px);
    justify-self: center;
  }

.hero-overlay {
    width: min(100%, 1220px);
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content {
    max-width: 940px;
  }

  .hero h1 {
    max-width: 940px;
  }

  .hero p {
    max-width: 720px;
  }

  .hero-slideshow-card {
    width: min(100%, 1080px);
    max-width: 1080px;
    height: clamp(430px, 45vw, 560px);
  }
}

@media (max-width: 860px) {
:root {
    --shell: min(calc(100% - 36px), 760px);
    --section: min(calc(100% - 48px), 760px);
  }

  .hero { min-height: auto; }

  .navbar {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 34px;
    padding: 22px 24px 0;
  }

  .logo {
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .logo-img { width: 104px; height: 104px; }
  .logo strong { font-size: 32px; line-height: 1.05; white-space: nowrap; }
  .logo small { font-size: 15px; }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-phone {
    width: auto;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    padding: 0 15px;
  }

  .top-phone span:last-child { display: inline; }
  .lang-switch { margin-left: 0; min-height: 42px; }
  .menu-toggle { width: 46px; height: 46px; }

  .mobile-menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-overlay {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 94px;
    padding: 84px 24px 136px;
    min-height: 0;
  }

  .hero-content {
    width: min(100%, 700px);
    max-width: 700px;
    margin-inline: auto;
  }

  .badge,
  .hero h1,
  .hero p,
  .hero-actions,
  .payment-cards { margin-inline: auto; }

  .badge { margin-bottom: 38px; }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 6.4vw, 48px);
    line-height: 1.08;
    text-align: center;
    margin-bottom: 32px;
  }

  .hero p {
    max-width: 580px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 620px);
    gap: 14px;
  }

  .hero-actions .contact-btn {
    width: 100%;
    height: 48px;
    padding-inline: 12px;
    font-size: 14.5px;
    gap: 8px;
  }

  .payment-cards {
    display: block;
    height: 58px;
    width: auto;
    margin-top: 32px;
  }

  .hero-card {
    width: min(100%, 560px);
    max-width: 560px;
    justify-self: center;
    padding: 28px;
  }

  .hero-card .contact-btn {
    gap: 8px;
    padding-inline: 12px;
  }

  .hero-card .contact-btn span:not(.contact-icon) { display: inline; }
  .hero-card .contact-icon,
  .hero-card .contact-icon svg { width: 18px; height: 18px; }

  .services {
    width: min(calc(100% - 64px), 760px);
    margin-top: -48px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .services .service-card { grid-column: span 2; }
  .services .service-card:nth-child(4),
  .services .service-card:nth-child(5) { grid-column: span 3; }

  .main-section {
    width: var(--section);
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .booking-box,
  .review-box {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .review-box .centered-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

.about-section {
    width: min(100%, 680px);
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-copy h2 { font-size: clamp(31px, 5.2vw, 40px); }
  .about-copy p {
    font-size: 17px;
    line-height: 1.62;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    gap: 12px;
  }

  .about-highlight {
    grid-template-columns: 50px 1fr;
    justify-items: stretch;
    text-align: left;
    align-items: start;
    padding: 16px 18px;
    gap: 14px;
    border-bottom: 1px solid rgba(15, 77, 150, 0.12);
    border-radius: 0;
    background: transparent;
  }

.hero-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 700px);
  }

.hero-slideshow-card {
    width: min(100%, 640px);
    max-width: 640px;
    height: clamp(360px, 66vw, 500px);
    justify-self: center;
    border-radius: 28px;
  }

  .slide-content {
    padding: 28px;
    text-align: left;
  }

.hero-slideshow-card {
    width: min(100%, 720px);
    max-width: 720px;
    height: clamp(370px, 66vw, 500px);
  }

  .hero-overlay {
    padding-top: 72px;
  }
}

@media (min-width: 481px) and (max-width: 700px) {
.services {
    width: min(calc(100% - 32px), 660px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .services .service-card,
  .services .service-card:nth-child(4) {
    grid-column: span 2;
  }

  .services .service-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 640px) {
:root { --section: min(calc(100% - 32px), 600px); }

  .navbar {
    gap: 36px;
    padding-inline: 18px;
  }

  .logo strong {
    font-size: clamp(26px, 6vw, 31px);
    line-height: 1.08;
  }

  .logo small {
    font-size: clamp(13px, 3.3vw, 15px);
    line-height: 1.3;
  }

  .hero-overlay {
    padding: 84px 18px 132px;
    gap: 88px;
  }

  .badge {
    min-height: 40px;
    padding: 9px 17px;
    font-size: 12.5px;
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 8.2vw, 44px);
    line-height: 1.08;
    margin-bottom: 30px;
  }

  .hero p {
    font-size: clamp(18px, 4.2vw, 20px);
    line-height: 1.42;
    margin-bottom: 44px;
  }

  .hero-actions {
    width: min(100%, 430px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .contact-btn {
    height: 50px;
    font-size: 15px;
  }

  .payment-cards {
    height: 54px;
    margin-top: 30px;
  }

  .hero-card {
    width: min(100%, 520px);
    padding: 24px;
  }

  .hero-card h3 { font-size: 28px; }
  .hero-card p { font-size: 14.5px; }

  .hero-booking-form input {
    padding: 15px;
    font-size: 15px;
  }

  .services {
    width: min(calc(100% - 32px), 600px);
    gap: 12px;
  }

  .service-card {
    min-height: 86px;
    padding: 16px 12px;
  }

  .footer-inner {
    width: min(calc(100% - 48px), 600px);
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

.about-section {
    width: min(100%, 560px);
    gap: 28px;
    padding-top: 0;
  }

  .about-copy h2 {
    font-size: clamp(28px, 6.6vw, 34px);
    margin-bottom: 14px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .about-highlight {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .about-highlight strong { font-size: 17px; }
  .about-highlight p { font-size: 15px; }

.hero-actions,
  .review-box .centered-actions {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
  }

  .hero-actions .contact-btn {
    min-height: 52px;
  }

.active-review {
    height: 176px;
    min-height: 176px;
  }

  .review p {
    min-height: calc(1.55em * 4);
    -webkit-line-clamp: 4;
  }

.review-box {
    padding: 30px 22px;
  }

  .review-box .active-review {
    height: 152px;
    min-height: 152px;
  }

.hero-slideshow-card {
    height: clamp(340px, 88vw, 440px);
    border-radius: 24px;
  }

  .slide-content {
    padding: 24px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 14.5px;
  }

  .slide-dots {
    left: 24px;
    top: 24px;
  }

.hero-slideshow-card {
    height: clamp(330px, 88vw, 440px);
  }
  .hero-overlay {
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
.logo {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    max-width: calc(100vw - 28px);
  }

  .logo-img {
    width: 82px;
    height: 82px;
  }

  .logo strong {
    white-space: nowrap;
    font-size: clamp(23px, 5.8vw, 28px);
    line-height: 1.06;
    letter-spacing: -0.25px;
  }

  .logo small {
    max-width: 310px;
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.25;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
.booking-box,
  .review-box {
    padding-block: 24px;
  }

  .review-box .active-review {
    height: 148px;
    min-height: 148px;
  }
}

@media (max-width: 480px) {
:root { --section: min(calc(100% - 24px), 420px); }

  .navbar {
    gap: 30px;
    padding-top: 18px;
  }

  .nav-actions { gap: 8px; }

  .top-phone {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .top-phone span:last-child { display: none; }

  .lang-switch {
    min-height: 40px;
    padding: 5px 7px;
  }

  .menu-toggle { width: 44px; height: 44px; }

  .hero-overlay {
    padding: 78px 14px 122px;
    gap: 76px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.6vw, 38px);
    margin-bottom: 26px;
  }

  .hero p {
    font-size: clamp(17px, 4.5vw, 19px);
    margin-bottom: 38px;
  }

  .badge { margin-bottom: 28px; }
  .payment-cards { height: 48px; margin-top: 24px; }

  .hero-card {
    width: min(100%, 420px);
    padding: 20px;
    border-radius: 24px;
  }

  .hero-card h3 { font-size: 26px; }

  .card-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-card .contact-btn {
    height: 46px;
    padding: 0;
    gap: 0;
  }

  .hero-card .contact-btn span:not(.contact-icon) { display: none; }
  .hero-card .contact-icon,
  .hero-card .contact-icon svg { width: 21px; height: 21px; }

  .services {
    width: min(calc(100% - 28px), 420px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services .service-card,
  .services .service-card:nth-child(4),
  .services .service-card:nth-child(5) {
    grid-column: auto;
  }

  .booking-box,
  .review-box {
    width: 100%;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .booking-box h2,
  .review-box h2 {
    font-size: 28px;
  }

  .route-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .booking-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-box .centered-actions {
    grid-template-columns: 1fr;
  }

.about-section {
    width: 100%;
    gap: 24px;
  }

  .about-copy .section-kicker { margin-bottom: 12px; }
  .about-copy h2 { font-size: clamp(25px, 7.1vw, 30px); }

  .about-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-highlights { gap: 10px; }

  .about-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 21px;
  }

.card-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-card .call-btn {
    background: linear-gradient(135deg, #FFE55C 0%, #FFD21F 48%, #F4B400 100%);
    color: #111827;
  }
}

@media (max-width: 420px) {
.review-box .active-review {
    height: 166px;
    min-height: 166px;
  }

.hero-slideshow-card {
    height: 340px;
  }

  .slide-content h2 {
    font-size: 25px;
  }

  .slide-content p {
    font-size: 13.5px;
    line-height: 1.45;
  }
}

@media (max-width: 390px) {
.logo strong {
    font-size: clamp(20px, 5.9vw, 23px);
    letter-spacing: -0.35px;
  }

  .logo small {
    max-width: 280px;
    font-size: 11.5px;
  }

  .hero h1 { font-size: clamp(30px, 8.5vw, 34px); }
  .hero p { font-size: 16.5px; }

  .hero-overlay {
    padding-top: 70px;
    gap: 68px;
  }
}

@media (max-width: 380px) {
.active-review {
    height: 184px;
    min-height: 184px;
  }
}

@media (max-width: 360px) {
.logo strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .logo small {
    font-size: 11px;
    max-width: 260px;
  }

  .hero h1 { font-size: 29px; }
  .contact-btn { font-size: 14px; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  width: var(--section);
  margin: -22px auto 86px;
}

.faq-shell {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 31, 0.12), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(15, 77, 150, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: var(--shadow);
}

.faq-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.faq-head h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.9px;
}

.faq-head p {
  color: #475569;
  font-size: 18px;
  line-height: 1.62;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 17px;
  font-weight: 900;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #FFE55C 0%, #FFD21F 48%, #F4B400 100%);
  color: #111827;
}

@media (min-width: 1051px) {
  .route-info-box,
  .review-box {
    align-self: stretch;
    height: 100%;
  }

  .review-box {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .faq-section {
    width: var(--section);
    margin: -32px auto 80px;
  }

  .faq-shell {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .faq-head {
    margin-bottom: 22px;
  }

  .faq-head p {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    margin: -34px auto 70px;
  }

  .faq-shell {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .faq-head h2 {
    font-size: clamp(28px, 6.6vw, 34px);
  }

  .faq-head p {
    font-size: 16px;
    line-height: 1.55;
  }

  .faq-question {
    min-height: 60px;
    padding: 16px;
    font-size: 15.5px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .faq-shell {
    padding: 24px 14px;
  }

  .faq-question {
    gap: 12px;
  }

  .faq-toggle {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    font-size: 22px;
  }
}


/* ===== REVIEW BOX SPACING REFINEMENT =====
   Uses the existing equal-height desktop layout, but spreads the review
   content vertically so the card does not feel empty. */
@media (min-width: 1051px) {
  .review-box {
    justify-content: space-between;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .review-box h2,
  .review-box .active-review,
  .review-box .rating,
  .review-box .reviews-btn {
    margin-top: 0;
    margin-bottom: 0;
  }

  .review-box .active-review {
    height: 156px;
    min-height: 156px;
  }
}

/* Slideshow arrow responsiveness */

@media (max-width: 640px) {
  .slide-arrow {
    top: 27%;
    width: 42px;
    height: 42px;
  }

  .slide-arrow::before {
    width: 10px;
    height: 10px;
  }

  .slide-arrow-left { left: 14px; }
  .slide-arrow-right { right: 14px; }
}

@media (max-width: 420px) {
  .slide-arrow {
    top: 24%;
    width: 38px;
    height: 38px;
  }

  .slide-arrow::before {
    width: 9px;
    height: 9px;
  }

  .slide-arrow-left { left: 12px; }
  .slide-arrow-right { right: 12px; }
}

