:root {
  --yellow: #ffc21c;
  --yellow-deep: #f4a900;
  --ink: #101522;
  --muted: #7d879b;
  --line: #e3e7ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Outfit", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  height: 690px;
  overflow: hidden;
  background: #dceeff;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow-deep);
  text-decoration: none;
}

.brand-copy strong {
  display: block;
  color: #090b10;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand-copy b {
  color: #090b10;
}

.brand-copy small {
  display: block;
  margin-top: 7px;
  color: #151515;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.phone {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
  color: #07090e;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.phone span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 25px;
  transform: rotate(-12deg);
}

.hero-copy-block {
  position: absolute;
  top: 126px;
  right: max(5vw, calc((100% - 1140px) / 2));
  z-index: 2;
  width: min(520px, 45vw);
  color: #0c1019;
}

.hero-copy-block .eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy-block h1 {
  margin: 0;
  color: var(--yellow-deep);
  font-size: clamp(54px, 6vw, 83px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hero-copy-block h1 span {
  display: block;
  color: #05070b;
  font-size: 0.82em;
}

.hero-copy-block h2 {
  margin: 14px 0 0;
  font-size: 37px;
  font-weight: 800;
  line-height: 1;
}

.hero-copy-block > p:last-of-type {
  margin: 5px 0 0;
  font-size: 19px;
  font-weight: 500;
}

.price-stroke {
  display: inline-block;
  margin: 17px 0 0 42px;
  padding: 7px 22px 9px;
  background: var(--yellow);
  color: #101010;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-3deg);
  clip-path: polygon(2% 13%, 100% 0, 96% 89%, 0 100%);
}

.booking-wrap {
  position: relative;
  z-index: 10;
  width: min(660px, calc(100% - 44px));
  margin: -145px auto 0;
}

.booking-card {
  padding: 27px 32px 25px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 55px rgba(23, 30, 43, 0.12);
}

.form-heading h2 {
  margin: 0;
  color: #080b10;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 7px 0 18px;
  color: #252936;
  font-size: 17px;
}

.form-fields {
  display: grid;
  gap: 10px;
}

.field {
  position: relative;
  display: flex;
  height: 55px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.field svg {
  position: absolute;
  left: 19px;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #0e1931;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.field input,
.field select {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 18px 0 66px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
}

.field input::placeholder {
  color: #8993a7;
  opacity: 1;
}

.field select {
  color: #7f899d;
  cursor: pointer;
}

.field:focus-within {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 3px rgba(255, 194, 28, 0.16);
}

.request {
  display: flex;
  width: 100%;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 14px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(90deg, #ffbd12, #ffd02a);
  color: #090b10;
  font-size: 23px;
  font-weight: 800;
  cursor: pointer;
}

.request span {
  font-size: 35px;
  font-weight: 500;
}

.form-message {
  min-height: 0;
  margin: 10px 0 0;
  color: #536176;
  text-align: center;
}

.form-message:empty {
  display: none;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 27px;
  padding-bottom: 27px;
}

.benefits article {
  min-width: 0;
  text-align: center;
}

.benefit-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8df, #ffe6a5);
}

.benefit-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: #090b10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.benefits h3 {
  margin: 0 0 7px;
  color: #0b1326;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.benefits p {
  margin: 0;
  color: #7c879b;
  font-size: 14px;
  line-height: 1.2;
}

.trips-section {
  padding: 44px 0 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
}

.trips-head {
  margin-bottom: 24px;
}

.trips-kicker {
  margin: 0 0 5px !important;
  color: #d78d00 !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trips-head h2 {
  margin: 0;
  color: #090b10;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.trips-head p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 17px;
}

.trip-slider {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.trip-slider::-webkit-scrollbar {
  display: none;
}

.trip-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 10px 12px;
}

.trip-card {
  flex: 0 0 clamp(280px, 29vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(19, 29, 49, 0.07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(27, 33, 45, 0.1);
  scroll-snap-align: start;
}

.trip-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trip-card > div {
  padding: 17px 19px 19px;
}

.trip-card h3 {
  margin: 0;
  color: #0a0d14;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.trip-card p {
  margin: 3px 0 15px;
  color: #788397;
  font-size: 15px;
}

.trip-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.trip-card a span {
  color: #e49a00;
  font-size: 20px;
}

.rides-section {
  padding: 0 0 28px;
  background: #fff;
}

.car-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.car-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-left: 16px;
  animation: cars-loop 32s linear infinite;
  will-change: transform;
}

.marquee-copy {
  display: contents;
}

.car-card {
  flex: 0 0 210px;
  padding: 9px 10px 11px;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 25px rgba(21, 29, 43, 0.08);
  text-align: center;
}

.car-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}

.car-card h3 {
  margin: 5px 0 0;
  color: #111;
  font-size: 17px;
  font-weight: 500;
}

.car-marquee:hover .car-track,
.car-marquee:focus-within .car-track {
  animation-play-state: paused;
}

@keyframes cars-loop {
  to {
    transform: translateX(-50%);
  }
}

.dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 22px;
}

.dots i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #dfe1e5;
}

.dots i:first-child {
  background: var(--yellow);
}

.contact {
  padding: 29px max(24px, calc((100% - 1110px) / 2)) 18px;
  border-radius: 58px 58px 0 0;
  background: linear-gradient(120deg, #111, #202020);
  color: #fff;
}

.contact-row {
  display: grid;
  grid-template-columns: 1.2fr 1px 1fr;
  align-items: center;
  gap: 40px;
}

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

.contact-item,
.whatsapp {
  display: flex;
  align-items: center;
  gap: 18px;
}

.call-icon,
.wa-icon {
  display: grid;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
}

.call-icon {
  background: var(--yellow);
  color: #050505;
  transform: rotate(-12deg);
}

.wa-icon {
  border: 7px solid #00dd72;
  color: #00dd72;
  font-size: 41px;
  line-height: 1;
  transform: rotate(-25deg);
}

.contact small {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 400;
}

.contact strong {
  display: block;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.contact-divider {
  width: 1px;
  height: 78px;
  background: rgba(255, 255, 255, 0.45);
}

.whatsapp i {
  margin-left: auto;
  font-size: 62px;
  font-style: normal;
  font-weight: 200;
  line-height: 1;
}

.footer-meta {
  margin: 18px 0 0;
  color: #cfd1d5;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
  }

  .hero {
    height: 680px;
  }

  .hero-art {
    object-position: center;
  }

  .nav {
    width: calc(100% - 26px);
    gap: 8px;
    padding-top: 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand-copy strong {
    font-size: clamp(14px, 3.9vw, 18px);
    white-space: nowrap;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: clamp(9px, 2.7vw, 12px);
    white-space: nowrap;
  }

  .phone {
    gap: 6px;
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .phone span {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-copy-block {
    top: 83px;
    right: 13px;
    width: 53%;
  }

  .hero-copy-block .eyebrow {
    margin-bottom: 8px;
    font-size: clamp(7px, 2vw, 9px);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .hero-copy-block h1 {
    font-size: clamp(34px, 8.9vw, 40px);
    line-height: 0.9;
  }

  .hero-copy-block h2 {
    margin-top: 9px;
    font-size: clamp(23px, 6.6vw, 29px);
  }

  .hero-copy-block > p:last-of-type {
    margin-top: 3px;
    font-size: clamp(10px, 2.9vw, 13px);
    line-height: 1.15;
  }

  .price-stroke {
    margin: 11px 0 0 5px;
    padding: 6px 11px 7px;
    font-size: clamp(14px, 4.5vw, 19px);
  }

  .booking-wrap {
    width: calc(100% - 50px);
    margin-top: -40px;
  }

  .booking-card {
    padding: 20px 20px 19px;
    border-radius: 23px;
  }

  .form-heading h2 {
    font-size: 29px;
  }

  .form-heading p {
    margin: 5px 0 14px;
    font-size: 15px;
  }

  .form-fields {
    gap: 8px;
  }

  .field {
    height: 49px;
    border-radius: 8px;
  }

  .field svg {
    left: 15px;
    width: 22px;
    height: 22px;
  }

  .field input,
  .field select {
    padding-left: 52px;
    font-size: 15px;
  }

  .request {
    height: 57px;
    margin-top: 11px;
    font-size: 21px;
  }

  .benefits {
    width: calc(100% - 26px);
    gap: 7px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .benefit-icon {
    width: 61px;
    height: 61px;
    margin-bottom: 10px;
  }

  .benefit-icon svg {
    width: 31px;
    height: 31px;
  }

  .benefits h3 {
    min-height: 36px;
    font-size: clamp(12px, 3.6vw, 15px);
  }

  .benefits p {
    font-size: clamp(10px, 2.8vw, 12px);
  }

  .trips-section {
    padding: 31px 0 35px;
  }

  .trips-head {
    margin-bottom: 18px;
  }

  .trips-kicker {
    font-size: 10px !important;
  }

  .trips-head h2 {
    font-size: 31px;
  }

  .trips-head p {
    margin-top: 5px;
    font-size: 13px;
  }

  .trip-track {
    gap: 13px;
    padding-left: 10px;
  }

  .trip-card {
    flex-basis: min(78vw, 300px);
  }

  .trip-card {
    border-radius: 17px;
  }

  .trip-card > div {
    padding: 14px 15px 16px;
  }

  .trip-card h3 {
    font-size: 21px;
  }

  .trip-card p {
    margin-bottom: 11px;
    font-size: 14px;
  }

  .rides-section {
    padding-bottom: 22px;
  }

  .car-track {
    gap: 10px;
    padding-left: 10px;
    animation-duration: 27s;
  }

  .car-card {
    flex-basis: 142px;
    padding: 7px 7px 8px;
    border-radius: 10px;
  }

  .car-card img {
    height: 78px;
  }

  .car-card h3 {
    font-size: 15px;
  }

  .dots {
    gap: 10px;
    margin-top: 16px;
  }

  .dots i {
    width: 10px;
    height: 10px;
  }

  .contact {
    padding: 23px 12px 20px;
    border-radius: 44px 44px 0 0;
  }

  .contact-row {
    grid-template-columns: minmax(0, 1.25fr) 1px minmax(0, 1fr);
    gap: 8px;
  }

  .contact-item,
  .whatsapp {
    min-width: 0;
    gap: 7px;
  }

  .contact-item > span:last-child,
  .whatsapp > span:nth-child(2) {
    min-width: 0;
  }

  .call-icon,
  .wa-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .wa-icon {
    border-width: 4px;
    font-size: 24px;
  }

  .contact small {
    font-size: 12px;
  }

  .contact strong {
    font-size: clamp(14px, 4vw, 17px);
    white-space: nowrap;
  }

  .whatsapp strong {
    font-size: clamp(15px, 4.3vw, 18px);
  }

  .contact-divider {
    height: 54px;
  }

  .whatsapp i {
    margin-left: 2px;
    font-size: 32px;
  }

  .footer-meta {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero {
    height: 680px;
  }

  .hero-copy-block {
    width: 51%;
  }

  .booking-wrap {
    width: calc(100% - 30px);
  }
}

@media (max-width: 370px) {
  .phone b {
    display: none;
  }

  .contact {
    padding-inline: 9px;
  }

  .contact-row {
    gap: 6px;
  }

  .contact-item,
  .whatsapp {
    gap: 5px;
  }

  .call-icon,
  .wa-icon {
    width: 40px;
    height: 40px;
  }

  .contact small {
    font-size: 11px;
  }

  .contact-item strong {
    font-size: 13px;
  }

  .whatsapp strong {
    font-size: 15px;
  }

  .whatsapp i {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .car-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .car-track {
    animation: none;
  }
}
