:root {
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-blue: #f4f8fb;
  --text: #1a1a1a;
  --muted: #5f6368;
  --muted-light: #7b8188;
  --border: #e6e8eb;
  --border-strong: #d9dde2;
  --blue: #0f4c81;
  --blue-dark: #0a3a63;
  --blue-soft: #eaf2f8;
  --gold: #d4af37;
  --gold-soft: #fbf5df;
  --success: #2e7d5b;
  --error: #b4232a;
  --shadow-sm: 0 8px 24px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 16px 40px rgba(26, 26, 26, 0.1);
  --radius: 12px;
  --shell: min(1160px, calc(100% - 40px));
  --section-y: clamp(72px, 9vw, 120px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--blue);
  color: #ffffff;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.glass {
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.07);
}

.nav {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo .brand-name {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
  transition: background 0.22s ease, color 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--blue);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-blue) 100%);
  padding: 150px 0 108px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(300px, 420px);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.hero-visual {
  position: relative;
  padding-bottom: 46px;
}

.hero-blob {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -24px;
  width: 92%;
  height: 92%;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--gold-soft) 100%);
  border-radius: 32px;
  transform: rotate(-4deg);
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 24px;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.booking-card {
  position: absolute;
  z-index: 2;
  left: -20px;
  bottom: 0;
  max-width: 290px;
  border-radius: var(--radius);
  padding: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 5.85rem);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.15;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.2);
}

.btn-ghost,
.btn-card {
  border-color: var(--blue);
  background: #ffffff;
  color: var(--blue);
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-card:hover,
.btn-card:focus-visible {
  background: var(--blue-soft);
}

.btn-card {
  width: 100%;
  margin-top: auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-badges li,
.driver-points span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  padding: 8px 13px;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
}

.booking-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.25;
}

.booking-card p {
  color: var(--muted);
}

.booking-card a {
  color: var(--blue);
  font-weight: 800;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 42px;
  place-items: start center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding-top: 8px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
}

.scroll-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  padding: var(--section-y) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.about-grid,
.driver-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}

.about-grid > *,
.driver-grid > *,
.faq-grid > *,
.contact-grid > *,
.hero-inner > * {
  min-width: 0;
}

.about-section,
.why-section,
.reviews-section,
.contact-section {
  background: #ffffff;
}

.cta-section + .contact-section {
  padding-top: 0;
}

.fleet-section,
.routes-section {
  background: var(--bg-soft);
}

.faq-section {
  background: var(--bg-white);
}

.about-copy {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
}

.about-copy p,
.contact-copy p,
.driver-copy p,
.feature p,
.route-card p,
.review-card p,
.faq-list p,
.footer-about p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 15px 0;
}

.detail-list div:last-child {
  padding-bottom: 0;
}

.detail-list dt {
  color: var(--muted-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--text);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.fleet-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.fleet-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 22px;
  padding: 26px;
}

.fleet-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.fleet-label {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: right;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.price.quote {
  max-width: 110px;
  color: var(--blue);
  font-size: 1.08rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
  border-top: 1px solid var(--border);
  padding: 12px 0;
  vertical-align: top;
}

.spec-table th {
  width: 96px;
  color: var(--muted-light);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  display: flex;
  flex: 1 1 300px;
  max-width: 350px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--blue);
  color: #ffffff;
  transform: scale(1.06);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-link span {
  transition: transform 0.22s ease;
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

.feature-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.feature,
.route-card {
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature:hover,
.route-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.feature-icon,
.route-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #eadca8;
  border-radius: 10px;
  background: var(--gold-soft);
  color: #9d7b13;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature h3,
.route-card h3 {
  margin-bottom: 9px;
}

.feature p,
.route-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.driver-section {
  border-block: 1px solid var(--border);
  background: var(--bg-blue);
  padding: var(--section-y) 0;
}

.driver-visual {
  position: relative;
}

.driver-photo {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.driver-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.driver-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 250px;
  border-radius: var(--radius);
  padding: 18px;
}

.driver-note strong,
.driver-note span {
  display: block;
}

.driver-note strong {
  color: var(--blue);
}

.driver-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.driver-copy h2 {
  margin-bottom: 20px;
}

.driver-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

/* Reviews: auto-scrolling marquee carousel */
.review-marquee {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 4px 22px 12px;
  animation: review-scroll 32s linear infinite;
}

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

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
}

.review-card {
  flex: 0 0 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  scroll-snap-align: start;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  display: inline-grid;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.review-head h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-route {
  color: var(--muted-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
}

.review-card p {
  font-size: 0.92rem;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 19px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-section {
  background: #ffffff;
  padding: 0 0 var(--section-y);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.06), rgba(212, 175, 55, 0.08)),
    #ffffff;
  padding: clamp(28px, 5vw, 48px);
}

.cta-card > div {
  flex: 1 1 320px;
}

.cta-card > .btn {
  flex: 0 0 auto;
}

.cta-card h2 {
  max-width: 740px;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
  outline: none;
}

.contact-link-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

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

.contact-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-link-label {
  color: var(--muted-light);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-link-value {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  overflow-wrap: break-word;
}

.contact-link-primary {
  background: var(--blue);
  border-color: var(--blue);
}

.contact-link-primary .contact-link-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.contact-link-primary .contact-link-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-link-primary .contact-link-value {
  color: #ffffff;
  font-size: 1.15rem;
}

.contact-link-primary:hover,
.contact-link-primary:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.btn.full,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--error);
  animation: shake 0.32s ease;
}

.form-row.is-valid input,
.form-row.is-valid textarea {
  border-color: var(--success);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.field-error {
  min-height: 1.1em;
  color: var(--error);
  font-size: 0.76rem;
  transition: opacity 0.2s ease;
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.char-counter {
  min-height: 1.1em;
  color: var(--muted-light);
  font-size: 0.76rem;
  white-space: nowrap;
}

.char-counter.is-near-limit {
  color: var(--error);
}

.form-note {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.form-note.success {
  color: var(--success);
}

.form-note.error {
  color: var(--error);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.enquiry-form.is-loading {
  pointer-events: none;
}

.enquiry-form.is-loading .btn {
  opacity: 0.78;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 64px 0 30px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-soft), var(--gold));
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(190px, 0.9fr) minmax(130px, 0.65fr) minmax(160px, 0.85fr);
  gap: 34px 28px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  width: fit-content;
  margin-bottom: 16px;
}

.footer-about p {
  max-width: 30ch;
  margin: 0 0 20px;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-call .footer-icon {
  color: var(--gold);
}

.footer-call:hover,
.footer-call:focus-visible {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.footer-col h2,
.footer-about .brand-name {
  position: relative;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.92rem;
}

.site-footer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer address {
  display: grid;
  gap: 14px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.35;
  min-width: 0;
}

.footer-item > span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.footer-icon svg {
  width: 15px;
  height: 15px;
}

.footer-col ul a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul a::before {
  content: "›";
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--gold);
  transition: opacity 0.2s ease, left 0.2s ease;
}

.footer-col ul a:hover::before,
.footer-col ul a:focus-visible::before {
  opacity: 1;
  left: -12px;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-item.footer-item a,
a.footer-item:hover,
a.footer-item:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  flex-wrap: wrap;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.reveal {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 32px, 1160px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 12px;
    box-shadow: var(--shadow-md);
    transform: none;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-menu.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px;
  }

  .hero {
    background: var(--bg-blue);
    padding: 126px 0 64px;
  }

  .hero-inner,
  .about-grid,
  .driver-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 56px;
  }

  .booking-card {
    max-width: 440px;
  }

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

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

  .service-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 24px, 1160px);
    --section-y: 72px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15.5px;
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 36px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 1.4px;
  }

  .nav-menu {
    inset: 74px 12px auto;
  }

  .hero {
    padding: 126px 0 72px;
  }

  .hero-visual {
    max-width: 320px;
    padding-bottom: 64px;
  }

  .booking-card {
    left: 0;
    max-width: 88%;
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-card .btn {
    width: 100%;
  }

  .trust-badges li {
    width: 100%;
  }

  .fleet-grid,
  .feature-grid,
  .route-grid,
  .enquiry-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 82vw;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fleet-head {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-card {
    align-items: stretch;
    justify-content: flex-start;
  }

  .cta-card > .btn {
    width: 100%;
  }

  .price {
    text-align: left;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .driver-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .footer-grid {
    gap: 26px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media,
  .reveal {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}
/* ---------------------------------------------------------
   Add-a-review button + dialog
--------------------------------------------------------- */

.review-cta {
  position: relative;
  gap: 11px;
  margin-top: 30px;
  padding: 8px 28px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  font-size: 0.96rem;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-cta:hover,
.review-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 76, 129, 0.34);
}

.review-cta-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold);
  transition: transform 0.25s ease, background 0.25s ease;
}

.review-cta:hover .review-cta-icon {
  background: var(--gold);
  color: var(--blue-dark);
  transform: rotate(-8deg);
}

.review-cta-icon svg {
  width: 16px;
  height: 16px;
}

.review-dialog {
  width: min(560px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-md);
}

.review-dialog::backdrop {
  background: rgba(15, 23, 32, 0.55);
  backdrop-filter: blur(2px);
}

.review-dialog[open] {
  animation: dialog-in 0.22s ease;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(26px, 5vw, 36px);
}

.review-form .form-row.full {
  grid-column: 1 / -1;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--bg-soft);
  color: var(--text);
}

.review-form h3 {
  padding-right: 30px;
}

.review-dialog-note {
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.star-rating {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.star-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--border-strong);
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

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

.star-btn.is-active {
  border-color: #eadca8;
  background: var(--gold-soft);
  color: var(--gold);
}

@media (max-width: 480px) {
  .star-btn {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
}

.review-loading {
  padding: 40px 20px;
  color: var(--muted-light);
  font-size: 0.9rem;
}
