html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
  }
  
  h1 {
    color: #333;
  }
  


  .site-header {
    text-align: center;
    padding: 30px 15px 10px;
  }
  
  .site-header h1 {
    margin-bottom: 5px;
    font-size: 28px;
  }
  
  .site-header p {
    margin-top: 0;
    color: #555;
  }
  
  .hero-logo {
    position: absolute;
    top: 24px;
    left: 32px;
    z-index: 20;
  }
  
  .hero-logo img {
    height: 60px;
    width: auto;
  }
  
  

  



  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* keep old behavior for legacy forms, but NOT the homepage clean hero widget */
  body:not(.home-page) .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .form-row-full {
    justify-content: center;
  }
  
  .form-group {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .form-group input,
  .form-group select {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  /* Button */
  .booking-button {
    padding: 10px 30px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    background: #111827; /* dark charcoal */
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  }
  
  .booking-button:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
  }

  
    /* =========================
   Quote page layout
   ========================= */

.quote-page {
    background-color: #f3f4f6;
    min-height: 100vh;
    margin: 0;
    padding: 40px 16px;
  }
  
  .quote-shell {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .quote-header {
    margin-bottom: 24px;
  }
  
  .quote-header h1 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #111827;
  }
  
  .quote-header p {
    margin: 0;
    color: #6b7280;
  }
  
  .quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 24px;
  }
  
  /* Main card (left) */
  .quote-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 24px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* Sidebar (right) */
  .quote-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 24px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .quote-section-title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #111827;
  }
  
  .quote-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
  }
  
  .quote-list li {
    padding: 4px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }
  
  .quote-list li:last-child {
    border-bottom: none;
  }
  
  .quote-label {
    font-weight: 600;
    color: #374151;
  }
  
  .quote-value {
    color: #111827;
  }
  
  /* Price styling */
  .quote-price-main {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 6px 0 4px;
  }
  
  .quote-price-note {
    font-size: 12px;
    color: #6b7280;
  }
  
  /* Breakdown list */
  .quote-breakdown {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    font-size: 14px;
  }
  
  .quote-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
  }
  
  .quote-breakdown-label {
    color: #4b5563;
  }
  
  .quote-breakdown-value {
    color: #111827;
  }
  
  /* Reserve button */
  .quote-reserve-form {
    margin-top: 16px;
  }
  
  .quote-reserve-button {
    width: 100%;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #111827;
    color: #ffffff;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  }
  
  .quote-reserve-button:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
  }
  
  /* Back link */
  .quote-back-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    color: #111827;
    text-decoration: none;
  }
  
  .quote-back-link:hover {
    text-decoration: underline;
  }

  .q-panel,
.q-input,
.q-textarea,
.q-select {
  box-sizing: border-box;
}

  
  /* Responsive – stack columns on smaller screens */
  @media (max-width: 900px) {
    .quote-layout {
      grid-template-columns: 1fr;
    }
  }

  .phone-invalid {
    border-color: #dc3545;      /* red border */
    outline: none;
  }
  
  .phone-error {
    color: #dc3545;             /* red text */
    font-size: 0.9rem;
    margin-top: 4px;
  }

  .autocomplete-dropdown {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  
  .autocomplete-option:hover {
    background-color: #f5f5f5;
  }

  /* Make all booking form inputs the same width */
.booking-form .form-group input[type="text"],
.booking-form .form-group input[type="number"],
.booking-form .form-group input[type="date"],
.booking-form .form-group input[type="time"],
.booking-form .form-group select {
  width: 100%;
  box-sizing: border-box;
}

.autocomplete-dropdown {
  font-size: 0.95rem;
}

.autocomplete-option:hover {
  background-color: #f2f2f2;
}
.notice-banner {
  background: #ffe9b3;
  border-left: 6px solid #ffb300;
  padding: 10px 14px;
  margin-bottom: 10px;   /* space below the banner */
  border-radius: 6px;
  font-size: 14px;
  color: #664000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.notice-banner p {
  margin: 0;
}
/* ===== Quote page modern form layout ===== */

.q-panel {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.q-panel-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.q-panel-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  color: #6b7280;
}

.q-form {
  display: grid;
  grid-template-columns: 1fr; /* default = 1 column (prevents squashing) */
  gap: 12px 16px;
  font-size: 14px;
}


.q-field {
  display: flex;
  flex-direction: column;
}

.q-field--full {
  grid-column: 1 / -1;
}

.q-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.q-input,
.q-textarea,
.q-select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 9px 11px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  background: #f9fafb;
}

.q-input:focus,
.q-textarea:focus,
.q-select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
  background: #ffffff;
}

.q-helper {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.q-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.q-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  width: 100%;
}

@media (min-width: 640px) {
  .q-btn-primary {
    width: auto;
    min-width: 220px;
  }
}

.q-secure-note {
  grid-column: 1 / -1;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

/* Smaller screens: stack fields nicely */
@media (max-width: 640px) {
  .q-form {
    grid-template-columns: 1fr;
  }
}

/* Only switch to 2 columns when there is enough space */
@media (min-width: 980px) {
  .q-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/*
@media (max-width: 768px) {
  .hero-text {
    margin: 60px 20px;
    text-align: center;
  }

  .hero-overlay {
    justify-content: center;
  }
}
*/


/*
@media (max-width: 768px) {
  .hero-logo {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-logo img {
    height: 48px;
  }
  
}
  */



.site-footer {
  border-top: 1px solid #eee;
  margin-top: 80px;
  padding: 30px 20px;
}

.footer-nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
}

.page-content img {
  margin: 20px 0 30px;
  border-radius: 8px;
}





.booking-bar-wrap {
  max-width: 1100px;
  margin: -40px auto 0;  /* overlap effect */
  padding: 0 20px;
}

.booking-bar {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.booking-bar-title {
  margin: 0 0 10px;
  font-size: 22px;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .landing-title {
    font-size: 30px;
  }

  .booking-bar-wrap {
    margin-top: -24px;
  }
}

/* =========================
   Landing pages: modern content styling
   ========================= */

   .landing-page .page-content{
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    line-height: 1.7;
    font-size: 16px;
  }
  
  /* Headings */
  .landing-page .page-content h2{
    margin: 34px 0 12px;
    font-size: 26px;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 14px;
  }
  
  .landing-page .page-content h2::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: #6BCF2E;


  }
  
  .landing-page .page-content h3{
    margin: 22px 0 8px;
    font-size: 18px;
    opacity: 0.9;
  }
  
  /* Paragraph rhythm */
  .landing-page .page-content p{
    margin: 0 0 14px;
    color: #111827;
  }
  
  .landing-page .page-content a{
    color: #55b81f;
    text-decoration: none;
    font-weight: 600;
  }
  .landing-page .page-content a:hover{
    text-decoration: underline;
    color: #6BCF2E;
  }
  
  /* Lists: clean, modern */
  .landing-page .page-content ul{
    margin: 10px 0 18px;
    padding: 0;
    list-style: none;
  }
  .landing-page .page-content ul li{
    margin: 10px 0;
    padding-left: 26px;
    position: relative;
  }
  .landing-page .page-content ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #10b981; /* green tick */
  }
  
  /* Blockquote: premium testimonial style */
  .landing-page .page-content blockquote{
    margin: 18px 0 26px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #111827;
  }
  
  /* Optional: “info callout” class you can use in content */
  .landing-page .page-content .callout{
    margin: 18px 0 26px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(14,165,233,0.25);
    background: rgba(14,165,233,0.08);
  }
  .landing-page .page-content .callout strong{
    color: #0369a1;
  }
  
  /* Responsive */
  @media (max-width: 768px){
    .landing-page .page-content h2{ font-size: 22px; }
  }
  
  .contact-strip{
    width: 100%;
    background: rgba(17,24,39,0.75);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  
  .contact-strip-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  
  .contact-strip a{
    color: #6BCF2E; /* CAB365 green */
    font-weight: 700;
    text-decoration: none;
  }
  .contact-strip a:hover{ text-decoration: underline; }
  
  .contact-dot{ opacity: 0.7; }
  
  @media (max-width: 520px){
    .contact-strip-inner{
      flex-direction: column;
      gap: 6px;
    }
    .contact-dot{ display: none; }
  }

  .hero-brand{
    position:absolute;
    top:16px;
    left:16px;
    z-index:60;
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  
  .hero-brand-logo{
    display:block;
    width:220px;
    max-width:40vw;
    height:auto;
  }
  
  .hero-contact{
    display: flex;
    align-items: center;
    gap: 10px;
  
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.3px;
  
    /* key visibility helpers */
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  }
  
  .hero-contact a{
    color: #ffffff;                 /* white for max contrast */
    text-decoration: none;
  }
  
  .hero-contact a:hover{
    text-decoration: underline;
  }
  
  /* Brand accent */
  .hero-contact a[href^="tel"]{
    color: #6BCF2E;                  /* CAB365 green */
  }
  
  .hero-contact .dot{
    color: rgba(255,255,255,0.85);
  }

  .hero-contact{
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
  }
  
  /* =========================
   About page: modern, premium styling
   ========================= */

.about-page .page-content{
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 20px 70px;
  line-height: 1.8;
  font-size: 16px;
  color: #111827;
}

.about-page .page-content h1{
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  margin-left: 100px;
}

.about-page .page-content h2{
  margin: 34px 0 12px;
  font-size: 26px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 14px;
}

.about-page .page-content h2::before{
  content:"";
  position:absolute;
  left:0;
  top:0.28em;
  width:4px;
  height:1.1em;
  border-radius:999px;
  background:#6BCF2E; /* CAB365 green */
}

.about-page .page-content h3{
  margin: 18px 0 8px;
  font-size: 18px;
  opacity: 0.92;
}

.about-page .page-content p{
  margin: 0 0 14px;
}

.about-page .page-content a{
  color: #55b81f;
  font-weight: 700;
  text-decoration: none;
}
.about-page .page-content a:hover{
  text-decoration: underline;
}

/* Lists: clean ticks */
.about-page .page-content ul{
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}
.about-page .page-content ul li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}
.about-page .page-content ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight: 900;
  color:#6BCF2E;
}

/* Nested lists (e.g. Heathrow terminals) should look normal */
.about-page .page-content ul ul{
  margin-top: 10px;
  margin-left: 18px;
}
.about-page .page-content ul ul li{
  padding-left: 18px;
}
.about-page .page-content ul ul li::before{
  content: "•";
  color: #111827;
  opacity: 0.5;
}

/* Testimonials: modern card */
.about-page .page-content blockquote{
  margin: 18px 0 26px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(107, 207, 46, 0.08);
  border: 1px solid rgba(107, 207, 46, 0.22);
  box-shadow: 0 10px 26px rgba(17,24,39,0.06);
}

/* CTA button area spacing */
.about-page .page-content .cta{
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 768px){
  .about-page .page-content h1{ font-size: 32px; }
  .about-page .page-content h2{ font-size: 22px; }
}

.about-page .about-card{
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px;
  margin: 18px 0 24px;
}

html, body{
  overflow-x: hidden;
}


/* ==========================
   MOBILE OVERRIDES – FINAL
   Keep this at the VERY END of style.css
   ========================== */
   @media (max-width: 768px) {

    /* Stop sideways "rubber band" / white edge drag */
    html, body {
      width: 100%;
      overflow-x: hidden;
    }
  
    .booking-form {
      gap: 12px !important;
    }
  
    .form-group input,
    .form-group select {
      font-size: 16px !important; /* prevents iOS zoom-on-focus */
    }
  
    /* Button should not be huge circle on mobile */
    .booking-button {
      width: 100% !important;
      border-radius: 14px !important;
    }
  }
  


/* ==========================
   HERO BRAND – MOBILE LAYOUT
   Phone + email on 2 lines
   ========================== */
   @media (max-width: 768px){

    .hero-contact{
      flex-direction: column;      /* stack vertically */
      align-items: flex-start;
      gap: 2px;
  
      font-size: 14px;             /* smaller on mobile */
      line-height: 1.2;
    }
  
    .hero-contact .dot{
      display: none;               /* remove separator */
    }
  
    .hero-brand-logo{
      width: 160px;                /* slightly smaller logo */
    }
  }

  /* ==========================
   NON-HERO PAGES (e.g. About)
   Push content below hero brand
   ========================== */
@media (max-width: 768px){

  body:not(.landing-page):not(.home-page) main{
    padding-top: 110px;
  }
}
/* ==========================================
   STATIC PAGES: brand header spacing
   (pages that include hero-brand but no hero image)
   ========================================== */
   .about-page main.page-content{
    padding-top: 120px; /* clears logo + contact pill */
  }
  
  /* Optional: a generic class you can reuse later */
  .static-page main.page-content{
    padding-top: 120px;
  }
  
  /* Mobile tuning */
  @media (max-width: 768px){
    .about-page main.page-content,
    .static-page main.page-content{
      padding-top: 130px; /* a bit more room on small screens */
    }
  }

  @media (max-width: 768px) {
    .quote-widget {
      margin-top: 16px;
    }
  }
  @media (min-width: 768px) {
    .js-scrollQuote { display: none; }
  }
  #home-quote-box { scroll-margin-top: 80px; }
  

  
  
  
  
/* =========================================
   Phase 5A homepage-only overrides
   ========================================= */

   .home-page .hero-brand {
     position: absolute;
     top: 20px;
     left: 24px;
     right: 24px;
     z-index: 30;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   
   .home-page .hero-brand-logo {
     width: 190px;
     height: auto;
   }
   
   .home-page .hero-contact {
     font-size: 16px;
     color: #fff;
   }
   
   .home-page .hero-contact a {
     color: #fff;
     text-decoration: none;
   }
   
   .home-page main {
     padding-top: 0 !important;
   }
   
   @media (max-width: 980px) {
     .home-page .hero-brand {
       top: 16px;
       left: 20px;
       right: 20px;
     }
   
     .home-page .hero-brand-logo {
       width: 170px;
     }
   
     .home-page .hero-contact {
       font-size: 14px;
     }
   }
   
   @media (max-width: 768px) {
     .home-page .hero-brand {
       top: 14px;
       left: 16px;
       right: 16px;
       align-items: flex-start;
       gap: 10px;
     }
   
     .home-page .hero-brand-logo {
       width: 150px;
     }
   
     .home-page .hero-contact {
       font-size: 13px;
       line-height: 1.35;
       text-align: right;
     }
   }

/* ── Trust strip ──────────────────────────────────────────────────────────── */

.trust-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
}

.trust-item {
  font-size: 0.84rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.trust-sep {
  color: #d1d5db;
  font-size: 0.84rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .trust-strip {
    padding: 12px 16px;
    gap: 8px 14px;
  }

  .trust-sep {
    display: none;
  }
}

/* ── Reviews section ──────────────────────────────────────────────────────── */

.reviews-section {
  padding: 36px 20px 56px;
  background: #f9fafb;
}

.reviews-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-section .section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 36px;
}

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

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.author-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
}

.author-info {
  min-width: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 1px;
}

.review-rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.star {
  font-size: 1rem;
  color: #d1d5db;
}

.star.filled {
  color: #f59e0b;
}

.review-text p {
  margin: 0;
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
}

.review-source {
  margin-top: auto;
}

.google-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 40px 16px 48px;
  }

  .reviews-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

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

/* ── Vehicle options page ─────────────────────────────────────────────────── */

.vehicle-options-page {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.vehicle-options-main {
  max-width: 1240px;
  margin: 0 auto;
  min-height: calc(100vh - 56px);
  padding: 104px 24px 56px;
}

.vehicle-funnel-hero {
  margin: 0 0 18px;
  padding: 24px 28px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #062a78 0%, #041d57 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(4, 29, 87, 0.22);
}

.vehicle-funnel-hero__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 12px;
}

.vehicle-funnel-hero__brand img {
  height: 26px;
  width: auto;
  display: block;
}

.vehicle-funnel-hero__brand span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vehicle-funnel-hero__step {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vehicle-funnel-hero__title {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.vehicle-funnel-hero__subtitle {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.vehicle-options-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.journey-card {
  flex: 1 1 400px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 24px 24px 22px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.journey-card__title {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.journey-card__meta {
  font-size: 14px;
  line-height: 1.65;
  color: #1f2937;
}

.journey-card__row + .journey-card__row {
  margin-top: 12px;
}

.journey-card__row--spaced {
  padding-top: 12px;
  border-top: 1px solid #eef2f7;
}

.journey-card__row--muted {
  color: #475569;
  opacity: 1;
}

.vehicle-options-list {
  flex: 1.9 1 660px;
}

.vehicle-options-list__title {
  margin: 4px 0 12px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
}

.vehicle-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.vehicle-trust-row__item {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}

.vehicle-options-empty {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vehicle-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.vehicle-card__image {
  width: 110px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card__image img {
  width: 100%;
  max-width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
}

.vehicle-card__details {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.vehicle-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid rgba(99, 102, 241, 0.14);
  color: #374151;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vehicle-card__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.vehicle-card__meta {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.6;
}

.vehicle-card__cta {
  min-width: 190px;
  text-align: right;
}

.vehicle-card__price {
  font-size: 30px;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

.vehicle-card__form {
  margin-top: 12px;
}

.vehicle-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.vehicle-card__button:hover {
  background: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .vehicle-options-main {
    padding-top: 118px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .vehicle-options-layout {
    gap: 16px;
  }

  .vehicle-funnel-hero {
    padding: 20px 18px 18px;
    margin-bottom: 18px;
  }

  .vehicle-funnel-hero__title {
    font-size: 1.8rem;
  }

  .vehicle-funnel-hero__subtitle {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .journey-card {
    padding: 18px;
  }

  .vehicle-card {
    padding: 16px;
    gap: 14px;
  }

  .vehicle-card__image {
    width: 90px;
    min-width: 90px;
  }

  .vehicle-card__image img {
    max-width: 90px;
  }

  .vehicle-card__cta {
    min-width: 140px;
  }

  .vehicle-card__price {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .vehicle-funnel-hero__step {
    margin-bottom: 12px;
  }

  .vehicle-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .vehicle-card__image,
  .vehicle-card__cta {
    width: 100%;
    min-width: 0;
  }

  .vehicle-card__image {
    justify-content: flex-start;
  }

  .vehicle-card__cta {
    text-align: left;
  }

  .vehicle-card__button {
    width: 100%;
  }

  .vehicle-trust-row {
    gap: 8px;
  }

  .vehicle-trust-row__item {
    width: 100%;
    white-space: normal;
  }
}