:root {
  --hero-cut-large: 14%;
  --hero-cut-medium: 8%;
  --hero-cut-small: 4%;
  --accent-gradient: linear-gradient(131deg, #0A2342, #2E6EB5);
  --accent-gradient-dark: linear-gradient(131deg, #081A35, #265A94);
  --nav-surface: #ffffff;
  --nav-surface-elevated: #f4f6fb;
  --nav-border: rgba(15, 21, 32, 0.1);
  --nav-text: #0f1520;
  --nav-muted: rgba(15, 21, 32, 0.62);
  --nav-highlight: rgba(10, 35, 66, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #0f1520;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(10, 35, 66, 0.65);
  outline-offset: 3px;
}

body.nav-open {
  overflow: hidden;
}

/*Btn--------------------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: var(--accent-gradient);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--accent-gradient-dark);
  transform: translateY(-0.5px);
}

/*Navbar--------------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--nav-surface);
  border-bottom: 1px solid rgba(15, 21, 32, 0.08);
  backdrop-filter: blur(18px);
  color: var(--nav-text);
}

.site-header__container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-header__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav-text);
  transition: opacity 180ms ease;
}

.site-header__brand:hover,
.site-header__brand:focus-visible {
  opacity: 0.92;
}

.site-header__brand-word {
  font-weight: 600;
  line-height: 1;
}

.site-header__brand-word--primary {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--nav-muted);
}

.site-header__brand-word--secondary {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: rgba(15, 21, 32, 0.04);
  color: var(--nav-text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background 180ms ease;
}

.site-header__toggle:hover {
  transform: translateY(-1px);
  background: rgba(15, 21, 32, 0.08);
}

.site-header__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 1.2rem;
}

.site-header__toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header.is-open .site-header__toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header__backdrop {
  position: fixed;
  inset: 0;
  background: #04080f;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.site-header.is-open .site-header__backdrop {
  opacity: 1;
  pointer-events: auto;
}


.site-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 75vw;
  background: #ffffff;
  color: #0f1520;
  box-shadow: -16px 0 40px rgba(15, 21, 32, 0.18);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 240ms ease, opacity 200ms ease;
  display: flex;
  justify-content: flex-start;
  padding: 4.25rem 1.75rem 2.75rem;
  overflow-y: auto;
  height: 100vh;
  max-height: 100vh;
  z-index: 1300;
}

.site-header.is-open .site-header__nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.site-header__nav-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  color: inherit;
  min-height: 100%;
}

.site-header__contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
}

.site-header__contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__phone {
  color: inherit;
  letter-spacing: 0.02em;
}

.site-header__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nav-muted);
}

.site-header__close {
  align-self: flex-end;
  border: none;
  background: transparent;
  color: #0f1520;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-header__close:hover {
  color: #08152b;
}

.site-header__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  list-style: none;
  width: auto;
}

.site-header__contact-item {
  display: none;
  align-self: center;
}

.site-header__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  color: var(--nav-text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 180ms ease;
}

.site-header__contact-link:hover {
  color: #0a2342;
}

.site-header__contact-link .site-header__contact-icon {
  width: 1rem;
  height: 1rem;
  color: inherit;
}

.site-header__contact-number {
  white-space: nowrap;
}

.site-header__link-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.site-header__link--desktop {
  display: none;
}

.site-header__sublist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--nav-muted);
}

.site-header__sublist a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  transition: color 180ms ease;
}

.site-header__sublist a::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.2);
  transform: translateY(1px);
}

.site-header__sublist a:hover {
  color: var(--nav-text);
}

.site-header__links a {
  display: inline-block;
  padding: 0;
  border: none;
  transition: color 180ms ease;
}

.site-header__links a:hover {
  color: #08152b;
}

.site-header__divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 21, 32, 0.08);
}

.site-header__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.site-header__cta-primary {
  display: none;
}

.site-header__cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding-inline: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: currentColor;
}

@media (min-width: 640px) {
  .site-header__container {
    width: min(100% - 3.5rem, 1200px);
  }

  .site-header__nav {
    padding-top: 6rem;
  }
}

@media (min-width: 960px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__backdrop {
    display: none;
  }

  .site-header__toggle {
    display: none;
  }

  .site-header__nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    color: var(--nav-text);
    box-shadow: none;
    width: auto;
    max-width: none;
    overflow: visible;
    height: auto;
    max-height: none;
  }

  .site-header__nav-inner {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    color: var(--nav-text);
    text-align: left;
    min-height: auto;
  }

  .site-header__close,
  .site-header__contact {
    display: none;
  }

  .site-header__container {
    padding: 0.9rem 0;
  }

  .site-header__divider {
    display: none;
  }

  .site-header__links {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.95rem;
  }

  .site-header__contact-item {
    display: flex;
    align-items: center;
    margin-right: 3.5rem;
  }

  .site-header__link-group {
    display: block;
  }

  .site-header__sublist {
    display: none;
  }

  .site-header__link--desktop {
    display: block;
  }

  .site-header__links a {
    display: inline-flex;
    align-items: center;
    border: none;
    padding-bottom: 0;
    position: relative;
    color: var(--nav-text);
  }

  .site-header__links a:hover {
    color: #0a2342;
  }

  .site-header__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
  }

  .site-header__links a:hover::after {
    transform: scaleX(1);
  }

  .site-header__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    width: auto;
  }

  .site-header__cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__cta-whatsapp {
    display: none;
  }
}

/*Hero--------------------------------------------------------------------*/
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 6vw, 3rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4rem);
  min-height: clamp(28rem, 70vh, 40rem);
  width: min(100% - clamp(4rem, 12vw, 9rem), 1100px);
  margin-inline: auto;
  padding: clamp(4rem, 12vw, 6.5rem) clamp(1.5rem, 7vw, 6rem);
  color: #ffffff;
  background-image: url('../img/hero/hero_0-767.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--hero-cut-large)), 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(4, 7, 16, 0.78) 0%, rgba(4, 7, 16, 0.48) 55%, rgba(4, 7, 16, 0.18) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 30rem;
  flex: 1 1 20rem;
  margin-top: clamp(4.5rem, 25vh, 8rem);
}

.hero__form {
  position: relative;
  z-index: 3;
  display: none;
  width: min(100% - clamp(4rem, 12vw, 9rem), 1100px);
  margin-inline: auto;
}

.hero-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2.5rem 2.75rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 55px rgba(4, 7, 16, 0.22);
  color: #0f1520;
  gap: 1.75rem;
}

@media (max-width: 768px) {
  .hero-section {
    align-items: stretch;
    gap: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero {
    width: 100%;
    margin-inline: auto;
    padding: clamp(2.5rem, 12vw, 4rem) clamp(1.5rem, 7vw, 2.5rem);
    min-height: clamp(16rem, 50vh, 24rem);
  }

  .hero__content {
    margin-top: clamp(3.2rem, 19vh, 5.8rem);
  }

  .hero__form {
    display: block;
    width: 100%;
    order: -1;
    margin-inline: 0;
    padding-inline: clamp(1.25rem, 8vw, 2.5rem);
  }

  .hero__form .hero-form {
    max-width: none;
    margin: 0;
    padding: clamp(2rem, 8vw, 2.75rem);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
}

.hero-form__tabs {
  display: flex;
  gap: clamp(1rem, 4vw, 2rem);
  justify-content: center;
  align-items: center;
  padding-bottom: 0.75rem;
}

.hero-form__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 86, 120, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.hero-form__tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.hero-form__tab.is-active {
  color: #0a5678;
}

.hero-form__tab.is-active::after {
  background: #0a5678;
  transform: scaleX(1);
}

.hero-form__tab:focus-visible {
  outline: none;
  color: #0a5678;
}

.hero-form__tab:hover {
  color: #0a5678;
}

.hero-form__tab:focus-visible::after {
  background: #0a5678;
  transform: scaleX(1);
}

.hero-form__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-form__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-form__section.is-hidden {
  display: none;
}

.hero-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-form__group.is-hidden {
  display: none;
}

.hero-form__group.has-error .hero-form__label {
  color: #c23824;
}

.hero-form__group.has-error .hero-form__control {
  border-color: #c23824;
  background: rgba(194, 56, 36, 0.08);
}

.hero-form__error {
  display: none;
  font-size: 0.78rem;
  color: #c23824;
  font-weight: 500;
  margin-top: -0.2rem;
}

.hero-form__group.has-error .hero-form__error {
  display: block;
}

.hero-form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 21, 32, 0.55);
}

.hero-form__group.is-focused .hero-form__label,
.hero-form__group.is-filled .hero-form__label {
  color: #0a5678;
}

.hero-form__control {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(10, 86, 120, 0.18);
  border-radius: 14px;
  background: rgba(10, 86, 120, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hero-form__control--select {
  position: relative;
  cursor: pointer;
}

.hero-form__control--select::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.75rem;
  pointer-events: none;
}

.hero-form__control--accent {
  border-color: #0a5678;
  border-width: 2px;
}

.hero-form__control--with-list {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-form__control:focus-within {
  border-color: #0a5678;
  box-shadow: 0 12px 28px rgba(10, 86, 120, 0.24);
  background: #ffffff;
}

.hero-form__control--accent:focus-within {
  box-shadow: 0 12px 28px rgba(10, 86, 120, 0.28);
}

.hero-form__icon {
  width: 1rem;
  height: 1rem;
  color: #0a5678;
  flex-shrink: 0;
}

.hero-form__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: clamp(1rem, 0.7rem + 1vw, 1.05rem);
  color: #0f1520;
  outline: none;
  font-weight: 500;
}

.hero-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.hero-form__input::placeholder {
  color: rgba(10, 86, 120, 0.55);
}

.hero-form__select option[value=''] {
  color: rgba(15, 21, 32, 0.55);
}

.hero-form__swap {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 21, 32, 0.15);
  background: #f4f6fb;
  color: #0a5678;
  cursor: pointer;
}

.hero-form__swap svg,
.hero-form__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-form__options {
  border: 1px solid rgba(15, 21, 32, 0.12);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 1.05rem 1.25rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: -1px;
}

.hero-form__options-empty {
  font-size: 0.9rem;
  color: rgba(15, 21, 32, 0.5);
}

.hero-form__options-provider {
  font-size: 0.78rem;
  color: rgba(15, 21, 32, 0.45);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-form__options-provider span {
  font-weight: 600;
  color: #0e658f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #0f1520;
  cursor: pointer;
  position: relative;
}

.hero-form__checkbox input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  cursor: pointer;
}

.hero-form__checkbox-box {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  border: 2px solid rgba(15, 21, 32, 0.25);
  background: #ffffff;
  display: grid;
  place-items: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
  color: #ffffff;
}

.hero-form__checkbox-icon {
  width: 0.75rem;
  height: 0.75rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 120ms ease;
}

.hero-form__checkbox-label {
  font-weight: 500;
}

.hero-form__checkbox input:focus-visible + .hero-form__checkbox-box {
  box-shadow: 0 0 0 3px rgba(10, 86, 120, 0.2);
}

.hero-form__checkbox input:hover + .hero-form__checkbox-box {
  border-color: rgba(15, 21, 32, 0.4);
}

.hero-form__checkbox input:checked + .hero-form__checkbox-box {
  border-color: #0a5678;
  background: #0a5678;
}

.hero-form__checkbox input:checked + .hero-form__checkbox-box .hero-form__checkbox-icon {
  opacity: 1;
}

.hero-form__submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.hero-form__submit svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

/*Flatpickr overrides*/
.flatpickr-calendar {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-radius: 18px;
  border: 1px solid rgba(10, 86, 120, 0.12);
  overflow: hidden;
  box-shadow: 0 28px 55px rgba(4, 7, 16, 0.22);
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month {
  color: #0a5678;
  font-weight: 600;
}

.flatpickr-weekday {
  color: rgba(10, 86, 120, 0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.flatpickr-day {
  border-radius: 12px;
  color: #0f1520;
}

.flatpickr-day.today {
  border-color: rgba(10, 86, 120, 0.35);
  color: #0a5678;
}

.flatpickr-day:hover,
.flatpickr-day:focus-visible {
  background: rgba(10, 86, 120, 0.1);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus {
  background: #0a5678 !important;
  border-color: #0a5678 !important;
  color: #ffffff !important;
  box-shadow: none;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: #0e658f;
  border-color: #0e658f;
}

.flatpickr-day.inRange {
  background: rgba(10, 86, 120, 0.16);
  border-color: transparent;
  color: #0f1520;
}

.flatpickr-time {
  border-top: 1px solid rgba(10, 86, 120, 0.15);
}

.flatpickr-time input,
.flatpickr-time .flatpickr-time-separator {
  color: #0a5678;
  font-weight: 600;
}

.flatpickr-time .numInputWrapper span.arrowUp:after,
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-bottom-color: #0a5678;
  border-top-color: #0a5678;
}

.flatpickr-custom-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(10, 86, 120, 0.12);
  background: #ffffff;
}

.flatpickr-action {
  background: none;
  border: none;
  padding: 0;
  color: #0a5678;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 150ms ease;
}

.flatpickr-action:hover,
.flatpickr-action:focus-visible {
  color: #0e658f;
}

.flatpickr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 21, 32, 0.45);
  backdrop-filter: blur(2px);
  z-index: 9500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.flatpickr-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.flatpickr-modal-open {
  overflow: hidden;
  touch-action: none;
}

body.flatpickr-modal-open input[data-datepicker],
body.flatpickr-modal-open input[data-datepicker-return],
body.flatpickr-modal-open input[data-datepicker-hourly] {
  caret-color: transparent;
}

@media (max-width: 720px) {
  .flatpickr-calendar--modal {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: min(92vw, 22rem) !important;
    max-height: calc(100vh - 3rem);
    overflow: hidden;
    z-index: 9600 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
  }

  .flatpickr-calendar--modal .flatpickr-innerContainer {
    overflow: auto;
    flex: 1 1 auto;
  }

  .flatpickr-calendar--modal .flatpickr-time {
    flex-shrink: 0;
  }

  .flatpickr-calendar--modal .flatpickr-months,
  .flatpickr-calendar--modal .flatpickr-weekdays,
  .flatpickr-calendar--modal .flatpickr-custom-actions {
    flex-shrink: 0;
  }

  .flatpickr-calendar--modal-active {
    opacity: 1;
    pointer-events: auto;
  }
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero__title span {
  display: block;
}

@media (max-width: 768px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--hero-cut-medium)), 0 100%);
  }
}

@media (max-width: 425px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--hero-cut-small)), 0 100%);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero {
    background-image: url('../img/hero/hero_768-1279.webp');
  }
}

@media (min-width: 960px) {
  .hero {
    width: min(100% - 4rem, 1400px);
    align-items: center;
  }

  .hero__form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: min(100% - clamp(4rem, 12vw, 9rem), 1100px);
    margin-inline: auto;
    order: 0;
    margin-top: clamp(-35rem, -40vw, -12rem);
    transform: none;
  }

  .hero__form .hero-form {
    max-width: 26rem;
    margin-left: auto;
  }
}

@media (min-width: 1280px) and (max-width: 1920px) {
  .hero {
    min-height: clamp(32rem, 68vh, 46rem);
    background-image: url('../img/hero/hero_1280-1920.webp');
  }
}

@media (min-width: 1921px) {
  .hero {
    min-height: clamp(34rem, 65vh, 50rem);
    background-image: url('../img/hero/hero_1921+.webp');
  }
}
.hero-form__select-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 1rem;
  height: 1rem;
  color: rgba(10, 86, 120, 0.6);
  pointer-events: none;
}

/*Services--------------------------------------------------------------------*/
.services {
  background: #ffffff;
  color: #0f1520;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  padding-bottom: clamp(3rem, 3vw + 2rem, 4.5rem);
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.services__intro {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

#services-heading {
  scroll-margin-top: clamp(4.5rem, 8vw, 6.5rem);
}

#fleet-heading {
  scroll-margin-top: clamp(4.5rem, 8vw, 6.5rem);
}

.services__title {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.services__lead {
  margin: 0;
  max-width: 70ch;
  text-align: center;
  color: rgba(15, 21, 32, 0.68);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.1rem);
  line-height: 1.7;
}

/*Fleet--------------------------------------------------------------------*/
.fleet {
  background: #ffffff;
  color: #0f1520;
  padding: 0 clamp(1.25rem, 4vw, 2.75rem) clamp(3rem, 3vw + 2rem, 4.5rem);
}

.fleet__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  row-gap: 0;
  column-gap: clamp(1.5rem, 4vw, 2.5rem);
}

.fleet__intro {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.fleet__title {
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: center;
}

.fleet__lead {
  margin: 0;
  max-width: 70ch;
  text-align: center;
  color: rgba(15, 21, 32, 0.68);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.1rem);
  line-height: 1.7;
}

.fleet__media {
  padding-inline: 10%;
  margin: 0;
}

.fleet__media picture,
.fleet__media img {
  display: block;
  width: 100%;
  height: auto;
}

.fleet__details {
  margin-top: 0;
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.fleet__details-title {
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f1520;
  margin: 0;
}

.fleet__details-subtitle {
  margin: 0;
  color: rgba(15, 21, 32, 0.68);
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
}

.fleet__details-meta {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  row-gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: rgba(15, 21, 32, 0.62);
  font-size: 0.95rem;
  font-weight: 500;
}

.fleet__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet__meta-icon {
  display: inline-flex;
  color: rgba(15, 21, 32, 0.62);
}

.fleet__meta-text {
  display: inline-block;
}

@media (min-width: 1024px) {
  .fleet__media {
    padding-inline: 20%;
  }
}


.cta {
  background: #f7f7f7;
  color: #0f1520;
  padding: clamp(3rem, 4vw + 2rem, 5rem) clamp(1.5rem, 5vw, 3rem);
}

.cta__container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-items: center;
  text-align: center;
}

.cta__headline {
  margin: 0;
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.cta__button {
  padding-inline: clamp(1.75rem, 2vw + 1.25rem, 3rem);
}

.cta__button:hover {
  transform: translateY(-1px);
}


.site-footer {
  --footer-padding-y: clamp(3.5rem, 6vw, 5.5rem);
  --footer-overlap: clamp(2.25rem, 5vw, 3.5rem);
  background: #0b0d13;
  color: rgba(255, 255, 255, 0.82);
  padding-top: calc(var(--footer-padding-y) + var(--footer-overlap));
  padding-bottom: var(--footer-padding-y);
  padding-inline: clamp(1.75rem, 6vw, 3.5rem);
  clip-path: polygon(0 var(--hero-cut-large), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--footer-overlap) * -1);
}

.site-footer__container {
  max-width: 920px;
  margin: 0 auto;
}

.site-footer__layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.site-footer__columns {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.3vw, 1.75rem);
  align-items: start;
}

@media (max-width: 960px) {
  .site-footer__layout {
    flex-direction: column;
    gap: clamp(0.9rem, 2.5vw, 1.6rem);
  }

  .site-footer__columns {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer__columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.site-footer__column--brand {
  gap: 0.8rem;
  flex: 1 1 240px;
  max-width: 260px;
}

.site-footer__brand {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__credit {
  margin: clamp(1.2rem, 2vw, 1.8rem) 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__credit-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: color 160ms ease, border-bottom-color 160ms ease;
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: currentColor;
}

.site-footer__contact {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  text-decoration: none;
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__contact-number {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__heading {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  transition: color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ffffff;
}

.site-footer__link::after {
  content: '';
  position: relative;
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
  align-self: flex-end;
}

.site-footer__link:hover::after,
.site-footer__link:focus-visible::after {
  width: 100%;
}

@media (max-width: 768px) {
  .site-footer {
    clip-path: polygon(0 calc(var(--hero-cut-medium) * 0.45), 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 425px) {
  .cta {
    padding-bottom: 4.25rem;
  }

  .site-footer {
    clip-path: polygon(0 calc(var(--hero-cut-small) * 0.32), 100% 0, 100% 100%, 0 100%);
  }
}

.legal-page {
  background: #ffffff;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 6vw, 3rem) clamp(5rem, 8vw, 7rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  color: #0f1520;
}

.legal__title {
  margin: 0;
  font-size: clamp(2.4rem, 2.1rem + 1.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.legal__section {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.legal__subsection {
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1.1rem);
}

.legal__section-title {
  margin: 0;
  font-size: clamp(1.25rem, 1.1rem + 1vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(15, 21, 32, 0.82);
}

.legal__subheading {
  margin: 0;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.2rem);
  font-weight: 600;
  color: rgba(15, 21, 32, 0.78);
}

.legal__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.legal__item {
  display: grid;
  gap: 0.25rem;
}

.legal__bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  line-height: 1.55;
  color: inherit;
}

.legal__term {
  font-weight: 600;
  color: rgba(15, 21, 32, 0.78);
}

.legal__description {
  margin: 0;
  line-height: 1.55;
}

.legal__paragraph {
  margin: 0;
  line-height: 1.55;
}

.legal__address {
  font-style: normal;
  line-height: 1.55;
}

.legal__link {
  color: rgba(30, 63, 126, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(30, 63, 126, 0.4);
}

.legal__link:hover,
.legal__link:focus-visible {
  color: rgba(18, 37, 74, 0.92);
  text-decoration-color: currentColor;
}

@media (max-width: 540px) {
  .legal {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }

  .legal__title {
    font-size: clamp(2.1rem, 1.8rem + 2vw, 2.6rem);
  }
}


.services__grid {
  list-style: none;
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  padding: 0;
  margin: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 40px rgba(4, 7, 16, 0.18);
  isolation: isolate;
  scroll-margin-top: clamp(5rem, 10vw, 7rem);
}

.services__media {
  margin: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #0f1520;
}

.services__media picture,
.services__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(8, 12, 22, 0.06) 12%, rgba(8, 12, 22, 0.6) 60%, rgba(8, 12, 22, 0.9) 100%);
  pointer-events: none;
  z-index: 0;
}

.services__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.8rem, 5vw, 2.35rem);
  display: grid;
  gap: 0.65rem;
  color: #ffffff;
  z-index: 1;
  text-align: left;
}

.services__card-title {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.55rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.services__card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services__card {
    border-radius: 16px;
  }
}

.services__cta {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
}
