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

.gz-request-page,
.gz-request-page * {
  box-sizing: border-box;
}

.gz-request-page {
  margin: 0;
  overflow-x: hidden;
  background: #f2f3f5;
  color: #101e2a;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gz-request-shell--header {
  min-height: 0;
}

.gz-request-shell--footer {
  min-height: 420px;
  background: #101e2a;
}

.gz-request {
  --gzr-bg: #f2f3f5;
  --gzr-light: #f9f9f9;
  --gzr-ink: #101e2a;
  --gzr-muted: #71757b;
  --gzr-accent: #1897ec;
  --gzr-line: rgba(16, 30, 42, 0.15);
  --gzr-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gzr-bg);
}

.gz-request__hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  padding: 158px 0 112px;
  overflow: hidden;
  background: #f2f3f5;
  isolation: isolate;
}

.gz-request__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.35px;
  background: var(--gzr-line);
}

.gz-request__hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 30, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 30, 42, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7), transparent);
}

.gz-request__hero-inner,
.gz-request__booking-inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.gz-request__eyebrow {
  margin: 0 0 22px;
  color: rgba(16, 30, 42, 0.56);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gz-request__hero h1 {
  max-width: 1180px;
  margin: 0;
  color: var(--gzr-ink);
  font-size: clamp(52px, 6.8vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.078em;
  font-weight: 500;
}

.gz-request__hero h1 span {
  color: rgba(16, 30, 42, 0.23);
}

.gz-request__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(16, 30, 42, 0.66);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
  letter-spacing: -0.028em;
  font-weight: 500;
}

.gz-request__booking {
  position: relative;
  padding: clamp(72px, 7vw, 112px) 0 clamp(86px, 8vw, 128px);
  background:
    linear-gradient(180deg, #f2f3f5 0%, #f9f9f9 100%);
}

.gz-request__booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 5vw, 76px);
}

.gz-request__information {
  position: relative;
  top: auto;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.gz-request__notice {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-top: 1.35px solid var(--gzr-line);
}

.gz-request__notice:last-of-type {
  border-bottom: 1.35px solid var(--gzr-line);
}

.gz-request__notice-value,
.gz-request__notice-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gzr-ink);
  color: var(--gzr-light);
}

.gz-request__notice-value {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.gz-request__notice-icon {
  background: rgba(24, 151, 236, 0.08);
  color: var(--gzr-accent);
}

.gz-request__notice-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gz-request__notice h2 {
  margin: 1px 0 10px;
  color: var(--gzr-ink);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.gz-request__notice p,
.gz-request__information-note {
  margin: 0;
  color: var(--gzr-muted);
  font-size: 14px;
  line-height: 1.58;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.gz-request__information-note {
  display: none;
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid rgba(24, 151, 236, 0.7);
}

.gz-request__form-card {
  position: relative;
  width: min(920px, 100%);
  justify-self: center;
  padding: clamp(30px, 3.5vw, 54px);
  border: 1.35px solid var(--gzr-line);
  background: rgba(249, 249, 249, 0.92);
}

.gz-request__form-head {
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1.35px solid var(--gzr-line);
}

.gz-request__form-head p {
  margin: 0 0 12px;
  color: rgba(16, 30, 42, 0.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gz-request__form-head h2 {
  margin: 0;
  color: var(--gzr-ink);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.gz-request__form-head .gz-request__form-note {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--gzr-muted);
  font-size: 14px;
  line-height: 1.58;
  letter-spacing: -0.025em;
  font-weight: 500;
  text-transform: none;
}

.gz-request__success {
  margin-bottom: 26px;
  padding: 18px 20px;
  border-left: 3px solid #23855f;
  background: rgba(35, 133, 95, 0.08);
  color: #185f45;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.gz-request__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.gz-request__field {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.gz-request__field--wide {
  grid-column: 1 / -1;
}

.gz-request__field label,
.gz-request__privacy {
  color: rgba(16, 30, 42, 0.72);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.gz-request__field input,
.gz-request__field select {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 1.35px solid rgba(16, 30, 42, 0.18);
  border-radius: 0;
  padding: 0 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gzr-ink);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  transition:
    border-color 240ms var(--gzr-ease),
    box-shadow 240ms var(--gzr-ease),
    background-color 240ms var(--gzr-ease);
}

.gz-request__field input::placeholder {
  color: rgba(16, 30, 42, 0.36);
}

.gz-request__field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 52px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #101e2a 50%),
    linear-gradient(135deg, #101e2a 50%, transparent 50%),
    linear-gradient(to right, rgba(16, 30, 42, 0.12), rgba(16, 30, 42, 0.12));
  background-position:
    calc(100% - 22px) 25px,
    calc(100% - 16px) 25px,
    calc(100% - 48px) 0;
  background-size:
    6px 6px,
    6px 6px,
    1px 100%;
  background-repeat: no-repeat;
}

.gz-request__field select:required:invalid {
  color: rgba(16, 30, 42, 0.42);
}

.gz-request__field select option {
  padding: 14px 16px;
  background: #f9f9f9;
  color: #101e2a;
  font-weight: 500;
}

.gz-request__field select:hover {
  border-color: rgba(16, 30, 42, 0.34);
  background-color: #fff;
}

.gz-request__native-select--enhanced {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gz-request__custom-select {
  position: relative;
  width: 100%;
}

.gz-request__custom-select-trigger {
  appearance: none;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1.35px solid rgba(16, 30, 42, 0.18);
  border-radius: 0;
  padding: 0 17px 0 16px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(16, 30, 42, 0.42);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 240ms var(--gzr-ease),
    box-shadow 240ms var(--gzr-ease),
    background-color 240ms var(--gzr-ease),
    color 240ms var(--gzr-ease);
}

.gz-request__custom-select-trigger.has-value {
  color: var(--gzr-ink);
}

.gz-request__custom-select-trigger svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms var(--gzr-ease);
}

.gz-request__custom-select-trigger:hover {
  border-color: rgba(16, 30, 42, 0.34);
  background: #fff;
}

.gz-request__custom-select-trigger:focus-visible,
.gz-request__custom-select.is-open .gz-request__custom-select-trigger {
  outline: none;
  border-color: rgba(24, 151, 236, 0.74);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(24, 151, 236, 0.10);
}

.gz-request__custom-select-trigger[aria-invalid="true"] {
  border-color: rgba(182, 55, 55, 0.76);
}

.gz-request__custom-select.is-open .gz-request__custom-select-trigger svg {
  transform: rotate(180deg);
}

.gz-request__custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  display: grid;
  padding: 6px;
  border: 1.35px solid rgba(16, 30, 42, 0.16);
  background: rgba(249, 249, 249, 0.985);
  box-shadow: 0 24px 58px rgba(16, 30, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transform-origin: top center;
  transition:
    opacity 180ms var(--gzr-ease),
    visibility 180ms var(--gzr-ease),
    transform 240ms var(--gzr-ease);
}

.gz-request__custom-select.is-open .gz-request__custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.gz-request__custom-select--date .gz-request__custom-select-menu,
.gz-request__custom-select--time .gz-request__custom-select-menu,
.gz-request__custom-select--passengers .gz-request__custom-select-menu {
  max-height: 312px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.gz-request__custom-select--date .gz-request__custom-select-option,
.gz-request__custom-select--time .gz-request__custom-select-option,
.gz-request__custom-select--passengers .gz-request__custom-select-option {
  min-height: 48px;
}

.gz-request__custom-number {
  margin-top: 10px;
}

@media (min-width: 761px) {
  .gz-request__custom-select--passengers .gz-request__custom-number {
    position: absolute;
    inset: 0;
    z-index: 3;
    margin-top: 0;
  }
}

.gz-request__custom-select-option {
  appearance: none;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(16, 30, 42, 0.08);
  border-radius: 0;
  padding: 0 14px;
  background: transparent;
  color: rgba(16, 30, 42, 0.76);
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 200ms var(--gzr-ease),
    color 200ms var(--gzr-ease),
    padding-left 200ms var(--gzr-ease);
}

.gz-request__custom-select-option:last-child {
  border-bottom: 0;
}

.gz-request__custom-select-option:hover,
.gz-request__custom-select-option:focus-visible {
  outline: none;
  padding-left: 18px;
  background: rgba(16, 30, 42, 0.055);
  color: var(--gzr-ink);
}

.gz-request__custom-select-option[aria-selected="true"] {
  background: var(--gzr-ink);
  color: var(--gzr-light);
}

.gz-request__field input:focus,
.gz-request__field select:focus {
  border-color: rgba(24, 151, 236, 0.74);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(24, 151, 236, 0.10);
}

.gz-request__field input[aria-invalid="true"],
.gz-request__field select[aria-invalid="true"] {
  border-color: rgba(182, 55, 55, 0.76);
}

.gz-request__privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 4px;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
}

.gz-request__privacy input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gzr-ink);
}

.gz-request__privacy a {
  color: var(--gzr-ink);
  text-underline-offset: 3px;
}

.gz-request__form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid #b63737;
  background: rgba(182, 55, 55, 0.075);
  color: #8d2929;
  font-size: 13px;
  line-height: 1.48;
  font-weight: 600;
}

.gz-request__submit {
  appearance: none;
  width: min(100%, 330px);
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 8px;
  border: 1px solid rgba(16, 30, 42, 0.34);
  border-radius: 6px;
  padding: 0 25px 0 28px;
  background: rgba(16, 30, 42, 0.9);
  color: var(--gzr-light);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 22px 52px rgba(16, 30, 42, 0.16);
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 300ms var(--gzr-ease),
    background-color 300ms var(--gzr-ease),
    box-shadow 300ms var(--gzr-ease);
}

.gz-request__submit svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gz-request__submit:hover {
  transform: translateY(-2px);
  background: var(--gzr-ink);
  box-shadow: 0 28px 62px rgba(16, 30, 42, 0.22);
}

.gz-request__submit:focus-visible {
  outline: 3px solid rgba(24, 151, 236, 0.38);
  outline-offset: 4px;
}

.gz-request__submit[disabled] {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.gz-request__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.gz-request-page.is-shell-ready .gz-request-shell {
  min-height: 0;
}

@media (min-width: 761px) {
  .gz-request__notice:first-of-type {
    border-bottom: 1.35px solid var(--gzr-line);
  }
}

.gz-request-shell-error {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  background: #f9f9f9;
  border-bottom: 1px solid rgba(16, 30, 42, 0.12);
}

.gz-request-shell-error img {
  width: 160px;
  height: auto;
}

.gz-request-shell-error a {
  color: #101e2a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .gz-request__booking-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gz-request__information {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .gz-request__information-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .gz-request-shell--header {
    min-height: 0;
  }

  .gz-request__hero {
    min-height: 440px;
    padding: 132px 0 78px;
  }

  .gz-request__hero::after {
    display: none;
  }

  .gz-request__hero-inner,
  .gz-request__booking-inner {
    width: calc(100% - 28px);
  }

  .gz-request__eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .gz-request__hero h1 {
    font-size: clamp(40px, 9.5vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.07em;
  }

  .gz-request__lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.62;
  }

  .gz-request__booking {
    padding: 36px 0 78px;
  }

  .gz-request__booking-inner {
    gap: 112px;
  }

  .gz-request__information {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gz-request__notice {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 17px;
    padding: 25px 0;
  }

  .gz-request__notice-value,
  .gz-request__notice-icon {
    width: 58px;
    height: 58px;
  }

  .gz-request__notice-icon svg {
    width: 27px;
    height: 27px;
  }

  .gz-request__notice h2 {
    font-size: clamp(22px, 5.4vw, 26px);
    line-height: 1.06;
    letter-spacing: -0.06em;
    font-weight: 500;
  }

  .gz-request__information-note {
    display: block;
    margin-top: 22px;
  }

  .gz-request__form-head .gz-request__form-note {
    display: none;
  }

  .gz-request__form-card {
    padding: 27px 20px 30px;
  }

  .gz-request__form-head {
    margin-bottom: 30px;
    padding-bottom: 23px;
  }

  .gz-request__form-head h2 {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 500;
  }

  .gz-request__form {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .gz-request__field--wide,
  .gz-request__form-error,
  .gz-request__privacy,
  .gz-request__submit {
    grid-column: auto;
  }

  .gz-request__field input,
  .gz-request__field select {
    height: 56px;
    font-size: 16px;
  }

  .gz-request__custom-select-trigger {
    height: 56px;
    font-size: 16px;
  }

  .gz-request__custom-select-trigger:focus,
  .gz-request__custom-select-trigger:focus-visible,
  .gz-request__custom-select.is-open .gz-request__custom-select-trigger {
    outline: none;
    border-color: rgba(16, 30, 42, 0.28);
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .gz-request__submit {
    width: 100%;
    min-height: 60px;
  }
}

@media (max-width: 560px) {
  .gz-request__hero h1 {
    font-size: clamp(36px, 11.5vw, 54px);
  }

  .gz-request__form-head h2 {
    font-size: clamp(29px, 9vw, 42px);
  }
}

@media (max-width: 480px) {
  .gz-request__form-head h2 {
    font-size: clamp(29px, 9vw, 42px);
    letter-spacing: -0.065em;
  }
}

/* Tablet: layout piu vicino al mobile senza modificare mobile e desktop. */
@media (min-width: 761px) and (max-width: 1024px) {
  .gz-request__hero {
    min-height: 500px;
    padding: 138px 0 90px;
  }

  .gz-request__hero-inner,
  .gz-request__booking-inner {
    width: min(100% - 40px, 860px);
  }

  .gz-request__hero h1 {
    font-size: clamp(50px, 8vw, 74px);
    line-height: 0.96;
    letter-spacing: -0.07em;
  }

  .gz-request__lead {
    max-width: 660px;
    margin-top: 24px;
    font-size: 15.5px;
    line-height: 1.66;
  }

  .gz-request__booking {
    padding: 54px 0 86px;
  }

  .gz-request__booking-inner {
    gap: 58px;
  }

  .gz-request__information {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gz-request__notice {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 27px 0;
  }

  .gz-request__notice-value,
  .gz-request__notice-icon {
    width: 60px;
    height: 60px;
  }

  .gz-request__notice-icon svg {
    width: 28px;
    height: 28px;
  }

  .gz-request__notice h2 {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 500;
  }

  .gz-request__information-note {
    display: block;
    margin-top: 22px;
  }

  .gz-request__form-head .gz-request__form-note {
    display: none;
  }

  .gz-request__form-card {
    width: 100%;
    padding: 32px 26px 34px;
  }

  .gz-request__form-head {
    margin-bottom: 30px;
    padding-bottom: 23px;
  }

  .gz-request__form-head h2 {
    font-size: clamp(42px, 7vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 500;
  }

  .gz-request__form {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .gz-request__field--wide,
  .gz-request__form-error,
  .gz-request__privacy,
  .gz-request__submit {
    grid-column: auto;
  }

  .gz-request__field input,
  .gz-request__field select,
  .gz-request__custom-select-trigger {
    height: 56px;
    font-size: 16px;
  }

  .gz-request__submit {
    width: 100%;
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gz-request *,
  .gz-request *::before,
  .gz-request *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
