@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap");

:root {
  --navy: #111d49;
  --coral: #ff6243;
  --teal: #57919b;
  --header-bg: #f8f8fa;
  --white: #fff;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: #151e42;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  overscroll-behavior-y: none;
}

body > main { flex: 1 0 auto; }

#app {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  background: var(--white);
}

#app > main { flex: 1 0 auto; }
#app > .site-footer, body > .site-footer { flex-shrink: 0; }

button, a { font: inherit; }

.facebook-float {
  position: fixed;
  z-index: 30;
  top: 50%;
  right: 0;
  width: 42px;
  min-height: 108px;
  border-radius: 9px 0 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background: #1877f2;
  box-shadow: 0 5px 18px rgba(17, 29, 73, .25);
  text-decoration: none;
  transform: translateY(-50%);
  transition: width .2s ease, background .2s ease;
}
.facebook-float svg { width: 19px; height: 19px; flex: 0 0 auto; fill: currentColor; }
.facebook-float span { font-size: 12px; font-weight: 800; writing-mode: vertical-rl; transform: rotate(180deg); }
.facebook-float:hover, .facebook-float:focus-visible { width: 48px; background: #0d65d9; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 82px;
  background: var(--header-bg);
  box-shadow: 0 2px 12px rgba(17, 29, 73, .08);
}

.header-inner {
  width: min(100% - 40px, 1192px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand { flex: 0 0 auto; display: block; line-height: 0; }
.brand-logo { width: 66px; height: 66px; }
.logo-main { font-size: 18px; font-weight: 800; fill: var(--navy); font-family: Arial, sans-serif; }
.logo-sub { font-size: 10px; font-style: italic; font-weight: 800; fill: var(--teal); font-family: Arial, sans-serif; }

.main-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

.nav-link {
  position: relative;
  height: 100%;
  min-height: 82px;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-link:hover, .nav-link:focus-visible, .nav-link.active { color: var(--coral); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.active::after { transform: scaleX(1); }

.chevron {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.submenu-trigger[aria-expanded="true"] .chevron { transform: translateY(3px) rotate(225deg); }
.flag { font-size: 17px; line-height: 1; }

.language-menu > .nav-link {
  color: var(--navy);
}

.language-menu > .nav-link::after {
  transform: scaleX(0);
}

.language-menu > .nav-link:hover,
.language-menu > .nav-link:focus-visible { color: var(--coral); }

.language-menu > .nav-link:hover::after,
.language-menu > .nav-link:focus-visible::after { transform: scaleX(1); }

.submenu {
  position: absolute;
  top: calc(100% - 14px);
  left: -18px;
  min-width: 185px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(17, 29, 73, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.submenu-right { right: 0; left: auto; }
.has-submenu:hover .submenu, .has-submenu.open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
}

.submenu a:hover, .submenu a:focus-visible { color: var(--coral); background: #fff4f1; }

.language-submenu {
  top: calc(100% - 20px);
  width: 180px;
  min-width: 180px;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(17, 29, 73, .18);
}

.language-submenu a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 41px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
}

.language-submenu .flag {
  width: 18px;
  flex: 0 0 18px;
  font-size: 16px;
  text-align: center;
}

.language-submenu .current-language {
  color: var(--coral);
}
.menu-toggle { display: none; }
.container { width: min(100% - 40px, 1140px); margin-inline: auto; }

.hero { position: relative; min-height: 590px; overflow: hidden; color: #fff; }
.hero-slide, .hero-shade { position: absolute; inset: 0; }
.hero-slide { background-position: center; background-size: cover; opacity: 0; transform: scale(1.03); transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-one { background-image: url('/images/hero-prado.jpg'); }
.hero-slide-two { background-image: url('/images/hero-l300.png'); }
.hero-shade { background: rgba(0, 0, 0, .52); }
.hero-content { position: relative; z-index: 2; padding-top: 180px; }
.hero-content p { max-width: 620px; margin: 0 0 24px; font-size: 19px; font-weight: 600; }
.hero h1 { min-height: 58px; margin: 0 0 32px; font-size: clamp(35px, 4vw, 58px); line-height: 1.05; font-weight: 800; }
.hero h1 span { color: #fff; }
.hero-actions { display: flex; gap: 13px; }
.button { min-width: 130px; padding: 13px 25px; border: 2px solid var(--coral); display: inline-flex; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.button-primary { background: var(--coral); }
.button-outline { border-color: #fff; background: transparent; }
.button:hover { border-color: var(--teal); background: var(--teal); }
.scroll-down { position: absolute; z-index: 3; bottom: 23px; left: 50%; color: #fff; font-size: 42px; line-height: 1; text-decoration: none; transform: translateX(-50%); animation: bounce 1.7s infinite; }
@keyframes bounce { 50% { transform: translate(-50%, 8px); } }

.reservation-wrap { position: relative; z-index: 4; width: min(100% - 40px, 1140px); margin: -42px auto 0; }
.reservation-card { padding: 24px; display: grid; grid-template-columns: 1.15fr 1.4fr 1fr 1fr auto; gap: 12px; align-items: end; background: #fff; box-shadow: 0 8px 30px rgba(17, 29, 73, .16); }
.field { display: grid; gap: 7px; }
.field span { color: #697086; font-size: 10px; font-weight: 700; }
.field input, .field select { width: 100%; height: 48px; padding: 0 12px; border: 1px solid #dfe1e8; border-radius: 0; color: #464d65; background: #fff; font-family: inherit; font-size: 11px; }
.select-field { padding-top: 19px; }
.reserve-submit, .contact-form button { height: 48px; padding: 0 24px; border: 0; color: #fff; background: var(--teal); font-weight: 700; cursor: pointer; }
.reserve-submit:hover, .contact-form button:hover { background: var(--coral); }
.reserve-submit { letter-spacing: .05em; box-shadow: 0 6px 16px rgba(87, 145, 155, .28); transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.reserve-submit:hover, .reserve-submit:focus-visible { box-shadow: 0 8px 20px rgba(255, 98, 67, .3); transform: translateY(-2px); }

.personal-service { margin-top: 58px; padding: 47px 0; color: #fff; background: #202a54; }
.service-inner { display: flex; justify-content: center; text-align: center; }
.service-inner h2 { margin: 0 0 20px; font-size: 27px; }
.service-inner h2 strong { color: #1f7ee7; }
.service-inner a { display: block; margin: 8px 0; color: #fff; font-size: 14px; text-decoration: none; }

.section-space { padding: 82px 0; }
.section-heading { margin: 0 auto 45px; text-align: center; }
.section-heading span, .contact-copy > span { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.section-heading h2 { max-width: 680px; margin: 10px auto 14px; color: var(--navy); font-size: 30px; }
.section-heading i { width: 46px; height: 3px; margin: auto; display: block; background: var(--coral); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
.car-card { overflow: hidden; display: flex; flex-direction: column; background: #fff; box-shadow: 0 6px 24px rgba(18, 30, 68, .09); transition: transform .2s, box-shadow .2s; }
.car-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18, 30, 68, .15); }
.car-card > img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; }
.car-info { min-height: 86px; padding: 18px 18px 12px; display: flex; flex: 1 0 auto; justify-content: space-between; gap: 12px; }
.car-info h3 { margin: 0 0 7px; font-size: 13px; }
.car-info p { margin: 0; color: #697086; font-size: 10px; line-height: 1.5; }
.car-info > strong { color: var(--coral); font-size: 17px; white-space: nowrap; }
.car-card > a, .soon { min-height: 46px; margin-top: auto; padding: 13px 18px; display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.car-card > a { color: #fff; background: var(--teal); transition: background .2s ease, letter-spacing .2s ease; }
.car-card > a::after { content: "→"; font-size: 16px; line-height: 1; transition: transform .2s ease; }
.car-card > a:hover, .car-card > a:focus-visible { background: var(--coral); letter-spacing: .09em; }
.car-card > a:hover::after, .car-card > a:focus-visible::after { transform: translateX(4px); }
.soon { border-top: 1px solid #eee; color: #9a9da8; background: #f7f8fa; }

.why-us { color: #fff; background: linear-gradient(rgba(16, 29, 69, .91), rgba(16, 29, 69, .91)), url('/images/hero-l300.png') center / cover fixed; }
.section-heading.light span { color: #7db1bb; }
.section-heading.light h2 { color: #fff; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; text-align: center; }
.benefits b { width: 62px; height: 62px; margin: auto; border: 2px solid var(--teal); border-radius: 50%; display: grid; place-items: center; color: var(--coral); font-size: 25px; }
.benefits h3 { margin: 20px 0 10px; font-size: 17px; }
.benefits p { margin: 0; color: #d2d6e0; font-size: 13px; line-height: 1.8; }

.contact-section { background: #f7f8fa; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.contact-copy h2 { margin: 10px 0 12px; font-size: 31px; }
.contact-copy p { color: #70758a; line-height: 1.7; }
.contact-image { height: 145px; margin-top: 25px; background: url('/images/contact-generated.png') center / cover; }
.contact-map-section { padding: 0 0 80px; }
.contact-map-heading { margin-bottom: 24px; text-align: center; }
.contact-map-heading span { color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: 1.7px; }
.contact-map-heading h2 { margin: 8px 0 0; font-size: 25px; }
#contact-map { z-index: 1; width: 100%; height: 430px; border-radius: 10px; box-shadow: 0 8px 30px rgba(17, 29, 73, .13); }
.car-map-marker { background: transparent; border: 0; }
.car-map-marker > span {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 5px 15px rgba(17, 29, 73, .38);
  transform: rotate(-45deg);
}
.car-map-marker svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform: rotate(45deg);
}
.car-map-marker:hover > span { background: var(--navy); transform: rotate(-45deg) scale(1.08); }
.car-map-marker > span { transition: background .18s ease, transform .18s ease; }
.map-popup { min-width: 155px; display: grid; gap: 9px; }
.map-popup strong { color: var(--navy); font-size: 13px; }
.map-popup a { color: var(--coral); font-size: 12px; font-weight: 700; text-decoration: none; }
.map-popup a:hover, .map-popup a:focus-visible { color: var(--navy); text-decoration: underline; }
.contact-form { display: grid; gap: 13px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #e0e3e9; background: #fff; font-family: inherit; font-size: 12px; resize: vertical; }
.contact-form button { width: 33%; }

.brands { padding: 25px 0; background: #fff; overflow: hidden; }
.brand-row { min-height: 120px; overflow: hidden; }
.brand-track { display: flex; width: max-content; animation: brand-carousel 28s linear infinite; }
.brand-group { display: flex; flex-shrink: 0; align-items: center; }
.brand-group img { width: 150px; height: 75px; margin-right: 48px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: .2s; }
.brand-group img:hover { filter: none; opacity: 1; }
.brands:hover .brand-track { animation-play-state: paused; }
@keyframes brand-carousel { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-track { animation: none; } }

.site-footer { color: #d9dce5; background: #151e42; }
.footer-grid { padding: 58px 0 42px; display: grid; grid-template-columns: 1fr 1.2fr 1.2fr; gap: 50px; }
.footer-grid h3 { margin: 0 0 20px; color: #fff; font-size: 13px; }
.footer-grid p { margin: 0 0 13px; font-size: 12px; line-height: 1.8; }
.footer-grid a { color: #d9dce5; text-decoration: none; }
.copyright { padding: 18px 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: center; gap: 22px; color: #9ca2b5; font-size: 11px; text-align: center; }
.copyright a { color: #d9dce5; text-decoration: none; }
.copyright a:hover, .copyright a:focus-visible { color: var(--coral); text-decoration: underline; }

.privacy-content { max-width: 860px; color: #5f6679; font-size: 14px; line-height: 1.85; }
.privacy-content h2 { margin: 35px 0 8px; color: var(--navy); font-size: 19px; }
.privacy-content p { margin: 0 0 14px; }
.privacy-content a { color: var(--teal); font-weight: 700; }
.privacy-updated { color: #858b9b; font-size: 12px; }

.inner-hero {
  position: relative;
  min-height: 295px;
  padding: 48px 20px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url('/images/about-title.jpg') center 56% / cover;
}
.inner-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 54, .9) 0%, rgba(10, 20, 54, .68) 48%, rgba(10, 20, 54, .22) 100%);
}
.inner-hero h1 {
  position: relative;
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .035em;
  text-align: left;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}
.inner-hero h1::before {
  content: "INTERCIDADES RENT-A-CAR";
  margin-bottom: 14px;
  display: block;
  color: #ff8068;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .24em;
  text-shadow: none;
}
.inner-hero h1::after {
  content: "";
  width: 48px;
  height: 3px;
  margin: 19px 0 0;
  display: block;
  border-radius: 2px;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 98, 67, .15);
}
.about-split { overflow: hidden; }
.about-row { min-height: 390px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.about-row.reverse > :first-child { order: 1; }
.about-row.reverse > :last-child { order: 2; }
.about-text { padding: 72px 55px; display: flex; flex-direction: column; justify-content: center; color: #4a5065; font-size: 14px; line-height: 1.9; }
.about-text p { margin: 0 0 14px; }
.about-picture { min-height: 390px; background-position: center; background-size: cover; }
.about-picture-title { background-image: url('/images/about-title.jpg'); }
.about-picture-vehicle { background-image: url('/images/about-intro.jpg'); }
.about-pillars { background: #f7f8fa; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pillars-grid article { background: #fff; box-shadow: 0 5px 22px rgba(17, 29, 73, .08); }
.pillars-grid img { width: 100%; aspect-ratio: 1.5; display: block; object-fit: cover; }
.pillars-grid article > div { padding: 28px 25px; }
.pillars-grid h2, .value-copy h2 { margin: 0 0 14px; color: var(--navy); font-size: 15px; }
.pillars-grid p, .value-copy p { margin: 0; color: #636a7d; font-size: 13px; line-height: 1.8; }
.value-band { min-height: 355px; background-position: center; background-size: cover; }
.value-row { min-height: 355px; display: grid; grid-template-columns: 1fr 1fr; }
.value-row.reverse > :first-child { order: 1; }
.value-row.reverse > :last-child { order: 2; }
.value-copy { padding: 65px 55px; display: flex; flex-direction: column; justify-content: center; background: rgba(255, 255, 255, .96); }
.team-band { background-image: url('/images/team.jpg'); }
.social-band { background-image: url('/images/social.jpg'); }
.environment-band { background-image: url('/images/environment.jpg'); }
.religion-band { background-image: url('/images/religion.jpg'); }

.booking-page { max-width: 900px; }
.booking-page > h2, .tourism-intro h2 { margin: 0 0 12px; font-size: 25px; }
.booking-page > p, .tourism-intro p { color: #62697c; font-size: 14px; line-height: 1.8; }
.booking-form { margin-top: 35px; padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; background: #f7f8fa; box-shadow: 0 5px 22px rgba(17,29,73,.08); }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #dfe2e8;
  border-radius: 2px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.booking-form textarea { min-height: 125px; padding-top: 15px; resize: vertical; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #777d89; opacity: 1; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(87, 145, 155, .13); }
.booking-form select:disabled { color: #a4a8b0; background: #fafafa; cursor: not-allowed; }
.booking-form label { display: grid; gap: 7px; color: #677087; font-size: 10px; font-weight: 700; }
.booking-form textarea, .booking-form button { grid-column: 1 / -1; }
.booking-form button { min-height: 48px; border: 0; color: #fff; background: var(--teal); font-weight: 800; cursor: pointer; }
.booking-total { grid-column: 1 / -1; padding: 19px 20px; border-left: 4px solid var(--coral); display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: #fff; box-shadow: 0 3px 14px rgba(17,29,73,.07); }
.booking-total[hidden] { display: none; }
.booking-total > div { display: grid; gap: 5px; }
.booking-total span { color: #687086; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.booking-total strong { color: var(--navy); font-size: 16px; }
.booking-total-final strong { color: var(--coral); font-size: 21px; }
.booking-total-error { grid-column: 1 / -1; margin: 0; color: #b43725; font-size: 12px; font-weight: 700; }
.tourism-intro { max-width: 850px; margin-bottom: 48px; text-align: center; }
.island-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.island-grid article { min-height: 280px; display: grid; grid-template-columns: 44% 56%; background: #f7f8fa; }
.island-photo { background-color: #e8ebef; background-image: var(--island-image); background-position: center; background-size: cover; }
.island-grid article > div:last-child { padding: 28px 22px; }
.island-grid h2 { margin: 0 0 12px; font-size: 15px; }
.island-grid p { color: #656c7d; font-size: 12px; line-height: 1.7; }
.island-grid a, .news-grid a { color: var(--teal); font-size: 11px; font-weight: 800; text-decoration: none; }
.wonders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.wonders-grid article { overflow: hidden; background: #fff; box-shadow: 0 5px 22px rgba(17,29,73,.1); }
.wonder-photo { height: 220px; background: #e8ebef var(--wonder-image) center / cover no-repeat; }
.wonders-grid h2 { margin: 0; padding: 20px; font-size: 14px; }
.news-grid { max-width: 760px; }
.news-grid article { display: grid; grid-template-columns: 44% 56%; background: #f7f8fa; }
.news-grid img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.news-grid article > div { padding: 35px; }
.news-grid h2 { margin: 0 0 8px; font-size: 20px; }
.news-grid time { color: var(--teal); font-size: 11px; }
.news-grid p { color: #62697b; font-size: 13px; line-height: 1.8; }

.news-detail { max-width: 900px; }
.news-detail time { margin: 12px 0 25px; display: block; color: var(--teal); font-size: 12px; font-weight: 700; }
.news-detail > img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; box-shadow: 0 8px 28px rgba(17,29,73,.13); }
.news-back { color: var(--teal); font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.news-back:hover, .news-back:focus-visible { color: var(--coral); }
.news-detail-copy { max-width: 720px; margin: 32px auto 0; color: #5f6679; font-size: 15px; line-height: 1.9; }
.news-detail-copy p { margin: 0 0 14px; }

.fleet-catalog { background: #f7f8fa; }
.fleet-layout { display: grid; grid-template-columns: 260px 1fr; gap: 38px; align-items: start; }
.fleet-sidebar { position: sticky; top: 25px; overflow: hidden; background: #fff; box-shadow: 0 6px 25px rgba(17,29,73,.09); }
.filter-title { padding: 25px 22px 20px; color: #fff; background: var(--navy); }
.filter-title span { color: #8bb9c1; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.filter-title h2 { margin: 8px 0 0; color: #fff; font-size: 18px; line-height: 1.35; }
#fleet-filters { padding: 22px; display: grid; gap: 21px; }
#fleet-filters label { display: grid; gap: 9px; color: var(--navy); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.price-filter { display: grid; gap: 9px; color: var(--navy); font-size: 11px; font-weight: 800; text-transform: uppercase; }
#fleet-filters select { width: 100%; height: 43px; padding: 0 10px; border: 1px solid #dde1e8; color: #62697b; background: #fff; font: inherit; font-size: 11px; text-transform: none; }
#fleet-filters output { color: var(--navy); font-size: 12px; font-weight: 800; text-transform: none; }
.range-slider { position: relative; height: 28px; margin-top: 1px; }
.range-track, .range-progress { position: absolute; top: 13px; right: 0; left: 0; height: 4px; border-radius: 4px; background: #d8dce4; }
.range-progress { z-index: 1; background: #356ca8; }
#fleet-filters .range-slider input[type="range"] { position: absolute; z-index: 2; top: 2px; left: 0; width: 100%; height: 24px; margin: 0; appearance: none; pointer-events: none; background: transparent; }
#fleet-filters .range-slider input[type="range"]::-webkit-slider-runnable-track { height: 4px; background: transparent; }
#fleet-filters .range-slider input[type="range"]::-webkit-slider-thumb { width: 22px; height: 22px; margin-top: -9px; border: 7px solid #356ca8; border-radius: 50%; appearance: none; pointer-events: auto; background: #fff; box-shadow: 0 2px 8px rgba(17,29,73,.3); cursor: grab; }
#fleet-filters .range-slider input[type="range"]::-moz-range-track { height: 4px; background: transparent; }
#fleet-filters .range-slider input[type="range"]::-moz-range-thumb { width: 9px; height: 9px; border: 7px solid #356ca8; border-radius: 50%; pointer-events: auto; background: #fff; box-shadow: 0 2px 8px rgba(17,29,73,.3); cursor: grab; }
#fleet-filters button { height: 43px; border: 1px solid var(--teal); color: var(--teal); background: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; cursor: pointer; }
#fleet-filters button:hover { color: #fff; background: var(--teal); }
.fleet-toolbar { min-height: 48px; margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.fleet-toolbar p { margin: 0; color: #666d80; font-size: 12px; }
.fleet-toolbar select { height: 42px; padding: 0 12px; border: 1px solid #dde1e8; color: #62697b; background: #fff; font-size: 11px; }
.fleet-results { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; }
.fleet-results .car-info { display: block; }
.fleet-results .car-info > strong { margin-top: 12px; display: block; }
.no-results { grid-column: 1 / -1; padding: 70px 25px; background: #fff; text-align: center; }
.no-results h2 { font-size: 20px; }
.no-results p { color: #73798a; font-size: 13px; }

@media (max-width: 1050px) {
  .header-inner { gap: 20px; }
  .main-nav { gap: 16px; }
}

@media (max-width: 900px) {
  .site-header, .header-inner { min-height: 70px; }
  .brand-logo { width: 56px; height: 56px; }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    display: grid;
    align-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    display: block;
    background: var(--header-bg);
    box-shadow: 0 15px 30px rgba(17, 29, 73, .08);
    transition: max-height .3s ease, padding .3s ease;
  }

  .main-nav.open { max-height: calc(100vh - 70px); padding-top: 8px; padding-bottom: 24px; overflow-y: auto; }
  .nav-item { height: auto; display: block; }
  .nav-link { width: 100%; min-height: 48px; justify-content: space-between; }
  .nav-link::after { right: auto; bottom: 5px; width: 42px; }
  .submenu { position: static; display: none; padding: 0 0 8px 14px; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .has-submenu:hover .submenu { display: none; }
  .has-submenu.open .submenu { display: block; }
  .submenu a { padding: 9px 12px; }
  .hero { min-height: 520px; }
  .hero-content { padding-top: 155px; }
  .reservation-card { grid-template-columns: 1fr 1fr; }
  .reserve-submit { grid-column: 1 / -1; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .brand-group img { width: 130px; margin-right: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-text, .value-copy { padding: 48px 34px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .wonders-grid { grid-template-columns: repeat(2, 1fr); }
  .island-grid { grid-template-columns: 1fr; }
  .fleet-layout { grid-template-columns: 220px 1fr; gap: 25px; }
  .fleet-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .facebook-float { top: auto; right: 12px; bottom: 18px; width: 48px; min-height: 48px; border: 2px solid #fff; border-radius: 50%; }
  .facebook-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .facebook-float:hover, .facebook-float:focus-visible { width: 48px; }
  .hero { min-height: 430px; }
  .hero-slide { transform: none; }
  .hero-slide-one { background-position: 67% center; }
  .hero-slide-two { background-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .42) 62%, rgba(0, 0, 0, .25) 100%); }
  .hero-content { padding-top: 105px; }
  .hero-actions { flex-wrap: wrap; }

  .reservation-wrap { width: calc(100% - 32px); margin-top: -30px; }
  .reservation-card { padding: 20px; grid-template-columns: 1fr; gap: 12px; }
  .reservation-card .field,
  .reservation-card select,
  .reservation-card input,
  .reserve-submit { width: 100%; }
  .reservation-card input,
  .reservation-card select,
  .reserve-submit { min-height: 52px; font-size: 16px; }
  .reservation-card select,
  .reservation-card input { padding-inline: 14px; }
  .reserve-submit { grid-column: auto; }
  .select-field { padding-top: 0; }

  .fleet-grid, .benefits, .pillars-grid, .wonders-grid { grid-template-columns: 1fr; }
  .fleet-layout { grid-template-columns: 1fr; }
  .fleet-sidebar { position: static; }
  .fleet-results { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form input,
  .booking-form select {
    height: 54px;
    padding-inline: 16px;
    font-size: 16px;
  }
  .booking-form textarea {
    min-height: 125px;
    padding-inline: 16px;
    font-size: 16px;
  }
  .booking-form select {
    width: 100%;
  }
  .booking-form textarea, .booking-form button, .booking-total { grid-column: auto; }
  .booking-total { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header-inner { width: calc(100% - 28px); }
  .container, .reservation-wrap { width: calc(100% - 28px); }
  .hero { min-height: 420px; }
  .hero-content { padding-top: 88px; }
  .hero-content p { font-size: 15px; }
  .hero h1 { min-height: 68px; margin-bottom: 24px; font-size: 32px; }
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .button { min-width: 0; width: 50%; padding-inline: 12px; }
  .reservation-card { padding: 16px; }
  .reserve-submit { grid-column: auto; }
  .select-field { padding-top: 0; }
  .personal-service { margin-top: 40px; }
  .service-inner h2 { font-size: 22px; }
  .section-space { padding: 60px 0; }
  .section-heading h2 { font-size: 25px; }
  .fleet-grid, .benefits, .two-fields, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 35px; }
  .contact-map-section { padding-bottom: 60px; }
  #contact-map { height: 360px; border-radius: 7px; }
  .contact-form button { width: 100%; }
  .brand-group img { width: 110px; height: 65px; margin-right: 28px; }
  .copyright { align-items: center; flex-direction: column; gap: 8px; }
  .inner-hero { min-height: 185px; padding: 32px 18px; background-position: center; }
  .inner-hero h1 { width: calc(100% - 28px); font-size: clamp(26px, 9vw, 36px); }
  .inner-hero h1::before { margin-bottom: 12px; font-size: 9px; letter-spacing: .18em; }
  .about-row, .value-row { grid-template-columns: 1fr; }
  .about-row.reverse > :first-child, .value-row.reverse > :first-child { order: initial; }
  .about-row.reverse > :last-child, .value-row.reverse > :last-child { order: initial; }
  .about-picture { min-height: 260px; }
  .about-text, .value-copy { padding: 42px 25px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .value-row > div:empty { min-height: 260px; }
  .booking-form, .island-grid article, .news-grid article, .wonders-grid { grid-template-columns: 1fr; }
  .booking-form textarea, .booking-form button, .booking-total { grid-column: auto; }
  .booking-total { grid-template-columns: 1fr; }
  .island-photo { min-height: 220px; }
  .fleet-layout { grid-template-columns: 1fr; }
  .fleet-sidebar { position: static; }
  #fleet-filters { grid-template-columns: 1fr; }
  .fleet-results { grid-template-columns: 1fr; }
  .fleet-toolbar { align-items: flex-start; flex-direction: column; }
}
