/* RESET (minimal, intentional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background-color: #0b0b0b; /* carbon black */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  transition: padding 0.25s ease;
  align-items: stretch;
  justify-content: space-between;
}

/* LEFT GROUP */
.nav-left {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: gap 0.25s ease;
  flex: 1;
}

/* SITE TITLE */
.site-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: font-size 0.25s ease;
}

/* PAGE LINKS */
.nav-links {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
  --nav-links-offset: 40px;
  margin: 0 0 0 var(--nav-links-offset);
  width: fit-content;
  --nav-link-width: clamp(100px, 12vw, 110px);
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--nav-link-width);
  width: var(--nav-link-width);
  text-decoration: none;
  color: #d0d0d0;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0 10px;
  height: 100%;
  background: transparent;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, font-size 0.25s ease;
}

.nav-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-links a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: #fea710;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(254, 167, 16, 0.55);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  inset: -50% -20%;
  opacity: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.18) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
  animation: nav-glint 22s ease-in-out infinite;
  pointer-events: none;
}

/* CTA BUTTON */
.cta-button {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fea710;
  color: #111111;

  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;

  box-shadow:
    0 6px 14px rgba(254, 167, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: #fea710;
  box-shadow:
    0 7px 16px rgba(254, 167, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-button:active {
  transform: scale(0.97);
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  opacity: 0.08;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 244, 210, 0.12) 45%,
    rgba(255, 244, 210, 0.25) 50%,
    rgba(255, 244, 210, 0.12) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
  animation: button-glint 14s ease-in-out infinite;
  pointer-events: none;
}

.navbar .cta-button {
  padding: 10px 20px;
  font-size: 0.95rem;
  align-self: center;
  height: auto;
}


/* Navbar compact on scroll */
.navbar.is-compact {
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.navbar.is-compact .nav-inner {
  padding: 0 22px;
}

.navbar.is-compact .nav-left {
  gap: 12px;
}

.navbar.is-compact .site-title {
  font-size: 1.15rem;
  padding: 4px 0;
  margin-left: 0;
}

.navbar.is-compact .nav-links a {
  font-size: 0.92rem;
  padding: 0 14px;
}

.navbar.is-compact .nav-links {
  --nav-link-width: clamp(100px, 12vw, 110px);
  --nav-links-offset: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  --phone-collapsed: 44px;
  --phone-expanded: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  font-size: 0.95rem;
  align-self: center;
  height: auto;
  cursor: pointer;
  width: var(--phone-collapsed);
  min-width: var(--phone-collapsed);
  overflow: hidden;
  white-space: nowrap;
  margin-left: 0;
  position: relative;
  z-index: 2;
  transition: width 0.65s ease, margin-left 0.45s ease,
    box-shadow 0.4s ease;
}

.nav-phone.is-open {
  width: var(--phone-expanded);
  margin-left: calc(var(--phone-collapsed) - var(--phone-expanded));
  justify-content: flex-start;
}

.nav-phone-text {
  min-width: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(8px);
  transition: max-width 0.45s ease, opacity 0.3s ease,
    transform 0.3s ease, margin-left 0.45s ease;
  margin-left: 0;
}

.nav-phone.is-open .nav-phone-text {
  max-width: 200px;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

.nav-phone-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar.is-compact .nav-phone {
  --phone-collapsed: 40px;
  --phone-expanded: 150px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.navbar.is-compact .cta-button {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.navbar.is-compact .site-logo {
  width: 60px;
  height: 60px;
}

/* CONTENT (for scroll testing only) */
.content {
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;

  /* BACKGROUND IMAGE */
  background-image: url("../assets/images/hero-960.jpg");
  background-image: -webkit-image-set(
    url("../assets/images/hero-960.jpg") 1x,
    url("../assets/images/hero-1920.jpg") 2x
  );
  background-image: image-set(
    url("../assets/images/hero-960.jpg") 1x,
    url("../assets/images/hero-1920.jpg") 2x
  );
  background-size: cover;
  background-position: center bottom;
}

/* Optional: darken + blur "feel" */
.hero-overlay {
  position: absolute;
  inset: 0;

  /* This darkens the image a bit so text pops */
  background: rgba(0, 0, 0, 0.45);

  /* This adds a blur effect to what's behind the overlay */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-content {
  position: relative; /* so it sits above overlay */
  z-index: 1;

  max-width: 900px;
  padding: 80px 24px;
}

/* Big centered bold text */
.hero-title {
  font-size: clamp(2.2rem, 2.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Smaller detailed text */
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 auto 28px auto;
  max-width: 680px;
}

/* Buttons row */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Make the hero CTA a bit bigger than nav CTA */
.hero-cta {
  padding: 12px 24px;
  border-radius: 8px;
}

/* Transparent/blurry "glass" button */
.glass-button {
  text-decoration: none;
  color: #ffffff;

  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 220, 150, 0.28);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.25),
    inset 0 0 18px rgba(254, 167, 16, 0.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform 0.1s ease, background 0.2s ease, border-color 0.2s ease;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 220, 150, 0.45);
}

.glass-button:active {
  transform: scale(0.98);
}

/* BOOKING SECTION (white background) */
.booking-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff7e6 100%);
  color: #111111;
  padding: 70px 0;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

/* FORM CARD */
.form-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  --form-side-padding: 18px;
}

.form-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 44%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.18) 56%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
}
.form-card-header {
  position: relative;
  background: linear-gradient(135deg, #fea710 0%, #ffd27a 55%, #f6b33b 100%);
  color: #111111;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 16px var(--form-side-padding);
  font-size: 1.05rem;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.form-card-header::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  opacity: 0.28;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 244, 210, 0.25) 45%,
    rgba(255, 244, 210, 0.55) 50%,
    rgba(255, 244, 210, 0.25) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
  animation: button-glint 16s ease-in-out infinite;
  pointer-events: none;
}

.form-card-body {
  background: #f3f3f3; /* slightly grayed background */
  padding: 18px var(--form-side-padding);
  --form-field-height: 46px;
  --form-grid-gap: 14px;
  --vehicle-image-height: calc(var(--form-field-height) * 3 + var(--form-grid-gap) * 2);
}

.form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "fields vehicle"
    "actions vehicle";
  gap: 28px;
  align-items: stretch;
}

.form-fields {
  grid-area: fields;
  min-width: 0;
}

.form-actions {
  grid-area: actions;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--form-grid-gap) var(--form-grid-gap);
  margin-bottom: 16px;
}

.booking-advance {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 10px;
  width: fit-content;
  max-width: 420px;
}

.booking-note {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(17, 17, 17, 0.35);
  background: #fff7d6;
  color: #111111;
  font-size: 0.9rem;
  line-height: 1.3;
}

.booking-note-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.7);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex: 0 0 22px;
}

.booking-note-text strong {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.74rem;
}

.booking-note-text {
  white-space: nowrap;
}

.booking-advance-warning {
  display: block;
  color: #d93025;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.booking-advance-warning.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-card-body.advance-warning #date,
.form-card-body.advance-warning #time {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.18);
}

@media (max-width: 900px) {
  .booking-note-text {
    white-space: normal;
  }
}


.field {
  position: relative;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  min-height: var(--form-field-height);
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #ffffff;
  outline: none;
  font-size: 0.95rem;
}

.field input:focus {
  border-color: rgba(254, 167, 16, 0.9);
  box-shadow: 0 0 0 8px rgba(254, 167, 16, 0.22);
}

.field--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--form-field-height);
}

.field--checkbox label {
  margin-bottom: 0;
}

.field--checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-height: auto;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #ffffff;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field--checkbox input[type="checkbox"]::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #111111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}

.field--checkbox input[type="checkbox"]:checked {
  background: #fea710;
  border-color: rgba(0,0,0,0.18);
}

.field--checkbox input[type="checkbox"]:checked::after {
  transform: translateY(-1px) rotate(45deg) scale(1);
}

.field--checkbox input[type="checkbox"]:focus {
  outline: none;
  border-color: rgba(254, 167, 16, 0.9);
  box-shadow: 0 0 0 6px rgba(254, 167, 16, 0.22);
}

.field--spacer {
  min-height: var(--form-field-height);
  visibility: hidden;
}


/* Intl-tel-input */
.iti {
  width: 100%;
}

.iti__country-list {
  color: #111111;
  font-size: 0.9rem;
  z-index: 1200;
}

.form-submit {
  display: block;
  width: 100%;

  margin-top: 10px;

  padding: 10px 18px;             /* smaller */
  border-radius: 6px;

  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fea710;
  color: #111111;

  font-weight: 700;
  font-size: 0.9rem;

  border: 0;
  cursor: pointer;

  box-shadow:
    0 6px 14px rgba(254, 167, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
  background: #fea710;
  box-shadow:
    0 7px 16px rgba(254, 167, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.form-submit:active {
  transform: scale(0.97);
}

.form-submit::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  opacity: 0.08;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 244, 210, 0.12) 45%,
    rgba(255, 244, 210, 0.25) 50%,
    rgba(255, 244, 210, 0.12) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
  animation: button-glint 14s ease-in-out infinite;
  pointer-events: none;
}


/* Recaptcha */
.recaptcha-row {
  margin-top: 8px;
  margin-bottom: 8px;
}

.recaptcha-error {
  display: block;
  margin-top: 6px;
  color: #d93025;
  font-size: 0.82rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.recaptcha-error.is-visible {
  opacity: 1;
  visibility: visible;
}

/* RIGHT SIDE: VEHICLE IMAGE RADIO BUTTONS */
.vehicle-chooser {
  grid-area: vehicle;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.vehicle-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-bottom: 6px;
}

.vehicle-options {
  display: grid;
  gap: 14px;
  margin-top: -12px;
}

.vehicle-options--stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vehicle-option-wrap {
  position: relative;
}

.vehicle-option-wrap input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vehicle-option {
  position: relative;
  z-index: 0;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 180px) 1fr;
  gap: 14px;
  align-items: center;

  transition: transform 0.1s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-option > * {
  position: relative;
  z-index: 1;
}

.vehicle-option::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background-color: rgba(254, 167, 16, 0.03);
  background:
    radial-gradient(
      80% 110% at 20% 20%,
      rgba(255, 223, 140, 0.4),
      rgba(255, 223, 140, 0) 65%
    ),
    radial-gradient(
      120% 120% at 80% 70%,
      rgba(254, 167, 16, 0.3),
      rgba(254, 167, 16, 0) 70%
    ),
    linear-gradient(
      0deg,
      rgba(254, 167, 16, 0.08),
      rgba(254, 167, 16, 0.08)
    );
  box-shadow: inset 0 0 30px rgba(254, 167, 16, 0.18);
  filter: blur(0.5px);
  mix-blend-mode: normal;
}


.vehicle-media {
  position: relative;
  width: 100%;
  height: var(--vehicle-image-height);
  border-radius: 10px;
  overflow: hidden;
  background: #e9e9e9;
}

.vehicle-media::before {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 241, 200, 0.35) 45%,
    rgba(255, 241, 200, 0.6) 50%,
    rgba(255, 241, 200, 0.35) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translate(120%, 120%) skewX(-18deg);
  filter: blur(0.3px);
}

.vehicle-option img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;

  /* default grayed out */
  filter: grayscale(1) contrast(0.95) brightness(0.92);
  transition: filter 0.25s ease;
}

.vehicle-meta {
  display: grid;
  gap: 8px;
  align-content: center;
}

.vehicle-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(0,0,0,0.8);
}

.vehicle-capacity,
.vehicle-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
}

.vehicle-capacity svg,
.vehicle-detail svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vehicle-error {
  display: block;
  margin-top: 6px;
  color: #d93025;
  font-size: 0.82rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.vehicle-error.is-visible {
  opacity: 1;
  visibility: visible;
}

.vehicle-option.is-error {
  border-color: #d93025;
  box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.2);
}

/* Selected = regain color + subtle highlight */
.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option {
  border-color: rgba(254, 167, 16, 0.9);
  box-shadow: 0 0 0 8px rgba(254, 167, 16, 0.2);
}

.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option::after {
  opacity: 0.26;
  animation: vehicle-sheen 10s ease-in-out infinite;
}

.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option .vehicle-media::before {
  opacity: 0.45;
  animation: vehicle-glint 30s ease-in-out infinite;
}

.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option .vehicle-media {
  background: #ffffff;
}

.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option img {
  filter: none;
}

.vehicle-option:active {
  transform: scale(0.99);
}

@keyframes vehicle-sheen {
  0% {
    opacity: 0.22;
    filter: blur(0.55px) saturate(1.04);
  }
  35% {
    opacity: 0.5;
    filter: blur(0.38px) saturate(1.12);
  }
  70% {
    opacity: 0.32;
    filter: blur(0.6px) saturate(1.07);
  }
  100% {
    opacity: 0.22;
    filter: blur(0.55px) saturate(1.04);
  }
}

@keyframes vehicle-glint {
  0% {
    transform: translate(120%, 120%) skewX(-18deg);
    opacity: 0;
  }
  6% {
    opacity: 0.6;
  }
  12% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes button-glint {
  0% {
    transform: translate(120%, 120%) skewX(-18deg);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  16% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes nav-glint {
  0% {
    transform: translate(120%, 120%) skewX(-18deg);
    opacity: 0;
  }
  7% {
    opacity: 0.4;
  }
  14% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .form-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "fields"
      "vehicle"
      "actions";
  }

  .vehicle-option {
    grid-template-columns: 1fr;
  }

  .vehicle-media {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vehicle-option-wrap input[type="radio"]:checked + .vehicle-option::after {
    animation: none;
    opacity: 0.26;
  }
  .vehicle-option-wrap input[type="radio"]:checked + .vehicle-option .vehicle-media::before {
    animation: none;
    opacity: 0.22;
  }
  .cta-button::after,
  .form-submit::after {
    animation: none;
    opacity: 0.06;
  }
  .nav-links a::after {
    animation: none;
    opacity: 0.1;
  }

  .form-card.booking-highlight::after {
    animation: none;
    opacity: 0;
  }
}

/* Label when selected */
.vehicle-option-wrap input[type="radio"]:checked + .vehicle-option .vehicle-label {
  color: #111111;
}


.reveal-title {
        will-change: transform, opacity;
        opacity: 0;
        transform: translateY(24px);
}

.reveal-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-words {
  overflow: hidden; /* prevents slide-in overflow */
}

/* Each word */
.reveal-words span {
  display: inline-block;
  opacity: 0;
  transform: translateX(24px); /* from right */
}

.reveal-words.is-visible span {
  opacity: 1;
  transform: translateX(0);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

@keyframes cardPulse {
  0%   { box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 0 0 0 rgba(254, 167, 16,0); }
  35%  { box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 0 0 8px rgba(254, 167, 16,0.35); }
  70%  { box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 0 0 8px rgba(254, 167, 16,0.22); }
  100% { box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 0 0 0 rgba(254, 167, 16,0); }
}

@keyframes booking-glint {
  0% {
    transform: translate(120%, 120%) skewX(-18deg);
    opacity: 0.4;
  }
  0% {
    transform: translate(105%, 105%) skewX(-18deg);
    opacity: 0.6;
  }
  66% {
    transform: translate(0%, 0%) skewX(-18deg);
    opacity: 0.55;
  }
  100% {
    transform: translate(-120%, -120%) skewX(-18deg);
    opacity: 0;
  }
}

.form-card.booking-highlight {
  animation: cardPulse 1.1s ease-out 2;
}

.form-card.booking-highlight::after {
  animation: booking-glint 2.2s linear 0.4s 1 both;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.site-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: width 0.25s ease, height 0.25s ease;
}


/* KEY FEATURES */
.features-section {
  background: #f7f5f0;
  color: #111111;
  padding: 70px 0;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 32px;
}

.features-title {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.features-subtitle {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.98rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 32px;
}

.feature-card {
  text-align: center;
  padding: 8px 12px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fea710 0%, #ffd27a 60%, #fea710 100%);
  color: #111111;
  display: grid;
  place-items: center;
  margin: 0 auto 14px auto;
  box-shadow:
    0 10px 18px rgba(254, 167, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES PAGE */
.services-section {
  background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
  color: #111111;
  padding: 90px 0;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 36px;
}

.services-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.services-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 10px;
  text-align: left;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fea710 0%, #ffd27a 60%, #fea710 100%);
  color: #111111;
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 18px rgba(254, 167, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.service-text {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT PAGE */
.about-hero {
  background: #0d0d0d;
  color: #ffffff;
  padding: 90px 0 70px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.about-title {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.about-subtitle {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 560px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.about-stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.about-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-hero-card {
  background: #fea710;
  color: #111111;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.about-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-card-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(0, 0, 0, 0.8);
}

.rates-section {
  background: #f7f5f0;
  color: #111111;
  padding: 80px 0;
}

.rates-inner,
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rates-header,
.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.rates-title,
.faq-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 900;
}

.rates-subtitle,
.faq-subtitle {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.7);
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rate-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%);
  border-radius: 0 0 16px 16px;
  padding: 24px;
  border: 1px solid rgba(254, 167, 16, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(254, 167, 16, 0.95) 0%,
    rgba(255, 220, 150, 0.95) 50%,
    rgba(254, 167, 16, 0.95) 100%
  );
}

.rate-title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.9);
}

.rate-prices {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 72px;
}

.rate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rate-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.rate-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111111;
}

.rate-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
}

.faq-section {
  background: #ffffff;
  color: #111111;
  padding: 80px 0 90px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 18px;
  background: #f7f5f0;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 0.35s ease, opacity 0.35s ease,
    transform 0.35s ease;
}

.faq-answer p {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.faq-list details.is-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

/* PRIVACY PAGE */
.policy-section {
  background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
  color: #111111;
  padding: 90px 0;
}

.policy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-header {
  margin-bottom: 26px;
}

.policy-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.policy-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.policy-updated {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
}

.policy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.policy-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 24px 0 10px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin: 10px 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}

.policy-card ul,
.policy-card ol {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(0, 0, 0, 0.75);
}

.policy-card li {
  line-height: 1.6;
}

.policy-card a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.policy-card a:hover {
  color: #000000;
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .rates-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SECTION */
.contact-section {
  background: #f6c11a;
  color: #111111;
  padding: 80px 0;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: #f9d65a;
  border: 2px solid rgba(17, 17, 17, 0.6);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-field {
  position: relative;
}

.contact-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.4);
  background: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.2);
}

.contact-field input.error,
.contact-field textarea.error {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.18);
}

.contact-submit {
  justify-self: start;
  background: #111111;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s ease;
}

.contact-submit:hover {
  background: #000000;
}

.contact-submit:active {
  transform: scale(0.98);
}

.contact-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  opacity: 0.75;
  margin-bottom: 8px;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-text {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.contact-list a,
.contact-list span {
  color: #111111;
  text-decoration: none;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fbe07a;
  border: 2px solid rgba(17, 17, 17, 0.7);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* Checker divider */
.checker-divider {
  position: relative;
  height: 16px;
  background: #0b0b0b;
}

.checker-divider::before,
.checker-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background-image: linear-gradient(
    90deg,
    #fea710 0,
    #fea710 50%,
    #0b0b0b 50%,
    #0b0b0b 100%
  );
  background-size: 32px 8px;
  background-repeat: repeat;
  background-position: 0 0;
}

.checker-divider::before {
  top: 0;
}

.checker-divider::after {
  bottom: 0;
  background-position: 16px 0;
}

/* FOOTER */
.site-footer {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 90px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.footer-right {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer-right a.footer-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
}

.footer-right a.footer-button:hover {
  background: #ffffff;
  color: #0b0b0b;
  border-color: #ffffff;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    gap: 16px;
    justify-content: center;
  }
}

/* MOBILE TYPE + TAP TARGETS */
@media (max-width: 640px) {
  html {
    font-size: 18px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 16px;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links {
    margin: 0;
    height: auto;
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
    --nav-link-width: auto;
  }

  .nav-links a {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 100px;
    padding: 10px 12px;
    font-size: 1rem;
    border-left: 0;
    border-bottom: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links a + a {
    border-left: 0;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-phone {
    width: 100%;
    min-width: 0;
    --phone-collapsed: 100%;
    --phone-expanded: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .nav-phone.is-open {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .nav-phone-text {
    max-width: none;
    opacity: 1;
    transform: none;
    margin-left: 8px;
  }

  .nav-phone-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .nav-phone svg {
    width: 18px;
    height: 18px;
  }

  .hero-content {
    padding: 70px 20px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-button,
  .glass-button {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }

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

  .form-card-header {
    font-size: 1.15rem;
    padding: 18px var(--form-side-padding);
  }

  .form-card-body {
    --form-field-height: 54px;
    --form-grid-gap: 16px;
    padding: 20px var(--form-side-padding);
  }

  .field label {
    font-size: 0.95rem;
  }

  .field input,
  .field textarea {
    font-size: 1rem;
    padding: 14px 14px;
  }

  .field--checkbox label {
    font-size: 1rem;
  }

  .field--checkbox input[type="checkbox"] {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .booking-note {
    font-size: 1rem;
  }

  .booking-note-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
    flex: 0 0 26px;
  }

  .booking-advance-warning {
    font-size: 0.95rem;
  }

  .form-submit {
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 1rem;
    padding: 14px 14px;
  }

  .contact-field label {
    font-size: 0.9rem;
  }

  .contact-submit {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .contact-list {
    gap: 16px;
  }

  .contact-list li {
    font-size: 1rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-text,
  .services-subtitle,
  .service-text,
  .about-subtitle,
  .rate-note,
  .faq-answer p,
  .contact-text,
  .policy-card p {
    font-size: 1rem;
  }

  .footer-right a {
    font-size: 1rem;
    padding: 8px 10px;
  }

  .footer-right a.footer-button {
    padding: 10px 18px;
  }
}

/* Flatpickr styling tweaks to fit your theme */
.flatpickr-calendar {
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.08);
}

.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day.endRange:hover {
  background: #fea710;
  border-color: #fea710;
  color: #111;
}

.flatpickr-calendar .flatpickr-day.inRange {
  background: rgba(254, 167, 16, 0.25);
  border-color: transparent;
  color: #111;
}

.flatpickr-calendar .flatpickr-day.today:not(.selected),
.flatpickr-calendar .flatpickr-day.today:hover {
  border-color: #fea710;
  color: #111;
}

/* Make time picker arrows bigger & easier to click */
.flatpickr-time .flatpickr-am-pm,
.flatpickr-time .numInputWrapper {
  height: 48px; /* overall row height */
}

/* Increase clickable area */
.flatpickr-time .arrowUp,
.flatpickr-time .arrowDown {
  padding: 8px;
  width: 100%;
}

/* Scale the actual arrow icons */
.flatpickr-time .arrowUp svg,
.flatpickr-time .arrowDown svg {
  width: 16px;
  height: 16px;
  transform: scale(1.6); /* makes them feel “fatter” */
}

/* Optional: stronger hover feedback */
.flatpickr-time .arrowUp:hover,
.flatpickr-time .arrowDown:hover {
  background: rgba(254, 167, 16, 0.15);
}

/* Full-width field (spans both columns) */
.field--full {
  grid-column: 1 / -1;
}

/* Textarea styling (match inputs) */
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #ffffff;
  outline: none;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical; /* user can resize vertically only */
  min-height: var(--form-field-height);
}

.field textarea:focus {
  border-color: rgba(254, 167, 16, 0.9);
  box-shadow: 0 0 0 8px rgba(254, 167, 16, 0.22);
}

.field input,
.field textarea {
  border: 1px solid rgba(0, 0, 0, 0.14);
}

/* Only show errors after submit attempt */
.form-card-body.show-errors input:invalid:not(.touched),
.form-card-body.show-errors textarea:invalid:not(.touched) {
  border-color: #d93025; /* red */
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.18);
}

/* Red border class (bulletproof) */
.field input.error,
.field textarea.error,
.field select.error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.18);
}

.field input.error-text {
  color: #d93025;
}

.field-error {
  position: absolute;
  left: 0;
  top: -34px;
  display: none;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #d93025;
  background: #ffffff;
  color: #d93025;
  font-size: 0.78rem;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}

.field-error::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -7px;
  border-width: 7px 7px 0 7px;
  border-style: solid;
  border-color: #d93025 transparent transparent transparent;
}

.field-error::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: -6px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

.field-error.is-visible {
  display: block;
}


