/* =============================================
   MT Driving Lessons — style.css
   ============================================= */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1a4a7a;
  --blue-mid:    #1e5a99;
  --blue-light:  #e8f0fb;
  --accent:      #2a7de1;
  --accent-dark: #1a5db0;
  --teal:        #0f9a85;
  --dark:        #0f1923;
  --mid:         #4a5568;
  --muted:       #718096;
  --border:      #e2e8f0;
  --bg:          #f9fbff;
  --white:       #ffffff;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --max-w:       1100px;
  --header-h:    64px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

[hidden] { display: none !important; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: not-allowed; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(42,125,225,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(42,125,225,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  color: var(--white);
}

.btn-call {
  background: var(--accent);
  color: var(--white);
  font-size: .875rem;
  padding: 10px 18px;
  box-shadow: 0 3px 12px rgba(42,125,225,.3);
}
.btn-call:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(42,125,225,.3);
  flex-shrink: 0;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--accent);
  background: var(--blue-light);
}

.header-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 2px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.nav-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s;
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 20px;
}
.drawer-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--transition);
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { color: var(--accent); }
.drawer-call {
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background-image:
  linear-gradient(160deg,
    rgba(26, 74, 122, 0.90) 0%,
    rgba(13, 46, 90, 0.90) 50%,
    rgba(10, 32, 64, 0.90) 100%),
  url("background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* padding-bottom gives the absolutely-positioned scroll arrow room
     to sit inside the hero without being clipped */
  padding-bottom: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.shape-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -160px;
  right: -80px;
  opacity: .12;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  bottom: -100px;
  left: -80px;
  opacity: .14;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffffff, transparent 70%);
  top: 40%;
  left: 40%;
  opacity: .03;
}

/* Two-column hero layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr;
  align-items: center;
  gap: 40px;
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-style: italic;
  color: #7ec8f4;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.trust-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-bullets li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.trust-bullets li svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Car image */
.hero-car {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.car-img {
  width: 180%;
  max-width: 900px;
  position: relative;
  z-index: 2;
  /* screen blend removes the black background without losing colour */
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.6));
  animation: carFloat 5s ease-in-out infinite;
}

@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}


@keyframes glowPulse {
  0%, 100% { opacity: .55; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: .85; transform: translateX(-50%) scaleX(1.1); }
}

/* Scroll arrow — lives inside hero, bounces with translateY */
.scroll-arrow {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  text-decoration: none;
  animation: arrowBounce 2.4s ease-in-out infinite;
  transition: color .2s, border-color .2s;
}
/* Desktop default stays 100px via the base rule above */

/* iPad / tablets */
@media (max-width: 1024px) {
  .scroll-arrow {
    bottom: 60px; /* change to what looks right */
  }
}

/* phones */
@media (max-width: 480px) {
  .scroll-arrow {
    bottom: 28px; /* change to what looks right */
  }
}
.scroll-arrow:hover {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.5);
  text-decoration: none;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SECTION DEFAULTS
   ============================================= */
.section { padding: 88px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.15;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--white); }

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #c0d4f5;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  background: linear-gradient(160deg, #f0f6ff 0%, var(--bg) 100%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-cards--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-label {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 16px;
}
.pricing-amount span {
  font-size: 1.8rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--muted);
}

/* "Ask us" variant */
.pricing-amount--tbd {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 16px;
}
.pricing-tbd {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px dashed #b0ccf0;
  letter-spacing: -.01em;
}

.pricing-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: .05em;
}

.review-card blockquote {
  font-size: .92rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}

.review-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: auto;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: linear-gradient(160deg, #f0f6ff 0%, var(--bg) 100%);
}

.faq-container { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  list-style: none;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: transform .2s; }

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer a { color: var(--accent); }

/* =============================================
   BOOKING / CONTACT
   ============================================= */
.book { background: var(--white); }

.book-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.book-contact h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition),
              transform var(--transition);
}
.contact-link:hover { text-decoration: none; transform: translateX(3px); }

.contact-link--phone {
  background: var(--blue-light);
  color: var(--blue);
  border-color: #c0d4f5;
}
.contact-link--phone:hover { background: #d5e8ff; color: var(--blue); }

.contact-link--email {
  background: var(--bg);
  color: var(--mid);
}
.contact-link--email:hover { background: var(--border); color: var(--dark); }

.contact-area {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 20px;
  padding: 0 4px;
}
.contact-area svg { color: var(--accent); flex-shrink: 0; }

/* Form wrapper */
.book-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

/* Honeypot — visually hidden, off-screen */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
}

.req { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,125,225,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0aec0; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}

/* =============================================
   PILL SELECTORS (gender, contact, lessons)
   ============================================= */

/* Hide native inputs */
.pill input[type="radio"],
.pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--mid);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--blue-light);
}
.pill:has(input:checked),
.pill--selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(42,125,225,.28);
}

/* "Other" specify field */
.other-specify {
  display: none;
  width: 100%;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.other-specify.active {
  display: block;
  border-color: var(--accent);
}
.other-specify:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,125,225,.15);
}

/* Error state on pill groups */
.pill-group.error-group {
  outline: 1.5px solid #e53e3e;
  border-radius: var(--radius-sm);
  padding: 8px;
  background: rgba(229,62,62,.03);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 24px;
}

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Success message */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 24px;
  gap: 16px;
}
.form-success svg { color: var(--teal); }
.form-success h3 { font-size: 1.4rem; color: var(--dark); }
.form-success p { color: var(--muted); line-height: 1.6; }
.form-success a { color: var(--accent); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--accent) 100%);
  font-size: .95rem;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-copy p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* =============================================
   RESPONSIVE — 960px
   ============================================= */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* 3-card pricing: show 2 + 1 centred on second row */
  .pricing-cards--three {
    grid-template-columns: 1fr 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  .pricing-cards--three .pricing-card:last-child {
    grid-column: span 2;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Header: hide desktop nav, show hamburger */
  .nav-links,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero: stack vertically, car on top */
  .hero { padding-bottom: 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 24px;
  }
  .hero-car {
    order: -1;
    padding-bottom: 0;
  }
  .car-img { max-width: 520px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Pricing: single column */
  .pricing-cards,
  .pricing-cards--three {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-cards--three .pricing-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Reviews: 2 columns */
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .reviews-grid .review-card:last-child {
    grid-column: span 2;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }

  /* Book form */
  .book-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .book-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 28px; }

  .section { padding: 64px 0; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-bullets { flex-direction: column; gap: 12px; }
  .car-img { max-width: 520px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .pricing-cards,
  .pricing-cards--three { max-width: 100%; }
}

/* =============================================
   SCROLL-IN ANIMATIONS
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: fadeSlideUp .7s cubic-bezier(.22,1,.36,1) both;
  }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .service-card,
  .review-card,
  .pricing-card,
  .faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease,
                box-shadow var(--transition), border-color var(--transition),
                transform var(--transition);
  }
  .service-card.visible,
  .review-card.visible,
  .pricing-card.visible,
  .faq-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-mark--img {
  padding: 0;
  background: #1a3a5c;
}

.logo-road-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* iOS Safari tap/click reliability fixes */
@supports (-webkit-touch-callout: none) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@supports (padding: max(0px)) {
  .section.book {
    padding-bottom: max(88px, env(safe-area-inset-bottom));
  }
}


/* =================================================
   Header social icons + header-right layout
   ================================================= */
.header-right{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Override old alignment rules now that we have .header-right */
.nav-links { margin-left: 0; }
.nav-toggle { margin-left: 0; }

.social-links{
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.social-link svg{
  width: 18px;
  height: 18px;
  display: block;
}

.social-link:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.social-link--facebook{
  background: #1877F2;
  color: #fff;
}

.social-link--google{
  background: #fff;
  color: #4285F4;
  border: 1px solid rgba(0,0,0,.12);
}

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

/* Booking contact extra line */
.contact-area--base{
  margin-top: 10px;
  opacity: .92;
}

/* =================================================
   Footer location + embedded map
   ================================================= */
.footer-location-title{
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.footer-address{
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-map-link{
  color: rgba(255,255,255,.85);
  font-weight: 600;
  text-decoration: none;
}
.footer-map-link:hover{ color: var(--white); }

.footer-map{
  padding: 8px 0 28px;
}

.footer-map-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  box-shadow: var(--shadow-md);
}

.footer-map-info{
  padding: 18px 18px;
}

.footer-map-title{
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 6px;
}

.footer-map-sub{
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.45;
}

.footer-map-embed{
  min-height: 240px;
}

.footer-map-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive tweaks */
@media (max-width: 768px){
  .footer-map-card{
    grid-template-columns: 1fr;
  }
  .footer-map-embed{
    min-height: 260px;
  }
}

/* Map embed under "Serving ..." in booking left column */
.contact-base{
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 10px;
  padding: 0 4px;
}
.contact-base svg{
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-map{
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.contact-map iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

@media (max-width: 768px){
  .contact-map iframe{ height: 260px; }
}

/* Hours of operation block (left booking column) */
.contact-hours{
  margin-top: 14px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow-sm);
}

.contact-hours-title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-hours-title svg{
  color: var(--accent);
  flex-shrink: 0;
}

.hours-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-list li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .92rem;
  color: var(--muted);
}

.hours-list li span:last-child{
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.hours-list--short { display: none; }
/* Align bottom edges of the two booking boxes */
.book-layout{
  align-items: stretch;
}

.book-form-wrap{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.book-form-wrap .form-card{
  flex: 1;
}


/* If you have min-height forcing too much vertical centering, relax it */
.hero{
  min-height: auto !important;
}

/* Ensure hero buttons are always clickable */
.hero-actions { position: relative; z-index: 10; }
.hero-car, .car-img { pointer-events: none; }

@media (max-width: 768px) {
  /* Form appears above Contact & Info on mobile */
  .book-layout {
    display: flex;
    flex-direction: column;
  }
  .book-form-wrap {
    order: -1;
  }
  .book-contact {
    order: 1;
  }
  /* Hide map on mobile */
  .contact-map {
    display: none;
  }
  /* Show simplified hours on mobile, hide full list */
  .hours-list--full { display: none; }
  .hours-list--short { display: grid; }
}

.contact-base--link {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-base--link:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-area--hide-mobile,
  .contact-base {
    display: none;
  }
}