:root {
  --bg: #050505;
  --panel: rgba(15, 15, 15, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: #b7b7b7;
  --yellow: #facc15;
  --yellow-dark: #d6a900;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.25);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e5e5e5;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.22);
}

/* Hero */

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 106px 0 112px;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1200ms ease, transform 6500ms ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.30) 72%, rgba(0, 0, 0, 0.10) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(250, 204, 21, 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
  color: #e7e7e7;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 14px 38px rgba(250, 204, 21, 0.24);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn.secondary:hover {
  border-color: rgba(250, 204, 21, 0.55);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 96px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(250, 204, 21, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: var(--yellow);
}

/* Trust cards */

.trust-section {
  position: relative;
  z-index: 30;
  margin-top: -78px;
  padding: 0 0 34px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, #050505 72px, #050505 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(250, 204, 21, 0.20);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.94), rgba(9, 9, 9, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--yellow);
  color: #000;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.22);
}

.trust-card h2 {
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.trust-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Section head */

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-head h2,
.booking-info h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.section-head p,
.booking-info p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

/* Services */

.services-section {
  position: relative;
  padding: 18px 0 36px;
  background: #050505;
  overflow: hidden;
}

.services-carousel {
  position: relative;
}

.services-viewport {
  overflow: hidden;
  border-radius: 30px;
}

.services-track {
  --cards-visible: 4;
  --service-gap: 16px;
  display: flex;
  gap: var(--service-gap);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.services-track.is-resetting {
  transition: none !important;
}

.service-card {
  flex: 0 0 calc((100% - (var(--service-gap) * (var(--cards-visible) - 1))) / var(--cards-visible));
  min-height: 258px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(250, 204, 21, 0.14);
  border: 1px solid rgba(250, 204, 21, 0.28);
  font-size: 28px;
}

.service-card h3 {
  margin: 22px 0 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.service-card p {
  min-height: 68px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.service-card a::after {
  content: "→";
  margin-left: 8px;
}

.services-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.services-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.services-arrow:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-2px);
}


/* Price calculator */

.price-section {
  position: relative;
  padding: 42px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 32%),
    #050505;
}

.price-calculator {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

.price-form-panel,
.price-result-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.price-form-panel {
  padding: 30px;
}

.calculator-grid {
  display: grid;
  gap: 16px;
}

.price-form-panel label {
  display: block;
}

.price-form-panel label > span {
  display: block;
  margin-bottom: 8px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 900;
}

.price-form-panel input,
.price-form-panel select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-form-panel input:focus,
.price-form-panel select:focus {
  border-color: rgba(250, 204, 21, 0.64);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.10);
}

.price-form-panel small {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.calculator-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calculator-reset {
  min-height: 52px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.calculator-reset:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-2px);
}

.price-result-panel {
  position: sticky;
  top: 112px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-result-panel > strong {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.price-per-passenger {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.price-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.price-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.price-details span {
  color: var(--muted);
  font-size: 14px;
}

.price-details strong {
  color: #fff;
  font-size: 14px;
  text-align: right;
}

.price-result-panel p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Booking */

.booking-section {
  padding: 38px 0 96px;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: start;
}

.booking-info {
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.direct-card {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(250, 204, 21, 0.28);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.34);
}

.direct-card span,
.direct-card small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.direct-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.direct-card small {
  margin-top: 10px;
  line-height: 1.5;
}

.booking-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(250, 204, 21, 0.10);
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.6;
}

.booking-note strong {
  color: var(--yellow);
}

.booking-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form label {
  display: block;
  margin-bottom: 16px;
}

.booking-form label > span,
.children-title strong {
  display: block;
  margin-bottom: 8px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 118px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(250, 204, 21, 0.64);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.10);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.children-box {
  margin: 8px 0 16px;
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.20);
}

.children-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.children-title span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.check-card {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.check-card input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--yellow);
}

.check-card span {
  margin: 0 !important;
}

.check-card strong,
.check-card small {
  display: block;
}

.check-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.child-fields {
  display: none;
}

.child-fields.is-visible {
  display: grid;
}

.submit-btn {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(250, 204, 21, 0.20);
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.form-small {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.12);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}


@media (max-width: 1100px) {
  .price-calculator {
    grid-template-columns: 1fr;
  }

  .price-result-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .price-section {
    padding: 34px 0 34px;
  }

  .price-form-panel,
  .price-result-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .calculator-options {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-result-panel > strong {
    font-size: 46px;
  }

  .price-details div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Tablet */

@media (max-width: 1100px) {
  .services-track {
    --cards-visible: 3;
  }

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

  .booking-info {
    position: relative;
    top: auto;
  }
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile */

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
  }

  .nav {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
    padding: 100px 0 120px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.92) 100%);
  }

  .hero-slide {
    background-position: center center;
  }

  .hero-content {
    max-width: none;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -0.045em;
  }

  .hero-text {
    font-size: 15.5px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
  }

  .hero-dots {
    bottom: 88px;
  }

  .trust-section {
    margin-top: -72px;
    padding-bottom: 26px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .trust-card h2 {
    font-size: 18px;
  }

  .services-section {
    padding-top: 14px;
  }

  .services-track {
    --cards-visible: 1;
    --service-gap: 14px;
  }

  .service-card {
    min-height: 238px;
    padding: 22px;
    border-radius: 26px;
  }

  .services-controls {
    justify-content: center;
  }

  .booking-section {
    padding: 64px 0 76px;
  }

  .booking-info,
  .booking-form {
    padding: 22px;
    border-radius: 28px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .direct-card a {
    font-size: 29px;
  }
}
/*
  Add this to the bottom of:
  public_html/new-site/assets/css/main.css
*/

.form-message.is-error {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}


/* About and coverage */

.about-section {
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.10), transparent 32%),
    #050505;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.about-content,
.about-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.about-content {
  padding: 34px;
}

.about-content h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.about-content > p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-points div {
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.24);
}

.about-points span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.about-points strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.about-points p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card-label {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(250, 204, 21, 0.36);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.about-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.about-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-card a {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
}

.coverage-section {
  padding: 42px 0 92px;
  background: #050505;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coverage-card {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.coverage-card span {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.coverage-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about-section {
    padding: 64px 0 54px;
  }

  .about-content,
  .about-card {
    padding: 22px;
    border-radius: 28px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    padding: 34px 0 72px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coverage-card {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }
}


/* Reduced section gaps */

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

.price-section {
  padding: 28px 0 28px;
}

.booking-section {
  padding: 28px 0 42px;
}

.about-section {
  padding: 38px 0 34px;
}

.coverage-section {
  padding: 28px 0 58px;
}

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

@media (max-width: 820px) {
  .services-section {
    padding-bottom: 18px;
  }

  .price-section {
    padding: 24px 0 24px;
  }

  .booking-section {
    padding: 28px 0 42px;
  }

  .about-section {
    padding: 34px 0 30px;
  }

  .coverage-section {
    padding: 24px 0 52px;
  }

  .section-head {
    margin-bottom: 16px;
  }
}


/* Contact and footer */

.contact-section {
  padding: 32px 0 44px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 34%),
    #050505;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.contact-content,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.contact-content {
  padding: 34px;
}

.contact-content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.contact-content p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: block;
  padding: 24px;
  border-radius: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.40);
}

.contact-card span {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-card strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.contact-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: #030303;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 28px;
  padding: 36px 0 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-inner p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact a:first-child {
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@media (max-width: 980px) {
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 28px 0 38px;
  }

  .contact-content,
  .contact-card {
    padding: 22px;
    border-radius: 28px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 0 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Mobile and tablet menu */

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 18px;
}

.mobile-menu-inner a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.mobile-menu-inner a:hover {
  border-color: rgba(250, 204, 21, 0.35);
  color: var(--yellow);
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 900;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    min-height: 76px;
  }
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .header-call {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }
}


/* Route based price calculator */

.route-calculator .calculator-grid {
  gap: 18px;
}

.form-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.route-stops-box {
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.20);
}

.route-stops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.route-stops-head strong,
.route-stops-head span {
  display: block;
}

.route-stops-head strong {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.route-stops-head span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.add-stop-btn,
.remove-stop-btn {
  border: 1px solid rgba(250, 204, 21, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.add-stop-btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.add-stop-btn:hover,
.remove-stop-btn:hover {
  background: var(--yellow);
  color: #000;
}

.route-stops-list {
  display: grid;
  gap: 12px;
}

.route-stop-item {
  display: grid;
  grid-template-columns: 42px 1fr 170px 42px;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.route-stop-item label {
  margin-bottom: 0;
}

.route-stop-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
}

.remove-stop-btn {
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
}

.route-calculate-btn {
  margin-top: 0;
}

.route-result-panel [data-price-total] {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .form-grid.three {
    grid-template-columns: 1fr;
  }

  .route-stops-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-stop-item {
    grid-template-columns: 1fr;
  }

  .route-stop-number,
  .remove-stop-btn {
    width: 100%;
  }

  .add-stop-btn {
    width: 100%;
  }
}


/* Route customer step */

.route-customer-step {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.route-customer-step[hidden] {
  display: none !important;
}

.route-customer-head h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.route-customer-head p {
  max-width: 760px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.route-customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-customer-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-customer-step label {
  display: block;
  margin-bottom: 16px;
}

.route-customer-step label > span,
.route-extra-title strong {
  display: block;
  margin-bottom: 8px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 900;
}

.route-customer-step input,
.route-customer-step select,
.route-customer-step textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  padding: 15px 16px;
}

.route-customer-step textarea {
  resize: vertical;
  min-height: 110px;
}

.route-extra-box {
  margin: 8px 0 16px;
  padding: 18px;
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.20);
}

.route-extra-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.route-extra-title span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.route-child-fields {
  display: none;
}

.route-child-fields.is-visible {
  display: grid;
}

.route-send-btn {
  margin-top: 4px;
}

.booking-single-card {
  padding: 32px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.booking-single-card h2 {
  margin: 10px 0 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.booking-single-card p {
  max-width: 700px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .route-customer-step {
    padding: 22px;
    border-radius: 28px;
  }

  .route-customer-grid,
  .route-customer-grid.two {
    grid-template-columns: 1fr;
  }
}
