/* ==========================================================================
   Acton Airport Car Service — main stylesheet
   ========================================================================== */

:root {
  --navy: #0c2a52;
  --navy-dark: #081b38;
  --gold: #f5a623;
  --gold-dark: #e0941a;
  --text-dark: #1c2a3a;
  --text-muted: #5b6b7f;
  --bg-light: #f7f8fa;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(12, 42, 82, 0.10);
  --shadow-sm: 0 4px 14px rgba(12, 42, 82, 0.08);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  /* Removed native smooth scroll because it conflicts with Lenis */
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  color: #cfe0f7;
  font-size: .82rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: #cfe0f7;
}

.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  background: transparent;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 50;
}

.navbar.is-static {
  position: relative;
  top: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}

.navbar.is-static .logo {
  color: var(--navy);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1rem;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  opacity: .8;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, opacity .15s ease;
}

.navbar.is-static .nav-links a {
  color: var(--text-dark);
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom-color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
}

.navbar.is-static .nav-toggle {
  color: var(--navy);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 20, 40, .55), rgba(6, 20, 40, .75)), url('/assets/img/hearo-banner.png');
  background-size: cover;
  background-position: center;
  padding: 150px 0 90px;
  color: var(--white);
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p.lead {
  color: #dbe6f5;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-centered {
  text-align: center;
  padding: 120px 0 80px;
}

.hero-centered .hero-badge {
  margin-bottom: 12px;
}

.hero-centered h1 {
  font-size: 3rem;
}

.hero-centered .lead {
  margin: 0 auto;
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.hero-call .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #cfe0f7;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  color: var(--text-dark);
}

.booking-tabs {
  display: flex;
  background: var(--bg-light);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}

.booking-tabs button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
}

.booking-tabs button.active {
  background: var(--gold);
  color: var(--navy-dark);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 600;
}

.field input,
.field select {
  border: 1px solid #e2e7ee;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .9rem;
  background: var(--bg-light);
  font-family: inherit;
  width: 100%;
}

.child-seat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-light);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: .85rem;
  font-weight: 600;
}

.switch {
  position: relative;
  width: 40px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #d7dee8;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: .2s;
}

.switch input:checked+.slider {
  background: var(--gold);
}

.switch input:checked+.slider::before {
  transform: translateX(18px);
}

.booking-fineprint {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   Happy clients / testimonials carousel
   ========================================================================== */
.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.google-badge {
  text-align: right;
  font-size: .8rem;
  color: var(--text-muted);
}

.google-badge strong {
  color: var(--text-dark);
  display: block;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.client-photo {
  height: 220px;
  background: linear-gradient(135deg, #c9d6e8, #9fb3cd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12, 42, 82, .5);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.client-body {
  padding: 18px 20px;
}

.client-body p {
  font-size: .9rem;
  margin-bottom: 14px;
}

.client-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating-pill {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7dee8;
}

.dots span.active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
}

/* ==========================================================================
   Two-column feature (safety / child seat section)
   ========================================================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.feature-gallery>*:first-child {
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}

.features-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
  margin: 60px 0 20px;
}

.features-icon-grid .icon-circle-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  color: var(--gold);
}

.features-icon-grid h5 {
  font-size: .8rem;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

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

.contact-wrapper {
  background: var(--navy-dark);
  border-radius: 12px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px;
}

.contact-info h2,
.contact-form h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info p,
.contact-form p {
  color: #cfe0f7;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-item .icon {
  background: var(--white);
  color: var(--navy-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--white);
}

.contact-item p {
  margin: 0;
  color: #cfe0f7;
  font-size: 0.9rem;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form .btn-white {
  background: var(--white);
  color: var(--navy-dark);
  width: 100%;
  padding: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.contact-form .btn-white:hover {
  opacity: 0.9;
}

.ph {
  border-radius: var(--radius);
  min-height: 120px;
  display: block;
  width: 100%;
  /*aspect-ratio: 16 / 10;*/
  object-fit: cover;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12, 42, 82, .5);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==========================================================================
   Fleet
   ========================================================================== */
.card-grid-3.fleet .ph {
  /* height: 190px; */
  border-radius: var(--radius) var(--radius) 0 0;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fleet-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-specs {
  display: flex;
  gap: 18px;
  margin: 14px 0 18px;
  font-size: .78rem;
  color: var(--text-muted);
}

.fleet-specs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.card-grid-3.services {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.service-card:hover,
.service-card.highlight {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card:hover h3,
.service-card.highlight h3 {
  color: var(--white);
}

.service-card p {
  font-size: .9rem;
  margin: 0;
}

.service-card:hover p,
.service-card.highlight p {
  color: #cfe0f7;
}

.services-cta {
  text-align: center;
  margin-top: 34px;
}

/* ==========================================================================
   Long distance rides
   ========================================================================== */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.route-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.route-card .ph {
  /*height: 160px;*/
  border-radius: 0;
}

.route-card h4 {
  text-align: center;
  padding: 14px 10px;
  font-size: .95rem;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-card .ph {
  height: 180px;
  border-radius: 0;
}

.blog-body {
  padding: 20px 22px;
}

.blog-meta {
  font-size: .75rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--text-muted);
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #c9d6e8;
}

/* ==========================================================================
   Areas we serve
   ========================================================================== */
.areas-serve {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.areas-serve h2 {
  color: var(--white);
}

.areas-serve p {
  color: #cfe0f7;
}

.city-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.city-pills span {
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: .88rem;
}

/* ==========================================================================
   Trusted / bottom testimonials over image
   ========================================================================== */
.trusted-section {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 27, 56, .55), rgba(8, 27, 56, .8)), url('/assets/img/end-testimonial.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 60px 0 80px;
}

.trusted-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 34px;
}

.trusted-header h2 {
  color: var(--white);
}

.quote-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.quote-mark {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.quote-card p {
  font-size: .88rem;
}

.quote-card strong {
  color: var(--navy);
}

.park-credit {
  text-align: right;
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--white);
  color: #013968;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(1, 57, 104, .1);
}

.footer-grid h4 {
  color: #013968;
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: .9rem;
}

.footer-grid ul li a:hover {
  color: var(--gold);
}

.footer-about .logo {
  color: #013968;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: .88rem;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
  align-items: flex-start;
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.payment-icons span {
  background: var(--white);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1, 57, 104, .1);
  color: #013968;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(1, 57, 104, .7);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {

  .card-grid-2,
  .card-grid-3,
  .card-grid-3.services,
  .card-grid-3.fleet {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .features-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .navbar {
    position: relative;
    top: 0;
    background: var(--navy-dark);
  }

  .navbar .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }

  .card-grid-2,
  .card-grid-3,
  .card-grid-3.services,
  .card-grid-3.fleet,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .clients-header,
  .blog-header,
  .trusted-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-badge {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 14px;
  }

  .features-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav drawer */
.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  flex-direction: column;
  padding: 20px 24px;
  gap: 16px;
}
/* Booking Modal */
.booking-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.booking-modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
}
.booking-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--white);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 10;
  transition: var(--transition);
}
.booking-modal-close:hover {
  background: var(--navy);
}
