/* Global Styles */
:root {
    /* BestCabs frontend palette aligned with approved admin theme */
    --brand-shell: #022b3a;
    --brand-primary: #1f7a8c;
    --brand-primary-hover: #166678;
    --brand-soft: #bfdbf7;
    --brand-surface-muted: #e1e5f2;
    --brand-white: #ffffff;

    /* Compatibility brand aliases */
    --primary-blue: var(--brand-primary);
    --primary-blue-dark: var(--brand-primary-hover);
    --primary-blue-light: color-mix(in srgb, var(--brand-soft) 48%, #ffffff 52%);

    /* Backgrounds & surfaces */
    --bg-slate: #ffffff;
    --surface-white: var(--brand-white);
    --surface-variant: var(--brand-surface-muted);

    /* Text colors */
    --text-main: #0f2430;
    --text-muted: #51697a;
    --text-hint: #8aa0af;

    /* Status colors */
    --status-success: #1f9d67;
    --status-warning: #d98f1d;
    --status-error: #d64550;
    --info-color: #2f7dbf;

    /* Borders & dividers */
    --border-color: #c9d7e2;

    /* Typography */
    --font-family: "Figtree", sans-serif;

    /* Compatibility aliases for existing frontend styles */
    --primary-color: var(--primary-blue);
    --primary-dark: var(--primary-blue-dark);
    --secondary-color: var(--brand-shell);
    --dark-color: var(--text-main);
    --light-color: var(--surface-white);
    --gray-color: var(--text-muted);
    --light-gray: #fdfefe;
    --danger-color: var(--status-error);
    --warning-color: var(--status-warning);
    --success-color: var(--status-success);
    --box-shadow: 0 18px 36px rgba(31, 122, 140, 0.12),
                  0 8px 18px rgba(2, 43, 58, 0.08);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background-image: url("/img/hero-bg1.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    
    /* Brighten the image directly */
    filter: brightness(1.1); /* Values: 1 = normal, 1.5 = 50% brighter */
}

.hero-heathrow {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/heathrow.jpeg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-luton {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/luton.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-stansted {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/stansted.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-gatwick {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/gatwick.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bournemouth {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/bournemouth.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    color: var(--light-color);
    text-align: left;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gray-color);
}

/* Modern Booking Card Styling */

/* ============================================
   MODERN BOOKING FORM CSS - UPDATED VERSION
   ============================================ */

/* ============================================
   CUSTOM PROPERTIES (CSS Variables)
   ============================================ */

:root {
    /* Primary Colors */
    --theme-yellow: var(--primary-blue);
    --theme-yellow-glow: rgba(31, 122, 140, 0.3);
    
    /* Background Colors (with transparency) */
    --form-bg-color: rgba(2, 43, 58, 0.9);    /* 95% opacity */
    --input-bg-color: rgba(255, 255, 255, 0.94);    /* light surface */
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-muted: #51697a;
    
    /* Border Radius */
    --border-radius-xl: 20px;                    /* Extra large corners */
    --border-radius-md: 10px;                    /* Medium corners */
  }
  
  /* ============================================
     BOOKING CARD COMPONENT
     ============================================ */
  
  /**
   * Booking Card - Glassmorphism styled form container
   * Features: Transparent background, blur effects, glowing border
   * 
   * @state :hover - Elevates card with enhanced glow and shadow
   */
  
  .booking-card {
    /* Layout & Sizing */
    max-width: 420px;
    width: 100%;
    padding: 30px;
    
    /* Typography */
    font-family: var(--font-family-sans);
    color: var(--text-white);
    
    /* Visual Effects - Glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    
    /* Border & Corners */
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--theme-yellow-glow);
    
    /* Shadow & Glow Effects */
    box-shadow: 
      /* Outer glow */
      0 0 20px var(--theme-yellow-glow),
      /* Inner glow */
      inset 0 0 20px rgba(31, 122, 140, 0.12);
    
    /* Animation */
    transition: all 0.3s ease;
  }
  
  /* Hover State - Enhanced visual feedback */
  .booking-card:hover {
    /* Transform */
    transform: translateY(-4px);
    
    /* Enhanced Shadow & Glow */
    box-shadow: 
      /* Enhanced outer glow */
      0 0 30px var(--theme-yellow-glow),
      /* Enhanced inner glow */
      inset 0 0 20px rgba(31, 122, 140, 0.12),
      /* Drop shadow for elevation */
      0 20px 40px rgba(0, 0, 0, 0.5);
  }

/* Form Title */
.booking-form h3 {
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    padding: 0;
    text-align: left;
}

/* Modern Trip Type Toggle (One Way / Return) */
.booking-tabs,
.trip-toggle-container {
    display: flex;
    background-color: var(--input-bg-color);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 25px;
}

.tab-button,
.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-muted);
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-button:hover:not(.active),
.toggle-btn:hover:not(.active) {
    color: var(--light-color);
}

.tab-button.active,
.toggle-btn.active {
    background-color: var(--theme-yellow);
    color: #000000;
    font-weight: 600;
}

/* Form Layout */
.booking-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.booking-form .form-group,
.booking-form .input-group {
    flex: 1;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
}

.booking-form label,
.booking-form .input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 4px;
    transition: color 0.2s ease;
}

.booking-form .form-group:focus-within label,
.booking-form .input-group:focus-within .input-label {
    color: var(--theme-yellow);
}

/* Modern Input Field Wrapper with Icon */
.booking-form .input-field-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--input-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.booking-form .input-field-wrapper:hover {
    border-color: rgba(31, 122, 140, 0.35);
    background-color: rgba(255, 255, 255, 0.12);
}

.booking-form .input-field-wrapper:focus-within {
    border-color: var(--theme-yellow);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(31, 122, 140, 0.14);
}

/* Field Icons */
.booking-form .field-icon {
    color: var(--theme-yellow);
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Input Fields - Enhanced Modern Style */
.booking-form input,
.booking-form select,
.booking-form .form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    background-color: var(--input-bg-color);
    transition: var(--transition);
    color: var(--text-white);
    font-family: inherit;
    outline: none;
}

/* When input is inside input-field-wrapper, remove border and background */
.booking-form .input-field-wrapper input,
.booking-form .input-field-wrapper select,
.booking-form .input-field-wrapper .form-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
}

.booking-form input:hover,
.booking-form select:hover {
    border-color: rgba(31, 122, 140, 0.35);
    background-color: rgba(255, 255, 255, 0.15);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--theme-yellow);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(31, 122, 140, 0.14);
}

.booking-form input::placeholder,
.booking-form select::placeholder,
.booking-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Select field specific styling */
.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23CFCFCF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    background-size: 12px;
    padding-right: 35px;
}

.booking-form select option {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px;
}

/* Connector Line & Dot (Pickup to Drop-off visual) */
.connector-visual {
    position: relative;
    height: 24px;
    margin-left: 24px;
    margin-bottom: 15px;
}

.connector-visual::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    bottom: -5px;
    width: 2px;
    background-color: var(--theme-yellow);
    opacity: 0.6;
}

.connector-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--theme-yellow);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--theme-yellow);
}

/* Modern Search/Quote Button */
.search-button,
.get-quote-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
    
    background-color: transparent;
    border: 2px solid var(--theme-yellow);
    border-radius: var(--border-radius-md);
    color: var(--theme-yellow);
    
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(31, 122, 140, 0.1);
}

.search-button:hover,
.get-quote-button:hover {
    background-color: var(--theme-yellow);
    color: #ffffff;
    box-shadow: 0 0 20px var(--theme-yellow-glow);
    transform: translateY(-2px);
}

.search-button:active,
.get-quote-button:active {
    transform: translateY(0);
}

/* Google Review Block */
.google-review-block {
    background-color: var(--input-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo-placeholder {
    width: 40px;
    height: 40px;
    background: conic-gradient(from 180deg at 50% 50%, #E94235 0deg, #FABB05 73.13deg, #34A853 150deg, #4285F4 226.88deg, #E94235 360deg);
    border-radius: 50%;
    flex-shrink: 0;
}

.review-text-content .review-title {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: var(--text-white);
}

.review-score {
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 5px;
    color: var(--text-white);
}

.review-stars {
    color: var(--theme-yellow);
    margin-right: 8px;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Return Form Styling */
.booking-form.hidden {
    display: none;
}

.return-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Via Toggle Styling */
.via-toggle {
    color: var(--secondary-color) !important;
    font-size: 13px;
    cursor: pointer;
    margin: 8px 0;
    text-align: right;
    display: block;
    font-weight: 600;
}

.via-toggle:hover {
    color: var(--light-color) !important;
}

.via-toggle i {
    margin-right: 4px;
    font-size: 10px;
}

/* Via Section Styling */
.via-section,
.return-via-section {
    margin: 12px 0;
    position: relative;
}

.via-section.hidden,
.return-via-section.hidden {
    display: none;
}

.via-section input,
.return-via-section input {
    width: 100%;
    padding: 10px 30px 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    background-color: var(--input-bg-color);
    transition: var(--transition);
    color: var(--light-color);
    box-sizing: border-box;
}

.via-section input:hover,
.return-via-section input:hover {
    border-color: rgba(31, 122, 140, 0.35);
    background-color: rgba(255, 255, 255, 0.15);
}

.via-section input:focus,
.return-via-section input:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 2px rgba(31, 122, 140, 0.14);
}

/* Remove Via Button */
.remove-via {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: rgba(229, 57, 53, 0.8);
    border: none;
    color: var(--light-color);
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: var(--transition);
}

.remove-via:hover {
    background: var(--danger-color);
    transform: translateY(-50%) scale(1.1);
}

/* Date and Time Input Styling */
.booking-form input[type="date"],
.booking-form input[type="time"] {
    position: relative;
    color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease;
    filter: invert(1);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
    .booking-card {
        padding: 25px;
        width: 100%;
        max-width: 100%;
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .booking-form h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .booking-card {
        padding: 20px;
    }

    .booking-form h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-tabs,
    .trip-toggle-container {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .tab-button,
    .toggle-btn {
        flex: 1 1 50%;
        margin: 0 !important;
        border-radius: 25px;
        text-align: center;
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .booking-card {
        padding: 18px;
    }

    .search-button,
    .get-quote-button {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    background-color: rgba(31, 122, 140, 0.1);
    color: var(--secondary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* Destinations Section */
.destinations {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.destinations h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.destination-item:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.destination-image h3 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--light-color);
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* App Download Section */
.app-download {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.app-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--gray-color);
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-button {
    background-color: var(--primary-dark);
    color: var(--light-color);
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.app-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    max-height: 400px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.testimonial-item {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--light-gray);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.rating {
    color: var(--warning-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
    align-items: start;
}

/* Service Areas column: split list into 2 compact sub-columns so
   the column height matches the rest of the footer instead of
   stretching the whole row. */
.footer-column--areas .footer-areas-list {
    column-count: 2;
    column-gap: 16px;
}
.footer-column--areas .footer-areas-list li {
    break-inside: avoid;
    margin-bottom: 6px;
}
.footer-column--areas .footer-areas-list li a {
    font-size: 13px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 1;
    font-size: 14px;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 1;
    transition: opacity 0.3s;
    font-size: 14px;
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.7;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--surface-white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: var(--surface-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.footer-tagline {
    max-width: 300px;
    color: rgba(226, 232, 240, 0.84) !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}

.footer-contact-line {
    color: rgba(226, 232, 240, 0.82) !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
}

.footer-contact-line strong,
.office-location strong {
    color: var(--surface-white);
}

.footer-column h4 {
    margin-bottom: 22px;
}

.footer-column ul {
    padding-left: 0;
    list-style: none;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods i {
    font-size: 28px;
    opacity: 0.8;
    color: var(--gray-color);
}

/* Popular Routes Section */
.popular-routes {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.route-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.route-card ul {
    list-style: none;
    padding: 0;
}

.route-card li {
    margin-bottom: 8px;
}

.route-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.route-card a:hover {
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.feature-card:hover h3,
.feature-card:hover .feature-icon {
    color: var(--secondary-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s;
}

/* Testimonials Slider */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-color);
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    color: var(--gray-color);
}

/* Fleet Section */
.our-fleet {
    padding: 60px 0;
    background-color: var(--light-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-card h3 {
    padding: 15px 20px 0;
    font-size: 20px;
    color: var(--dark-color);
}

.vehicle-card ul {
    list-style: none;
    padding: 15px 20px 20px;
}

.vehicle-card li {
    margin-bottom: 8px;
    color: var(--gray-color);
    font-size: 14px;
}

.vehicle-card i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: var(--dark-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: var(--light-gray);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--secondary-color);
}

.faq-question.active::after {
    content: "-";
    color: var(--secondary-color);
}

.faq-question.active {
    background: var(--primary-color);
    color: var(--light-color);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-color);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    color: var(--dark-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .booking-card {
        width: 90%;
        max-width: 350px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-column--areas {
        grid-column: span 2;
    }
    .footer-column--areas .footer-areas-list {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-column--areas {
        grid-column: span 1;
    }
    .footer-column--areas .footer-areas-list {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .booking-card {
        padding: 14px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        color: var(--light-color);
    }

    .hero-text p {
        font-size: 1rem;
        color: var(--gray-color);
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .routes-grid,
    .features-grid,
    .testimonials-slider,
    .fleet-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .route-card,
    .feature-card,
    .testimonial-card,
    .vehicle-card,
    .step-card {
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        box-shadow: var(--box-shadow);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 0 0 15px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .booking-tabs {
        display: flex;
        flex-direction: row !important;  /* Force horizontal layout */
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .tab-button {
        flex: 1 1 50%;            /* Each tab takes 50% width */
        margin: 0 !important;     /* Remove any margins that cause wrapping */
        border-radius: 6px;
        text-align: center;
    }
}

/* Google Reviews Badge Styling */
.google-reviews-badge {
    display: block;
    margin: 20px auto 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 350px;
}

.google-reviews-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.reviews-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.reviews-text {
    flex: 1;
    color: white;
}

.reviews-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.rating-number {
    font-weight: 700;
    font-size: 16px;
}

.stars {
    color: #FFA500;
    letter-spacing: 1px;
}

.review-count {
    opacity: 0.9;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .google-reviews-badge {
        padding: 10px 16px;
        max-width: 100%;
    }
    
    .google-icon {
        width: 28px;
        height: 28px;
    }
    
    .reviews-title {
        font-size: 13px;
    }
    
    .reviews-rating {
        font-size: 12px;
    }
    
    .rating-number {
        font-size: 14px;
    }
}

/* === CENTRALIZED FRONTEND VIEW STYLES START === */

/* Source: airports/bournemouth.blade.php.backup */
:root {
        --primary-color: var(--primary-blue);
        --primary-dark: var(--primary-blue-dark);
        --secondary-color: var(--brand-shell);
        --dark-color: var(--text-main);
        --light-color: var(--surface-white);
        --gray-color: var(--text-muted);
        --light-gray: var(--surface-variant);
        /* Light Gray (backgrounds if needed) */
        --danger-color: var(--status-error);
        /* Standard red for errors */
        --warning-color: var(--status-warning);
        /* Optional warning color */
        --success-color: var(--status-success);
        /* Success green */
        --box-shadow: 0 18px 36px rgba(31, 122, 140, 0.12),
            0 8px 18px rgba(2, 43, 58, 0.08);
        --border-radius: 8px;
        --transition: all 0.3s ease;
    }

    .our-fleet {
        padding: 100px 0;
        background-color: var(--light-gray);
        position: relative;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--secondary-color);
        border-radius: 3px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--dark-color);
        max-width: 600px;
        margin: 0 auto 60px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.3px;
        opacity: 0.8;
    }

    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .vehicle-card {
        background: var(--light-color);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        border: 1px solid var(--light-gray);
    }

    .vehicle-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }

    .vehicle-image-container {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

    .vehicle-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .vehicle-card:hover .vehicle-image {
        transform: scale(1.05);
    }

    .vehicle-content {
        padding: 28px;
    }

    .vehicle-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark-color);
    }

    .vehicle-specs {
        display: flex;
        gap: 24px;
        margin-bottom: 20px;
    }

    .spec-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--dark-color);
        font-weight: 500;
    }

    .spec-item i {
        color: var(--secondary-color);
    }

    .vehicle-features {
        list-style: none;
        margin-bottom: 24px;
        padding: 0;
    }

    .vehicle-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        margin-bottom: 10px;
        color: var(--dark-color);
    }

    .vehicle-features i {
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
    }

    .vehicle-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 18px;
        border-top: 1px solid var(--light-gray);
    }

    .starting-from {
        font-size: 12px;
        color: var(--dark-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
    }

    .vehicle-price {
        font-size: 24px;
        font-weight: 700;
        color: var(--secondary-color);
    }

    .vehicle-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--secondary-color);
        color: var(--dark-color);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.7px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .vehicle-badge.family-badge {
        background-color: var(--primary-color);
        color: var(--light-color);
    }

    .vehicle-badge.vip-badge {
        background-color: var(--primary-color);
        color: var(--light-color);
    }

    .vehicle-badge.group-badge {
        background-color: var(--warning-color);
        color: var(--dark-color);
    }

    .fade-in {
        animation: fadeIn 0.8s ease forwards;
        opacity: 0;
    }

    .delay-1 {
        animation-delay: 0.2s;
    }

    .delay-2 {
        animation-delay: 0.4s;
    }

    .delay-3 {
        animation-delay: 0.6s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .quote-loader {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(13, 27, 42, 0.9);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .quote-loader .spinner {
        width: 60px;
        height: 60px;
        border: 6px solid var(--primary-color);
        border-radius: 50%;
        border-top-color: var(--secondary-color);
        border-bottom-color: var(--secondary-color);
        animation: spin 1s ease-in-out infinite;
        margin-bottom: 15px;
    }

    .quote-loader span {
        color: var(--light-color);
        font-size: 18px;
        font-weight: 500;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .seo-heathrow-content {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    }

    .hero-content-section {
        text-align: center;
        margin-bottom: 80px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary-color);
        color: var(--light-color);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-content-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
        color: var(--dark-color);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.8;
    }

    .intro-text {
        max-width: 900px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.8;
        color: var(--dark-color);
        font-weight: 500;
    }

    .steps-section {
        margin-bottom: 80px;
    }

    .steps-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .step-card {
        background: var(--light-color);
        padding: 40px 30px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        transition: var(--transition);
        position: relative;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .step-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        font-size: 24px;
    }

    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--warning-color);
        color: var(--dark-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
    }

    .step-card h4 {
        font-size: 20px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 15px;
    }

    .step-card p {
        color: var(--dark-color);
        line-height: 1.6;
        opacity: 0.8;
    }

    .why-choose-section {
        margin-bottom: 80px;
    }

    .why-choose-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: var(--light-color);
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        border-left: 4px solid var(--secondary-color);
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        background: var(--primary-color);
    }

    .feature-card:hover .feature-icon {
        background: var(--secondary-color);
        color: var(--dark-color);
    }

    .feature-card:hover h4 {
        color: var(--light-color);
    }

    .feature-card:hover p {
        color: var(--light-color);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-color);
        font-size: 20px;
        margin-bottom: 20px;
        transition: var(--transition);
    }

    .feature-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 10px;
        transition: var(--transition);
    }

    .feature-card p {
        color: var(--dark-color);
        line-height: 1.6;
        opacity: 0.8;
        transition: var(--transition);
    }

    .fleet-showcase {
        margin-bottom: 80px;
        background: var(--light-color);
        padding: 60px 40px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .fleet-showcase h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .fleet-item {
        text-align: center;
        padding: 30px 20px;
        border-radius: var(--border-radius);
        background: var(--light-gray);
        transition: var(--transition);
    }

    .fleet-item:hover {
        background: var(--primary-color);
        color: var(--light-color);
        transform: translateY(-3px);
    }

    .fleet-item:hover .fleet-icon {
        background: var(--secondary-color);
        color: var(--dark-color);
    }

    .fleet-item:hover h4 {
        color: var(--light-color);
    }

    .fleet-item:hover p {
        color: var(--light-color);
    }

    .fleet-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light-color);
        font-size: 20px;
        margin: 0 auto 20px;
        transition: var(--transition);
    }

    .fleet-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--dark-color);
        transition: var(--transition);
    }

    .fleet-item p {
        color: var(--dark-color);
        opacity: 0.8;
        transition: var(--transition);
    }

    .how-it-works {
        margin-bottom: 80px;
    }

    .how-it-works h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .process-flow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-step {
        background: var(--light-color);
        padding: 30px 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        min-width: 200px;
        flex: 1;
        max-width: 220px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        background: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-color);
        font-size: 16px;
        margin: 0 auto 15px;
    }

    .process-step h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--dark-color);
    }

    .process-step p {
        font-size: 14px;
        color: var(--dark-color);
        opacity: 0.8;
    }

    .process-arrow {
        color: var(--secondary-color);
        font-size: 20px;
        margin: 0 10px;
    }

    .faq-section {
        margin-bottom: 80px;
    }

    .faq-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .faq-item {
        background: var(--light-color);
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        transition: var(--transition);
    }

    .faq-item:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        background: var(--primary-color);
    }

    .faq-item:hover .faq-question h4 {
        color: var(--light-color);
    }

    .faq-item:hover .faq-question i {
        color: var(--secondary-color);
    }

    .faq-item:hover p {
        color: var(--light-color);
    }

    .faq-question {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .faq-question i {
        color: var(--secondary-color);
        font-size: 20px;
        transition: var(--transition);
    }

    .faq-question h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-color);
        transition: var(--transition);
    }

    .faq-item p {
        color: var(--dark-color);
        line-height: 1.6;
        margin-left: 35px;
        opacity: 0.8;
        transition: var(--transition);
    }

    .promise-section {
        margin-bottom: 80px;
    }

    .promise-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .promise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .promise-item {
        background: var(--light-color);
        padding: 40px 30px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
        transition: var(--transition);
        border-top: 4px solid var(--success-color);
    }

    .promise-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .promise-icon {
        width: 60px;
        height: 60px;
        background: var(--success-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light-color);
        font-size: 20px;
        margin: 0 auto 20px;
    }

    .promise-item h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .promise-item p {
        color: var(--dark-color);
        opacity: 0.8;
    }

    .cta-section {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 60px 40px;
        border-radius: var(--border-radius);
        text-align: center;
        margin-bottom: 60px;
    }

    .cta-content h3 {
        font-size: 32px;
        font-weight: 600;
        color: var(--light-color);
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-button {
        padding: 15px 30px;
        border-radius: var(--border-radius);
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: var(--transition);
    }

    .cta-button.primary {
        background: var(--light-color);
        color: var(--primary-color);
    }

    .cta-button.primary:hover {
        background: var(--light-gray);
        transform: translateY(-2px);
    }

    .cta-button.secondary {
        background: transparent;
        color: var(--light-color);
        border: 2px solid var(--light-color);
    }

    .cta-button.secondary:hover {
        background: var(--light-color);
        color: var(--primary-color);
    }

    .cta-button.tertiary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--light-color);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cta-button.tertiary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .additional-info {
        background: var(--light-color);
        padding: 40px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .additional-info p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 500;
    }

    .additional-info p:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .hero-content-section h2 {
            font-size: 32px;
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .steps-grid,
        .features-grid,
        .fleet-grid,
        .faq-grid,
        .promise-grid {
            grid-template-columns: 1fr;
        }

        .process-flow {
            flex-direction: column;
        }

        .process-arrow {
            transform: rotate(90deg);
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-button {
            width: 100%;
            max-width: 300px;
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

/* Source: airports/gatwick.blade.php.backup */
.services-section {
        margin-bottom: 80px;
    }

    .services-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .routes-section {
        margin-bottom: 80px;
    }

    .routes-section h3 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 50px;
    }

    .routes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .route-card {
        background: white;
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        border-left: 4px solid var(--primary-color);
        text-align: center;
    }

    .route-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .route-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        margin: 0 auto 20px;
    }

    .route-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .route-card p {
        color: var(--gray-color);
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .routes-grid {
            grid-template-columns: 1fr;
        }
    }

/* Source: city-airport/ascot_to_city_airport_taxi.blade.php.backup */
:root {
        --primary-color: var(--primary-blue);
        --primary-dark: var(--primary-blue-dark);
        --secondary-color: var(--brand-shell);
        --dark-color: var(--text-main);
        --light-color: var(--surface-white);
        --gray-color: var(--text-muted);
        --light-gray: var(--surface-variant);
        /* Light Gray (backgrounds if needed) */
        --danger-color: var(--status-error);
        /* Standard red for errors */
        --warning-color: var(--status-warning);
        /* Optional warning color */
        --success-color: var(--status-success);
        /* Success green */
        --box-shadow: 0 18px 36px rgba(31, 122, 140, 0.12),
            0 8px 18px rgba(2, 43, 58, 0.08);
        --border-radius: 8px;
        --transition: all 0.3s ease;
    }

    .seo-heathrow-content {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    }

    .hero-content-section {
        text-align: center;
        margin-bottom: 80px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary-color);
        color: var(--light-color);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-content-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 20px;
        color: var(--dark-color);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.8;
    }

    .intro-text {
        max-width: 900px;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.8;
        color: var(--dark-color);
        font-weight: 500;
    }

    .cta-section {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 60px 40px;
        border-radius: var(--border-radius);
        text-align: center;
        margin-bottom: 60px;
    }

    .cta-content h3 {
        font-size: 32px;
        font-weight: 600;
        color: var(--light-color);
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 15px 30px;
        border-radius: var(--border-radius);
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        background: var(--light-color);
        color: var(--primary-color);
        text-decoration: none;
        display: inline-block;
    }

    .cta-button:hover {
        background: var(--light-gray);
        transform: translateY(-2px);
        text-decoration: none;
    }

    .additional-info {
        background: var(--light-color);
        padding: 40px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 40px;
    }

    .additional-info h3 {
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-color);
        margin-bottom: 20px;
    }

    .additional-info p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--dark-color);
        margin-bottom: 20px;
        font-weight: 500;
    }

    .additional-info p:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .hero-content-section h2 {
            font-size: 32px;
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .seo-heathrow-content {
            padding: 40px 0;
        }
    }

/* === CENTRALIZED FRONTEND VIEW STYLES END === */

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.site-logo-image {
    display: block;
    height: 42px;
    width: auto;
}

.combined-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    gap: 1.5rem;
    margin-left: 2rem;
}

.combined-nav .main-links,
.combined-nav .auth-links,
.contact-phones {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.combined-nav .main-links li,
.combined-nav .auth-links li {
    margin-left: 0;
}

.combined-nav a {
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 0;
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
    z-index: 200;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0 !important;
}

.dropdown-menu a {
    padding: 10px 16px;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu .dropdown-item:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.dropdown-arrow {
    font-size: 0.75rem;
    opacity: 0.8;
}

.nav-link {
    font-weight: 600;
}

.user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

header {
    background-color: var(--surface-white);
    box-shadow: 0 1px 0 var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.contact-phones {
    justify-content: center;
    flex: 1;
}

.phone-link {
    background: var(--primary-blue-light);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    color: var(--primary-blue-dark);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
}

.phone-link:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
}

.phone-label {
    opacity: 0.9;
}

.phone-number {
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

.footer-column ul li a {
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-blue-light);
    text-decoration: none;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column .logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-image {
    display: block;
    height: 40px;
    width: auto;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
    align-items: start;
    padding: 2rem 0 3rem;
}

.booking-left-column,
.booking-right-column {
    min-width: 0;
}

.voucher-section,
.applied-voucher-banner,
.journey-panel,
.vehicles-section,
.details-form-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
}

.voucher-section,
.applied-voucher-banner,
.journey-panel {
    margin-bottom: 1.25rem;
}

.voucher-section {
    padding: 1.25rem;
}

.voucher-header,
.vehicles-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.voucher-header h3,
.vehicles-header h3,
.journey-header h3,
.details-form-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.voucher-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.voucher-input {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(13, 27, 42, 0.14);
    border-radius: 10px;
    font-size: 0.95rem;
}

.voucher-apply-btn,
.remove-voucher-btn,
.copy-passenger-btn,
.back-to-vehicles-btn,
.book-now-final-btn,
.cancel-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.voucher-apply-btn,
.book-now-final-btn {
    background: var(--primary-blue);
    color: var(--surface-white);
}

.remove-voucher-btn,
.cancel-details-btn {
    background: rgba(229, 57, 53, 0.1);
    color: var(--danger-color);
}

.copy-passenger-btn,
.back-to-vehicles-btn {
    background: var(--surface-variant);
    color: var(--text-main);
}

.voucher-apply-btn:hover,
.remove-voucher-btn:hover,
.copy-passenger-btn:hover,
.back-to-vehicles-btn:hover,
.book-now-final-btn:hover,
.cancel-details-btn:hover,
.price-button:hover,
.edit-journey-btn:hover {
    transform: translateY(-1px);
}

.voucher-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    display: none;
}

.voucher-message.success {
    color: var(--success-color);
}

.voucher-message.error {
    color: var(--danger-color);
}

.available-vouchers {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.available-vouchers-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.voucher-list {
    display: grid;
    gap: 0.75rem;
}

.voucher-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.voucher-chip:hover {
    border-color: rgba(37, 99, 235, 0.45);
    background: var(--primary-blue-light);
    transform: translateY(-1px);
}

.voucher-code {
    font-weight: 700;
}

.voucher-value {
    color: var(--success-color);
    font-weight: 700;
}

.applied-voucher-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.12));
}

.applied-voucher-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.applied-voucher-icon {
    font-size: 1.6rem;
    color: var(--success-color);
}

.applied-voucher-details h4,
.applied-voucher-details p {
    margin: 0;
}

.journey-panel {
    overflow: hidden;
}

.journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
}

.journey-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.edit-journey-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-weight: 600;
}

.journey-content {
    padding: 1.25rem;
    display: grid;
    gap: 1rem;
}

.journey-content.collapsed {
    display: none;
}

.collapse-icon {
    transition: transform 0.3s ease;
}

.collapse-icon.collapsed {
    transform: rotate(180deg);
}

.location-detail {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    background: var(--surface-variant);
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.location-icon.pickup { background: var(--success-color); }
.location-icon.dropoff { background: var(--danger-color); }
.location-icon.via { background: var(--primary-blue); color: var(--surface-white); }

.location-text h5,
.location-text p {
    margin: 0;
}

.location-text h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.location-text .postcode {
    margin-top: 0.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vehicles-section,
.details-form-section {
    padding: 1.25rem;
}

.vehicle-list {
    display: grid;
    gap: 1rem;
}

.vehicle-card-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: linear-gradient(180deg, var(--surface-white), var(--surface-variant));
}

.vehicle-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 1;
}

.vehicle-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.vehicle-saloon-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.vehicle-saloon-specs {
    color: var(--text-muted);
    line-height: 1.5;
}

.vehicle-price-actions {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.price-button {
    min-width: 150px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--surface-white);
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    cursor: pointer;
}

.one-way-btn {
    border-top: 4px solid var(--primary-blue);
}

.return-btn {
    border-top: 4px solid var(--primary-blue-dark);
}

.price-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
}

.price-value-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.original-price {
    color: #8a9099;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.discount-badge,
.return-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-color);
}

.details-form-section {
    display: none;
}

.details-form-section.active {
    display: block;
}

.details-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.details-form {
    display: grid;
    gap: 1rem;
}

.form-section-container {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: visible;
    background: var(--surface-white);
}

.form-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--surface-variant);
}

.form-section-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.form-section-content {
    padding: 1.15rem;
}

.info-icon {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: var(--primary-color);
}

.details-form-section .form-control,
.details-form-section select.form-control,
.details-form-section textarea.form-control {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--surface-white);
    color: var(--text-main);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.details-form-section .form-control:hover,
.details-form-section select.form-control:hover,
.details-form-section textarea.form-control:hover {
    border-color: rgba(37, 99, 235, 0.26);
}

.details-form-section .form-control:focus,
.details-form-section select.form-control:focus,
.details-form-section textarea.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.details-form-section textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.luggage-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.meet-greet-section {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    background: var(--primary-blue-light);
}

.meet-greet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.meet-greet-header h4,
.meet-greet-info p {
    margin: 0;
}

.airport-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(31, 122, 140, 0.12);
    color: var(--brand-primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.meet-greet-charge {
    font-weight: 700;
    color: var(--primary-color);
}

.meet-greet-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.meet-greet-toggle input {
    position: absolute;
    opacity: 0;
}

.toggle-slider {
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.35);
    position: relative;
    transition: var(--transition);
}

.toggle-slider::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.meet-greet-toggle input:checked + .toggle-slider {
    background: var(--primary-blue);
}

.meet-greet-toggle input:checked + .toggle-slider::after {
    left: 26px;
}

.flight-number-field {
    margin-top: 1rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
    display: grid;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(13, 27, 42, 0.08);
    background: #fff;
    box-shadow: 0 16px 40px rgba(13, 27, 42, 0.14);
}

.toast.success {
    border-left: 4px solid var(--success-color);
}

.toast.error {
    border-left: 4px solid var(--danger-color);
}

.toast.warning {
    border-left: 4px solid var(--warning-color);
}

.toast.info {
    border-left: 4px solid var(--brand-primary);
}

.toast-icon {
    font-size: 1.1rem;
    line-height: 1.2;
}

.toast-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.toast-message {
    color: var(--text-muted);
    line-height: 1.45;
}

.toast-close {
    border: none;
    background: transparent;
    color: #7a8592;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.customer-auth-section,
.customer-register-page main,
.corporate-login-page main,
.corporate-register-page main,
.profile-section {
    padding: 56px 0 72px;
    min-height: calc(100vh - 220px);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 32%),
        linear-gradient(180deg, var(--bg-slate) 0%, var(--surface-white) 100%);
}

.customer-login-card,
.customer-register-card,
.form-container,
.profile-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.customer-login-card {
    max-width: 540px;
}

.corporate-login-page .form-container {
    max-width: 560px;
}

.corporate-register-page .form-container {
    max-width: 860px;
}

.login-header,
.form-header {
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: #fff;
    text-align: center;
}

.login-header {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.form-header h2 {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
}

.form-header p {
    margin: 0.65rem 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.login-form,
.form-body {
    padding: 32px;
}

.corporate-login-page .form-group,
.corporate-register-page .form-group,
.customer-login-page .form-group,
.customer-register-page .form-group,
.profile-form .form-group {
    margin-bottom: 20px;
}

.corporate-login-page .form-label,
.corporate-register-page .form-label,
.customer-login-page .form-label,
.customer-register-page .form-label,
.profile-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.corporate-login-page .form-control,
.corporate-register-page .form-control,
.customer-login-page .form-control,
.customer-register-page .form-control,
.profile-form .form-control {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--surface-white);
    color: var(--text-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corporate-login-page .form-control:focus,
.corporate-register-page .form-control:focus,
.customer-login-page .form-control:focus,
.customer-register-page .form-control:focus,
.profile-form .form-control:focus {
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
    outline: none;
}

.corporate-login-page .btn.btn-block,
.corporate-register-page .btn.btn-block,
.customer-login-page .btn.btn-block,
.customer-register-page .btn.btn-block {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    border: none;
    border-radius: 12px;
    background: var(--primary-blue);
    color: var(--surface-white);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.corporate-login-page .btn.btn-block:hover,
.corporate-register-page .btn.btn-block:hover,
.customer-login-page .btn.btn-block:hover,
.customer-register-page .btn.btn-block:hover {
    transform: translateY(-1px);
    background: var(--primary-blue-dark);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: var(--text-muted);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 22px;
    color: var(--text-muted);
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.login-footer,
.form-footer {
    margin-top: 22px;
    text-align: center;
    color: var(--text-muted);
}

.login-footer a,
.form-footer a,
.signup-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.login-footer a:hover,
.form-footer a:hover,
.signup-link a:hover {
    color: var(--primary-blue-dark);
}

.form-submit {
    margin-top: 12px;
}

.corporate-register-page .form-row,
.customer-register-page .form-row,
.form-row.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.success-message,
.error-alert,
.info-box {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.error-alert {
    background: rgba(229, 57, 53, 0.08);
    color: var(--danger-color);
    border: 1px solid rgba(229, 57, 53, 0.16);
}

.error-alert ul,
.error-list {
    margin: 10px 0 0 18px;
    padding: 0;
}

.info-box {
    background: rgba(13, 27, 42, 0.04);
    color: var(--primary-color);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.required {
    color: var(--danger-color);
}

.error-message {
    display: block;
    margin-top: 6px;
    min-height: 18px;
    font-size: 0.88rem;
    color: var(--danger-color);
}

.customer-register-page .iti,
.customer-login-page .iti {
    width: 100%;
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-header h1 {
    margin: 0 0 0.35rem;
    color: var(--primary-color);
}

.page-header p {
    margin: 0;
    color: var(--text-muted);
}

.card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.alert-success {
    margin-top: 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    padding: 12px 14px;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.profile-sidebar {
    padding: 32px 28px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-dark));
    color: #fff;
    text-align: center;
}

.profile-image-container {
    margin-bottom: 18px;
}

.profile-image,
.profile-initials {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-initials {
    background: rgba(37, 99, 235, 0.16);
    color: var(--primary-blue-light);
    font-size: 2rem;
    font-weight: 700;
}

.user-info {
    display: grid;
    gap: 0.45rem;
}

.user-email,
.user-membership {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.profile-content {
    padding: 32px;
}

.profile-form {
    display: grid;
    gap: 20px;
}

.profile-form .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.22);
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.profile-form .btn.btn-primary:hover,
.profile-form .btn.btn-primary:focus-visible {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    box-shadow: 0 20px 34px rgba(30, 64, 175, 0.26);
    transform: translateY(-2px);
}

.profile-form .btn.btn-primary i {
    font-size: 0.95rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    min-height: 52px;
    border: 1px dashed rgba(13, 27, 42, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--text-muted);
    background: var(--surface-variant);
}

.invalid-feedback {
    display: block;
    margin-top: 6px;
    color: var(--danger-color);
    font-size: 0.88rem;
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.action-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
    padding: 1.25rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
}

.action-icon,
.action-arrow {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.action-arrow {
    background: var(--surface-variant);
    color: var(--primary-blue);
}

.action-content h3,
.action-content p {
    margin: 0;
}

.action-content p {
    margin-top: 0.25rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .customer-auth-section,
    .customer-register-page main,
    .corporate-login-page main,
    .corporate-register-page main,
    .profile-section {
        padding: 32px 0 48px;
    }

    .login-form,
    .form-body,
    .login-header,
    .form-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .corporate-register-page .form-row,
    .customer-register-page .form-row,
    .form-row.two-columns,
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .profile-content,
    .profile-sidebar {
        padding: 22px 20px;
    }
}

.office-addresses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-location {
    margin-bottom: 15px;
}

.office-location strong {
    display: block;
    color: var(--primary-blue-light);
    margin-bottom: 5px;
    font-size: 14px;
}

.office-location p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: var(--primary-blue-light);
    background: rgba(37, 99, 235, 0.24);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 10px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(226, 232, 240, 0.62);
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.15) rotate(5deg);
}

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 2s linear infinite;
    opacity: 0;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.03); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.custom-picker-wrapper {
    position: relative;
    width: 100%;
    z-index: 20;
}

.custom-picker-wrapper:focus-within {
    z-index: 10030;
}

.custom-picker-wrapper.picker-open {
    z-index: 10060;
}

.custom-picker-wrapper.picker-open .custom-picker-dropdown {
    z-index: 10070 !important;
}

.iti,
.iti__country-container {
    z-index: 30;
}

.iti__country-list {
    z-index: 10020;
}

.custom-picker-input {
    width: 100%;
    padding: 14px 44px 14px 14px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    background: var(--surface-white);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.picker-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-blue);
    font-size: 20px;
}

.custom-picker-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    min-width: min(340px, calc(100vw - 32px));
    max-width: 380px;
    background: var(--surface-white);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
    z-index: 10050 !important;
    border: 1px solid rgba(37, 99, 235, 0.16);
}

.custom-picker-dropdown.active {
    display: block !important;
}

.picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.picker-title,
.time-label,
.calendar-weekday {
    color: var(--primary-blue-dark);
    font-weight: 800;
}

.picker-close,
.time-arrow {
    background: none;
    border: none;
    color: var(--primary-blue-dark);
    cursor: pointer;
}

.month-year-selector,
.calendar-weekdays,
.calendar-days,
.time-picker {
    display: grid;
}

.month-year-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.calendar-weekdays,
.calendar-days {
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.calendar-day:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.calendar-day.disabled,
.calendar-day.other-month {
    color: var(--text-hint);
}

.calendar-day.today {
    border-color: rgba(37, 99, 235, 0.32);
}

.calendar-day.selected {
    background: var(--primary-blue) !important;
    color: var(--surface-white) !important;
}

.time-picker {
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 28px;
    padding: 16px 0;
}

.time-column,
.time-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-input {
    width: 110px;
    padding: 18px 16px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 42px !important;
    font-weight: 700;
    text-align: center;
    background: var(--surface-variant) !important;
    border: 1px solid rgba(37, 99, 235, 0.12) !important;
}

.time-separator {
    color: var(--primary-blue-dark);
    font-size: 32px;
    font-weight: 700;
    margin-top: 58px;
}

.picker-confirm {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    border-radius: 10px;
    color: var(--surface-white);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.picker-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(15, 23, 42, 0.1);
    pointer-events: auto !important;
}

.picker-overlay.active {
    display: block;
}

html,
body {
    overflow-x: hidden;
}

.related-routes-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.route-category {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.route-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 6px;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
}

.route-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.otp-input {
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
}

.loading-spinner-hidden {
    display: none;
}

.error-list {
    margin: 8px 0 0 20px;
}

.corporate-login-note {
    color: #666;
    margin-top: 5px;
    display: inline-block;
}

.booking-subtext {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.booking-voucher-note {
    font-size: 0.75rem;
    color: var(--success-color);
}

.modal-dialog-compact {
    max-width: 500px;
}

.modal-header-danger {
    background: linear-gradient(135deg, #E53935, #FF5252);
}

.form-group-spaced {
    margin-bottom: 1rem;
}

.cancellation-info-spaced {
    margin-top: 1rem;
}

.required-mark {
    color: var(--danger-color);
}

.modal-button-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-button-fill {
    flex: 1;
}

.booking-details-loading {
    text-align: center;
    padding: 2rem;
}

.booking-details-loading-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.booking-details-loading-copy {
    margin-top: 1rem;
}

.detail-item-span-2 {
    grid-column: span 2;
}

.voucher-discount {
    margin-left: 10px;
    color: var(--success-color);
}

.detail-icon-success { color: var(--success-color); }
.detail-icon-danger { color: var(--danger-color); }
.detail-icon-info { color: var(--info-color); }

.detail-text-strong {
    margin: 0.5rem 0;
    font-weight: 600;
}

.detail-text-accent {
    margin-top: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.detail-text-info {
    margin-top: 0.5rem;
    color: var(--info-color);
    font-weight: 600;
}

.detail-grid-spaced {
    margin-top: 1rem;
}

.financial-row-success,
.cancel-charge-text-success {
    color: var(--success-color);
    font-weight: 600;
}

.cancel-charge-text-danger {
    color: var(--danger-color);
    font-weight: 600;
}

.cancel-charge-text-warning {
    color: var(--warning-color);
    font-weight: 600;
}

.detail-panel {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 5px;
}

.detail-paragraph-reset {
    margin: 0;
}

.cancel-charge-highlight {
    padding: 1rem;
    border-radius: 5px;
}

.cancel-charge-highlight-success,
.cancel-note-success {
    background-color: rgba(16, 185, 129, 0.1);
}

.cancel-note-warning {
    background-color: rgba(255, 167, 38, 0.1);
}

.cancel-charge-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cancel-charge-body {
    color: var(--dark-color);
}

.cancel-note {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 5px;
}

.uk-address-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 2px solid #4a3400;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(13, 27, 42, 0.25);
    max-height: 450px;
    overflow-y: auto;
    z-index: 10090;
    margin-top: 8px;
    display: none;
}

.uk-address-results.uk-address-visible {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.uk-address-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.uk-address-item:last-child {
    border-bottom: none;
}

.uk-address-item:hover,
.uk-address-item.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
}

.uk-icon {
    font-size: 12px;
    margin-right: 8px;
    flex-shrink: 0;
}

.uk-address-content {
    flex: 1;
    min-width: 0;
}

.uk-address-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.uk-address-main {
    color: var(--text-main);
    font-size: 11px;
    font-weight: 400;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uk-address-postcode {
    color: var(--primary-blue-dark);
    font-size: 11px;
    font-weight: 400;
    background: var(--primary-blue-light);
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.uk-address-empty,
.uk-address-loading,
.uk-address-error {
    padding: 20px;
    text-align: center;
    color: var(--text-main);
    font-size: 13px;
}

.uk-address-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(13, 27, 42, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: ukspin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes ukspin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 16px;
    }

    .combined-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--surface-white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        margin-left: 0;
        gap: 1rem;
    }

    .combined-nav.active {
        transform: translateY(0);
    }

    .combined-nav .main-links,
    .combined-nav .auth-links,
    .contact-phones {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .combined-nav .main-links li,
    .combined-nav .auth-links li,
    .contact-phones li {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--surface-variant);
        border: 0;
        box-shadow: none;
        padding-left: 20px;
        min-width: 0;
        max-height: none;
    }

    .dropdown.active .dropdown-menu,
    .mobile-menu-toggle {
        display: block;
    }

    .phone-link {
        justify-content: flex-start;
        border-radius: 10px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .route-category {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .office-addresses {
        gap: 15px;
    }

    .booking-layout,
    .form-row,
    .luggage-row,
    .vehicle-card-v2,
    .vehicle-price-actions,
    .form-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .vehicle-price-actions,
    .form-actions {
        display: flex;
    }

    .price-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column,
    .footer-bottom {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.filter-section-header {
    border-color: rgba(0, 0, 0, 0.08);
}

.tracking-reference-label {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.tracking-expired-note {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

.tracking-vehicle-title {
    margin-bottom: 12px;
    color: #1f2937;
}

.payment-status-icon {
    font-size: 5rem;
}

.meet-greet-hidden,
.flight-required-indicator {
    display: none;
}

.flight-required-indicator {
    color: #ff6b6b;
}

.bookings-container,
.customer-dashboard {
    padding: 2rem 0;
    min-height: calc(100vh - 120px);
    background-color: var(--light-gray);
}

.bookings-header,
.dashboard-header {
    margin-bottom: 2rem;
    text-align: center;
}

.bookings-header h1,
.dashboard-header h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bookings-header p,
.dashboard-header p {
    color: var(--dark-color);
    opacity: 0.8;
    font-size: 1.05rem;
}

.bookings-stats,
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(13, 27, 42, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.stat-number,
.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.stat-label,
.stat-content p {
    color: var(--dark-color);
    opacity: 0.8;
}

.bookings-filters,
.dashboard-recent-bookings,
.bookings-table-wrapper,
.bookings-list-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.bookings-filters,
.dashboard-recent-bookings,
.bookings-list-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.bookings-filters .form-group label,
.filters-grid .form-group label,
.content-shell .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.bookings-filters .form-control,
.filters-grid .form-control,
.contact-form-card .form-control,
.content-shell select.form-control,
.content-shell textarea.form-control {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--surface-white);
    color: var(--text-main);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bookings-filters .form-control:hover,
.filters-grid .form-control:hover,
.contact-form-card .form-control:hover,
.content-shell select.form-control:hover,
.content-shell textarea.form-control:hover {
    border-color: rgba(37, 99, 235, 0.28);
}

.bookings-filters .form-control:focus,
.filters-grid .form-control:focus,
.contact-form-card .form-control:focus,
.content-shell select.form-control:focus,
.content-shell textarea.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.bookings-filters .form-control::placeholder,
.filters-grid .form-control::placeholder,
.contact-form-card .form-control::placeholder,
.content-shell textarea.form-control::placeholder {
    color: var(--text-muted);
}

.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 14px;
    background: var(--surface-white);
    color: var(--primary-blue-dark);
    font-weight: 700;
    text-decoration: none;
}

.btn-outline-secondary:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    border-color: rgba(37, 99, 235, 0.3);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.search-btn {
    display: flex;
    gap: 0.75rem;
}

.bookings-table,
.bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th,
.bookings-table td,
.bookings-table-wrapper th,
.bookings-table-wrapper td {
    padding: 0.9rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    vertical-align: top;
}

.bookings-table thead,
.bookings-table-wrapper thead {
    background: rgba(13, 27, 42, 0.04);
}

.booking-datetime {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.booking-date {
    font-weight: 700;
}

.booking-time {
    color: var(--primary-blue-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.booking-actions,
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-booking-details,
.btn-booking-cancel,
.btn-booking-receipt,
.btn-view-details,
.btn-edit-booking,
.btn-cancel-booking,
.btn-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-booking-details,
.btn-booking-receipt,
.btn-view-details,
.btn-edit-booking,
.btn-reset {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-booking-cancel,
.btn-cancel-booking {
    background: var(--danger-color);
    color: var(--light-color);
}

.btn-booking-details:hover,
.btn-booking-cancel:hover,
.btn-booking-receipt:hover,
.btn-view-details:hover,
.btn-edit-booking:hover,
.btn-cancel-booking:hover,
.btn-reset:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.bookings-table-wrapper {
    overflow-x: auto;
}

.status-badge,
.payment-badge,
.voucher-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge,
.voucher-badge {
    background: var(--primary-blue-light);
    color: var(--primary-color);
}

.payment-badge.payment-paid,
.status-confirmed,
.status-completed {
    background: rgba(16, 185, 129, 0.14);
    color: var(--success-color);
}

.payment-badge.payment-pending,
.status-pending {
    background: rgba(255, 167, 38, 0.16);
    color: var(--warning-color);
}

.status-cancelled,
.status-failed {
    background: rgba(229, 57, 53, 0.14);
    color: var(--danger-color);
}

.no-bookings,
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pagination-container {
    margin-top: 1.5rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-dialog,
.modal-content {
    width: 100%;
}

.modal-content {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--primary-color);
    color: var(--light-color);
}

.modal-title,
.modal-header h3 {
    margin: 0;
}

.modal-body {
    padding: 1.25rem;
}

.close,
.modal-close {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.25rem;
}

.loading {
    text-align: center;
    padding: 2rem;
}

.detail-panel {
    background: rgba(13, 27, 42, 0.03);
    border-radius: 8px;
    padding: 1rem;
}

.detail-item-span-2 {
    grid-column: span 2;
}

.detail-grid-spaced {
    margin-top: 1rem;
}

.detail-text-strong,
.detail-paragraph-reset {
    margin: 0;
}

.detail-text-accent,
.detail-text-info {
    margin: 0.5rem 0 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.detail-icon-success {
    color: var(--success-color);
}

.detail-icon-danger {
    color: var(--danger-color);
}

.detail-icon-info {
    color: var(--primary-blue);
}

.financial-row-success {
    color: var(--success-color);
}

.cancel-charge-highlight {
    display: block;
    padding: 1rem 0;
}

.cancel-charge-highlight-success,
.cancel-note-success {
    color: var(--success-color);
}

.cancel-note-warning,
.cancel-charge-text-warning {
    color: var(--warning-color);
}

.cancel-charge-text-danger {
    color: var(--danger-color);
}

.cancel-charge-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cancel-charge-body {
    margin: 0;
}

.modal-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.modal-button-fill {
    flex: 1 1 180px;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.detail-item {
    background: rgba(13, 27, 42, 0.03);
    border-radius: 8px;
    padding: 0.9rem;
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
    margin-bottom: 0.35rem;
}

.detail-value {
    font-weight: 600;
    color: var(--primary-color);
}

.journey-timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item,
.via-stop {
    background: rgba(13, 27, 42, 0.03);
    border-radius: 8px;
    padding: 1rem;
}

.timeline-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-postcode {
    color: var(--gray-color);
}

.financial-summary {
    display: grid;
    gap: 0.75rem;
}

.financial-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.financial-row:last-child {
    border-bottom: none;
}

.financial-label {
    opacity: 0.8;
}

.financial-value {
    font-weight: 700;
}

.cancel-charge-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.cancel-charge-item:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    color: var(--primary-blue);
    font-weight: 600;
}

.view-all:hover {
    color: var(--primary-blue-dark);
}

.stat-icon {
    background: var(--primary-blue-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .bookings-stats,
    .dashboard-stats,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .booking-actions,
    .modal-actions,
    .search-btn,
    .modal-button-row,
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
}

.forgot-section {
    padding: 60px 0;
}

.forgot-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--surface-white);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.forgot-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

.forgot-form {
    padding: 30px;
}

.info-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Homepage + Header Revamp */
.homepage-hero {
    min-height: auto;
    padding: 56px 0 72px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(2, 43, 58, 0.76), rgba(22, 102, 120, 0.28)),
        linear-gradient(180deg, rgba(2, 43, 58, 0.1), rgba(2, 43, 58, 0.28));
    filter: none;
}

.homepage-hero::before {
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(2, 43, 58, 0.06), rgba(2, 43, 58, 0.2));
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.homepage-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.homepage-hero__motion-grid {
    position: absolute;
    inset: -10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.22;
    transform: perspective(1200px) rotateX(72deg) translateY(18%);
    transform-origin: top center;
    animation: heroGridDrift 18s linear infinite;
}

.homepage-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.78;
    will-change: transform;
}

.homepage-hero__glow--one {
    top: 10%;
    left: -5%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(31, 122, 140, 0.22), transparent 68%);
    animation: heroGlowOne 14s ease-in-out infinite alternate;
}

.homepage-hero__glow--two {
    right: -6%;
    bottom: 8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(191, 219, 247, 0.14), transparent 70%);
    animation: heroGlowTwo 16s ease-in-out infinite alternate;
}

.homepage-hero__glow--three {
    top: 28%;
    right: 18%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(31, 122, 140, 0.16), transparent 68%);
    animation: heroGlowThree 12s ease-in-out infinite alternate;
}

.homepage-hero .container,
.homepage-hero__grid {
    position: relative;
    z-index: 2;
}

.homepage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 430px);
    gap: 40px;
    align-items: start;
    isolation: isolate;
}

.hero-content.homepage-hero__grid {
    gap: 40px;
}

.homepage-hero__copy {
    color: var(--surface-white);
    max-width: 680px;
}

.homepage-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--surface-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage-hero__title {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 3.8vw, 3.00rem);
    line-height: 1.1;
    color: var(--surface-white);
    max-width: 14ch;
}

.homepage-hero__lead {
    margin: 0 0 24px;
    max-width: 58ch;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.homepage-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.homepage-hero__tag {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--surface-white);
    font-size: 0.88rem;
    font-weight: 600;
}

.homepage-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.homepage-hero__stat {
    padding: 16px 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.homepage-hero__stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--surface-white);
    font-size: 1rem;
}

.homepage-hero__stat span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.6;
}

.homepage-hero__booking {
    display: grid;
    gap: 16px;
}

.homepage-booking-subtitle {
    margin: -10px 0 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

.homepage-hero__footer {
    display: grid;
    gap: 12px;
}

.homepage-hero__footer-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--surface-white);
}

.homepage-hero__footer-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.homepage-hero__footer-card strong,
.homepage-hero__footer-card span {
    display: block;
}

.homepage-hero__footer-card strong {
    margin-bottom: 4px;
}

.homepage-hero__footer-card span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
    font-size: 0.9rem;
}

.homepage-hero .booking-card {
    max-width: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 43, 58, 0.76);
    box-shadow: 0 26px 70px rgba(2, 43, 58, 0.24);
    backdrop-filter: blur(10px);
    margin-top: 6px;
}

.homepage-hero__booking-card,
.homepage-hero .booking-card,
.service-route-booking-card {
    position: relative;
    z-index: 80;
    isolation: isolate;
    pointer-events: auto !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.homepage-hero__booking-card .booking-form,
.homepage-hero__booking-card .booking-form .form-row,
.homepage-hero__booking-card .booking-form .form-group,
.homepage-hero__booking-card .booking-form .input-field-wrapper,
.service-route-booking-card .booking-form,
.service-route-booking-card .booking-form .form-row,
.service-route-booking-card .booking-form .form-group,
.service-route-booking-card .booking-form .input-field-wrapper {
    position: relative;
    z-index: 2;
    overflow: visible;
    pointer-events: auto !important;
}

.homepage-hero__booking-card .booking-form input,
.homepage-hero__booking-card .booking-form button,
.homepage-hero__booking-card .booking-form select,
.homepage-hero__booking-card .via-toggle,
.homepage-hero__booking-card .remove-via,
.service-route-booking-card .booking-form input,
.service-route-booking-card .booking-form button,
.service-route-booking-card .booking-form select,
.service-route-booking-card .via-toggle,
.service-route-booking-card .remove-via {
    position: relative;
    z-index: 3;
    pointer-events: auto !important;
    touch-action: manipulation;
}

.homepage-hero__copy,
.content-hero__inner {
    position: relative;
    z-index: 10;
}

.homepage-hero .booking-card:hover {
    transform: translateY(-2px);
}

.homepage-hero .booking-form h3 {
    font-size: 2.05rem;
}

.homepage-hero .booking-form label,
.homepage-hero .booking-form .input-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
}

.homepage-hero .booking-form input,
.homepage-hero .booking-form select,
.homepage-hero .booking-form .form-input,
.homepage-hero .via-section input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--surface-white) !important;
    box-shadow: none;
}

.homepage-hero .booking-form input:hover,
.homepage-hero .booking-form select:hover,
.homepage-hero .via-section input:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.homepage-hero .booking-form input:focus,
.homepage-hero .booking-form select:focus,
.homepage-hero .via-section input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(31, 122, 140, 0.8) !important;
    box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.18) !important;
}

.homepage-hero .booking-form input::placeholder,
.homepage-hero .booking-form .form-input::placeholder,
.homepage-hero .via-section input::placeholder {
    color: rgba(255, 255, 255, 0.62) !important;
}

.homepage-hero #pickup_address,
.homepage-hero #dropoff_address,
.homepage-hero .via-input {
    background-color: transparent !important;
}

.homepage-hero .booking-form input:-webkit-autofill,
.homepage-hero .booking-form input:-webkit-autofill:hover,
.homepage-hero .booking-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--surface-white);
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset;
    transition: background-color 9999s ease-in-out 0s;
}

.homepage-hero .booking-form .pac-container,
.homepage-hero .pac-container {
    color: var(--text-main);
}

.homepage-hero .via-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 16px auto;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(31, 122, 140, 0.16);
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}

.homepage-hero .via-toggle:hover {
    background: rgba(31, 122, 140, 0.26);
    color: var(--surface-white) !important;
}

.homepage-hero .via-toggle i {
    color: rgba(191, 219, 247, 0.95);
    font-size: 0.8rem;
}

.homepage-hero .remove-via {
    background: rgba(239, 68, 68, 0.9);
    color: var(--surface-white);
    border-radius: 999px;
}

.homepage-hero .remove-via:hover {
    background: #dc2626;
}

.why-book-panel {
    display: none;
}

.search-button,
.get-quote-button,
.vehicle-quote-button,
.header-quote-btn {
    background: var(--primary-blue);
    color: var(--surface-white);
    border: 1px solid var(--primary-blue);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.search-button:hover,
.get-quote-button:hover,
.vehicle-quote-button:hover,
.header-quote-btn:hover {
    background: var(--primary-blue-dark) !important;
    color: var(--surface-white) !important;
    border-color: var(--primary-blue-dark);
    box-shadow: 0 18px 32px rgba(30, 64, 175, 0.22);
    transform: translateY(-2px);
}

.vehicle-quote-button {
    margin: 0;
    min-height: 48px;
    text-decoration: none;
}

.section-subtitle {
    max-width: 640px;
    margin: -12px auto 36px;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.7;
}

header {
    overflow: visible;
}

nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
    padding: 18px 0;
}

.combined-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 20px;
    margin-left: 0;
}

.header-main-links {
    justify-content: flex-start;
    gap: 2px;
}

.header-main-links > li,
.header-auth-links > li {
    margin: 0;
}

.combined-nav a,
.nav-link {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.combined-nav a:hover,
.nav-link:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.nav-dropdown {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.dropdown-menu {
    top: calc(100% - 2px);
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.header-auth-links .nav-dropdown > .dropdown-menu {
    left: auto;
    right: 0;
    min-width: 220px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-contact-phones {
    justify-content: flex-end;
    gap: 8px;
}

.phone-link {
    min-height: 42px;
    padding: 0.55rem 0.95rem;
}

.header-auth-links {
    align-items: center;
    gap: 10px;
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 132px;
}

@media (max-width: 1024px) {
    .homepage-hero__grid {
        grid-template-columns: 1fr;
    }

    .homepage-hero__copy {
        max-width: none;
    }

    .homepage-hero__title {
        max-width: 14ch;
    }

    .homepage-hero__stats {
        grid-template-columns: 1fr;
    }

    .combined-nav {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .header-contact-phones,
    .header-auth-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        padding: 34px 0 52px;
    }

    .homepage-hero__booking-card,
    .service-route-booking-card {
        z-index: 140;
        margin-left: 0;
    }

    .homepage-hero__booking-card .booking-form,
    .service-route-booking-card .booking-form {
        overflow: visible;
    }

    .homepage-hero__title {
        max-width: none;
        font-size: 1.8rem;
    }

    .homepage-hero__lead {
        font-size: 1rem;
    }

    .homepage-hero__tags,
    .homepage-hero__stats {
        gap: 10px;
    }

    nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 72px;
        padding: 12px 0;
    }

    .combined-nav {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        width: auto;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        background: var(--surface-white);
    }

    .combined-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .combined-nav .main-links,
    .combined-nav .auth-links,
    .contact-phones {
        gap: 0;
    }

    .combined-nav .main-links li,
    .combined-nav .auth-links li,
    .contact-phones li {
        padding: 6px 0;
    }

    .combined-nav a,
    .nav-link,
    .header-quote-btn {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

}

@keyframes heroGridDrift {
    0% { transform: perspective(1200px) rotateX(72deg) translate3d(0, 18%, 0); }
    100% { transform: perspective(1200px) rotateX(72deg) translate3d(-32px, 14%, 0); }
}

@keyframes heroGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(60px, 26px, 0) scale(1.08); }
}

@keyframes heroGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-48px, -20px, 0) scale(1.06); }
}

@keyframes heroGlowThree {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(24px, -22px, 0) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-hero__motion-grid,
    .homepage-hero__glow {
        animation: none !important;
    }
}

/* Frontend Content Revamp */
.search-button,
.search-button:visited,
.get-quote-button,
.get-quote-button:visited,
.vehicle-quote-button,
.vehicle-quote-button:visited,
.header-quote-btn,
.header-quote-btn:visited,
.btn-primary,
.btn-primary:visited,
.btn-cta-primary,
.btn-cta-primary:visited,
.btn-book,
.btn-book:visited,
.cta-button,
.cta-button:visited {
    color: var(--surface-white) !important;
}

.btn-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: var(--surface-white);
    color: var(--primary-blue-dark);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-secondary-link:hover,
.btn-secondary-link:focus-visible {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.header-quote-btn:hover i,
.header-quote-btn:focus-visible i,
.header-quote-btn:hover span,
.header-quote-btn:focus-visible span {
    color: var(--surface-white) !important;
}

.nav-dropdown {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 14px;
}

.dropdown-menu {
    margin-top: 10px;
    top: 100%;
    min-width: 250px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 18px;
    padding: 10px;
    background: var(--surface-white);
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.18);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a,
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu .dropdown-item:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.header-main-links > li > a,
.header-auth-links > li > a {
    text-decoration: none;
}

.content-hero {
    position: relative;
    padding: 88px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 62%, #f8fafc 100%);
    overflow: hidden;
}

.content-hero__inner {
    max-width: 760px;
}

.content-hero--booking {
    padding: 72px 0 56px;
}

.content-hero__booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
    gap: 36px;
    align-items: start;
    isolation: isolate;
}

.service-route-booking-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

.service-route-booking-card .booking-form {
    width: 100%;
}

.service-route-booking-card .booking-form .form-row {
    display: block;
    gap: 0;
    margin-bottom: 0;
}

.service-route-booking-card .booking-form .form-group {
    margin-bottom: 16px;
}

.service-route-booking-card .booking-form h3 {
    font-size: 1.95rem;
    color: var(--text-main) !important;
}

.service-route-booking-card .homepage-booking-subtitle {
    margin: -10px 0 22px;
    color: var(--text-muted);
}

.service-route-booking-card .booking-form label,
.service-route-booking-card .booking-form .input-label {
    color: var(--text-main) !important;
    font-weight: 700;
}

.service-route-booking-card .booking-form input,
.service-route-booking-card .booking-form select,
.service-route-booking-card .booking-form .form-input,
.service-route-booking-card .via-section input {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.service-route-booking-card .booking-form input:hover,
.service-route-booking-card .booking-form select:hover,
.service-route-booking-card .via-section input:hover {
    border-color: rgba(37, 99, 235, 0.28) !important;
    background: var(--surface-white) !important;
}

.service-route-booking-card .booking-form input:focus,
.service-route-booking-card .booking-form select:focus,
.service-route-booking-card .via-section input:focus {
    border-color: var(--primary-blue) !important;
    background: var(--surface-white) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

.service-route-booking-card .booking-form input::placeholder,
.service-route-booking-card .booking-form .form-input::placeholder,
.service-route-booking-card .via-section input::placeholder {
    color: var(--text-muted) !important;
}

.service-route-booking-card .via-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 18px auto;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue-dark) !important;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}

.service-route-booking-card .via-toggle:hover {
    background: rgba(37, 99, 235, 0.14);
    color: var(--primary-blue-dark) !important;
}

.service-route-booking-card .via-toggle i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.service-route-booking-card .remove-via {
    background: rgba(239, 68, 68, 0.9);
    color: var(--surface-white);
    border-radius: 999px;
}

.service-route-booking-card .remove-via:hover {
    background: #dc2626;
}

.content-hero__eyebrow,
.page-section-heading__eyebrow,
.route-card-kicker,
.trust-chip-card__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-hero h1,
.page-section-heading h2 {
    margin: 0;
    color: var(--text-main);
    line-height: 1.08;
}

.content-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.content-hero p,
.page-section-heading p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.content-hero__actions,
.homepage-route-card__actions,
.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.homepage-section,
.content-section {
    padding: 82px 0;
}

.content-section--light {
    background: var(--surface-variant);
}

.page-section-heading {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.page-section-heading--left {
    margin-left: 0;
    text-align: left;
}

.homepage-trust-strip {
    padding-top: 34px;
}

.homepage-trust-strip__grid,
.info-card-grid,
.homepage-route-grid,
.homepage-process-grid,
.service-checklist-grid {
    display: grid;
    gap: 24px;
}

.homepage-trust-strip__grid,
.info-card-grid,
.service-checklist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage-route-grid,
.homepage-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-chip-card,
.homepage-route-card,
.process-card,
.info-card,
.service-checklist-card,
.story-panel-card,
.story-feature-panel,
.cta-surface-card,
.cta-panel {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    background: var(--surface-white);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.trust-chip-card,
.homepage-route-card,
.process-card,
.info-card,
.service-checklist-card,
.story-panel-card,
.story-feature-panel,
.cta-surface-card {
    padding: 30px;
}

.trust-chip-card h3,
.homepage-route-card h3,
.process-card h3,
.info-card h3,
.service-checklist-card h3,
.story-panel-card h3,
.cta-surface-card h2,
.cta-panel h2 {
    margin: 0 0 12px;
    color: var(--text-main);
}

.trust-chip-card p,
.homepage-route-card p,
.process-card p,
.info-card p,
.service-checklist-card p,
.story-panel-card p,
.cta-surface-card p,
.cta-panel p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
}

.homepage-route-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
}

.homepage-route-card__actions {
    margin-top: 0;
}

.content-rich-text-block {
    padding: 34px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    background: var(--surface-white);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.content-rich-text-block__intro + .content-rich-text-block__main {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.content-rich-text-block h2,
.content-rich-text-block h3,
.content-rich-text-block h4 {
    margin: 0 0 14px;
    color: var(--text-main);
}

.content-rich-text-block p,
.content-rich-text-block li {
    color: var(--text-muted);
    line-height: 1.8;
}

.content-rich-text-block ul,
.content-rich-text-block ol {
    margin: 0;
    padding-left: 1.2rem;
}

.content-rich-text-block a {
    color: var(--primary-blue);
}

.homepage-story-grid,
.split-story-layout,
.homepage-dual-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.story-panel-card--accent,
.cta-surface-card--soft,
.story-feature-panel {
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.98));
}

.story-feature-list {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.story-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
}

.story-feature-list i,
.info-card i {
    color: var(--primary-blue);
}

.info-card i {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.process-card {
    position: relative;
}

.process-card__number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
}

.service-checklist-card {
    min-height: 100%;
}

.split-story-layout__panel {
    display: flex;
}

.fleet-grid .vehicle-card {
    height: 100%;
}

.fleet-grid .vehicle-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.fleet-grid .vehicle-footer {
    margin-top: auto;
}

.info-card-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .combined-nav {
        grid-template-columns: 1fr;
    }

    .header-main-links,
    .header-contact-phones,
    .header-auth-links {
        justify-content: flex-start;
    }

    .homepage-route-grid,
    .homepage-process-grid,
    .homepage-trust-strip__grid,
    .info-card-grid--wide,
    .service-checklist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .content-hero__booking-grid,
    .homepage-route-grid,
    .homepage-process-grid,
    .homepage-trust-strip__grid,
    .info-card-grid,
    .info-card-grid--wide,
    .service-checklist-grid,
    .homepage-story-grid,
    .split-story-layout,
    .homepage-dual-cta__grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-hero h1 {
        max-width: none;
    }

    .service-route-booking-card {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
.content-hero,
.homepage-section,
.content-section {
        padding: 64px 0;
    }

    .content-hero__actions,
    .homepage-route-card__actions,
    .cta-panel__actions {
        flex-direction: column;
    }

    .content-hero__actions > *,
    .homepage-route-card__actions > *,
    .cta-panel__actions > *,
    .btn-secondary-link,
    .search-button,
    .header-quote-btn {
        width: 100%;
    }

    .dropdown-menu {
        margin-top: 8px;
        min-width: 100%;
    }
}

/* Support + Legal + Customer Page Alignment */
.content-shell {
    padding: 34px 0 82px;
    background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
}

.content-shell .page-header {
    margin-bottom: 34px;
}

.content-shell .page-header h1,
.dashboard-page-header h1 {
    color: var(--text-main);
    margin-bottom: 10px;
}

.content-shell .page-header p,
.dashboard-page-header p {
    color: var(--text-muted);
    line-height: 1.75;
}

.content-shell p,
.content-shell li,
.privacy-content p,
.terms-content p,
.faq-answer p,
.contact-form-card p,
.contact-info-card p,
.contact-item small,
.office-address,
.booking-subtext,
.vehicle-saloon-specs,
.location-text .postcode {
    color: var(--text-muted);
}

.content-shell h2,
.content-shell h3,
.privacy-content h2,
.terms-content h2,
.faq-question,
.contact-form-card label,
.contact-info-card h3 {
    color: var(--text-main);
}

.content-card-surface,
.contact-info-card,
.contact-form-card,
.faq-items,
.contact-card,
.privacy-nav,
.privacy-content,
.terms-nav,
.terms-content,
.dashboard-lead-card {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    background: var(--surface-white);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.contact-layout,
.privacy-layout,
.terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
}

.contact-info-card,
.contact-form-card,
.faq-items,
.contact-card,
.privacy-nav,
.privacy-content,
.terms-nav,
.terms-content {
    padding: 30px;
}

.contact-form-card h2,
.contact-info-card h2,
.privacy-nav h3,
.terms-nav h3,
.contact-card h3 {
    color: var(--text-main);
    margin-bottom: 18px;
}

.contact-methods + .contact-methods,
.office-locations + .contact-methods {
    margin-top: 24px;
}

.contact-item,
.contact-details a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: var(--text-main);
    text-decoration: none;
    background: var(--surface-variant);
    margin-top: 10px;
}

.contact-item:hover,
.contact-details a:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0.95rem 1.4rem;
    border: 0;
    border-radius: 14px;
    background: var(--primary-blue);
    color: var(--surface-white);
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.btn-submit:hover {
    background: var(--primary-blue-dark);
    color: var(--surface-white);
}

.faq-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.faq-items {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    background: var(--surface-white);
    overflow: hidden;
}

.faq-question {
    color: var(--text-main);
}

.faq-question:hover,
.faq-question.active {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.faq-answer,
.privacy-content .content-section,
.terms-content .content-section {
    color: var(--text-muted);
}

.privacy-nav ul,
.terms-nav ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy-nav a,
.terms-nav a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: var(--text-main);
    text-decoration: none;
    background: var(--surface-variant);
}

.privacy-nav a:hover,
.privacy-nav a.active,
.terms-nav a:hover,
.terms-nav a.active {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.privacy-content,
.terms-content {
    display: grid;
    gap: 20px;
}

.privacy-content .content-section,
.terms-content .content-section {
    margin: 0;
    padding: 0;
    background: transparent;
}

.privacy-content .content-section h2,
.terms-content .content-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-main);
}

.last-updated {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.info-box,
.highlight-box,
.acceptance-box {
    margin-top: 18px;
    padding: 22px;
    border-radius: 20px;
    background: var(--surface-variant);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.dashboard-shell {
    padding: 34px 0 82px;
    background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
}

.dashboard-lead-card {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 30px;
    margin-bottom: 28px;
}

.dashboard-lead-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dashboard-lead-chip {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.dashboard-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dashboard-page-header {
    margin-bottom: 28px;
}

.profile-card {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

@media (max-width: 1024px) {
    .contact-layout,
    .privacy-layout,
    .terms-layout,
    .faq-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-lead-card {
        flex-direction: column;
    }
}

/* ============================================
   BESTCABS GREEN FRONTEND THEME OVERRIDES
   ============================================ */

body,
.dashboard-shell,
.customer-auth-section,
.customer-register-page main,
.corporate-login-page main,
.corporate-register-page main,
.profile-section,
.content-hero,
.seo-heathrow-content {
    background:
        radial-gradient(circle at top left, rgba(31, 122, 140, 0.1), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbfdfe 60%, #f6fafc 100%);
}

.login-header,
.form-header,
.profile-sidebar,
.picker-confirm,
.btn-primary,
.btn-cta-primary,
.btn-book,
.cta-button,
.search-button,
.get-quote-button,
.vehicle-quote-button,
.header-quote-btn,
.profile-form .btn.btn-primary {
    background: var(--brand-primary) !important;
    color: var(--surface-white) !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 16px 30px rgba(31, 122, 140, 0.18) !important;
}

.corporate-login-page .btn.btn-block:hover,
.corporate-register-page .btn.btn-block:hover,
.customer-login-page .btn.btn-block:hover,
.customer-register-page .btn.btn-block:hover,
.picker-confirm:hover,
.picker-confirm:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-cta-primary:hover,
.btn-cta-primary:focus-visible,
.btn-book:hover,
.btn-book:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.search-button:hover,
.search-button:focus-visible,
.get-quote-button:hover,
.get-quote-button:focus-visible,
.vehicle-quote-button:hover,
.vehicle-quote-button:focus-visible,
.header-quote-btn:hover,
.header-quote-btn:focus-visible,
.profile-form .btn.btn-primary:hover,
.profile-form .btn.btn-primary:focus-visible {
    background: var(--brand-primary-hover) !important;
    color: var(--surface-white) !important;
    border-color: var(--brand-primary-hover) !important;
    box-shadow: 0 18px 34px rgba(22, 102, 120, 0.22) !important;
}

.btn-secondary-link,
.btn-secondary-link:visited {
    border-color: rgba(31, 122, 140, 0.18);
    color: var(--brand-shell);
}

.btn-secondary-link:hover,
.btn-secondary-link:focus-visible {
    background: color-mix(in srgb, var(--brand-soft) 42%, #ffffff 58%);
    color: var(--brand-shell);
    border-color: rgba(31, 122, 140, 0.3);
    box-shadow: 0 16px 30px rgba(31, 122, 140, 0.12);
}

.login-footer a,
.form-footer a,
.signup-link a,
.page-header h1,
.privacy-nav a:hover,
.privacy-nav a.active,
.terms-nav a:hover,
.terms-nav a.active,
.last-updated,
.dashboard-lead-chip,
.content-hero__eyebrow,
.page-section-heading__eyebrow,
.route-card-kicker,
.trust-chip-card__label,
.service-route-booking-card .via-toggle,
.picker-title,
.time-label,
.calendar-weekday,
.picker-close,
.time-arrow {
    color: var(--brand-primary-hover) !important;
}

.privacy-nav a:hover,
.privacy-nav a.active,
.terms-nav a:hover,
.terms-nav a.active,
.dashboard-lead-chip,
.content-hero__eyebrow,
.page-section-heading__eyebrow,
.route-card-kicker,
.trust-chip-card__label,
.service-route-booking-card .via-toggle,
.calendar-day:hover,
.last-updated {
    background: color-mix(in srgb, var(--brand-soft) 46%, #ffffff 54%) !important;
}

.dropdown-menu,
.service-route-booking-card,
.customer-login-card,
.customer-register-card,
.form-container,
.profile-card,
.custom-picker-dropdown,
.info-box,
.highlight-box,
.acceptance-box,
.card {
    border-color: rgba(31, 122, 140, 0.12) !important;
    box-shadow: 0 22px 48px rgba(2, 43, 58, 0.08) !important;
}

.dropdown-menu a:hover,
.dropdown-menu .dropdown-item:hover {
    background: color-mix(in srgb, var(--brand-soft) 42%, #ffffff 58%);
    color: var(--brand-shell);
}

.service-route-booking-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 252, 0.98));
}

.service-route-booking-card .booking-form input:hover,
.service-route-booking-card .booking-form select:hover,
.service-route-booking-card .via-section input:hover,
.corporate-login-page .form-control:hover,
.corporate-register-page .form-control:hover,
.customer-login-page .form-control:hover,
.customer-register-page .form-control:hover,
.profile-form .form-control:hover {
    border-color: rgba(31, 122, 140, 0.28) !important;
}

.service-route-booking-card .booking-form input:focus,
.service-route-booking-card .booking-form select:focus,
.service-route-booking-card .via-section input:focus,
.corporate-login-page .form-control:focus,
.corporate-register-page .form-control:focus,
.customer-login-page .form-control:focus,
.customer-register-page .form-control:focus,
.profile-form .form-control:focus,
.calendar-day.today,
.time-input:focus {
    border-color: rgba(31, 122, 140, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.14) !important;
    outline: none;
}

.custom-picker-dropdown,
.time-input,
.service-route-booking-card .booking-form input,
.service-route-booking-card .booking-form select,
.service-route-booking-card .booking-form .form-input,
.service-route-booking-card .via-section input {
    background: var(--surface-white) !important;
}

.calendar-day.selected {
    background: var(--brand-primary) !important;
    color: var(--surface-white) !important;
}

.profile-initials,
.service-route-booking-card .via-toggle:hover {
    background: rgba(31, 122, 140, 0.14) !important;
}

.service-route-booking-card .via-toggle i,
.corporate-login-page .form-label,
.corporate-register-page .form-label,
.customer-login-page .form-label,
.customer-register-page .form-label,
.profile-form label {
    color: var(--brand-primary) !important;
}

.content-hero {
    background:
        radial-gradient(circle at top left, rgba(31, 122, 140, 0.12), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfc 62%, #f4f9fa 100%);
}

.dashboard-shell {
    padding: 34px 0 82px;
}

.footer,
footer.site-footer,
.site-footer {
    background: var(--brand-shell) !important;
}

.footer,
.footer p,
.footer li,
.footer a,
footer.site-footer,
footer.site-footer p,
footer.site-footer a,
.site-footer,
.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.82) !important;
}

.footer a:hover,
footer.site-footer a:hover,
.site-footer a:hover {
    color: #ffffff !important;
}

/* ============================================
   BESTCABS BOOKING CHAT WIDGET
   ============================================ */

.bestcabs-chat-launcher {
    position: fixed;
    right: 26px;
    bottom: 118px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-shell);
    color: #ffffff;
    box-shadow: 0 22px 46px rgba(2, 43, 58, 0.24);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bestcabs-chat-launcher:hover,
.bestcabs-chat-launcher:focus-visible {
    transform: translateY(-2px);
    background: var(--brand-primary);
    box-shadow: 0 26px 52px rgba(31, 122, 140, 0.28);
    outline: none;
}

.bestcabs-chat-launcher__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
}

.bestcabs-chat-launcher__label {
    font-weight: 700;
    white-space: nowrap;
}

.bestcabs-chat-widget {
    position: fixed;
    inset: 0;
    z-index: 1250;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bestcabs-chat-widget.is-open {
    pointer-events: auto;
    opacity: 1;
}

.bestcabs-chat-widget__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 43, 58, 0.42);
}

.bestcabs-chat-widget__panel {
    position: absolute;
    right: 18px;
    top: 18px;
    bottom: 18px;
    width: min(720px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 30px;
    overflow: hidden;
    background: #f7fbfc;
    box-shadow: 0 28px 80px rgba(2, 43, 58, 0.26);
    transform: translateY(12px);
    transition: transform 0.2s ease;
}

.bestcabs-chat-widget.is-open .bestcabs-chat-widget__panel {
    transform: translateY(0);
}

.bestcabs-chat-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px 20px;
    background:
        radial-gradient(circle at top right, rgba(191, 219, 247, 0.15), transparent 30%),
        linear-gradient(180deg, #022b3a 0%, #103946 100%);
    color: #ffffff;
}

.bestcabs-chat-widget__header h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.bestcabs-chat-widget__eyebrow {
    margin: 0;
    color: rgba(191, 219, 247, 0.9);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bestcabs-chat-widget__header-actions {
    display: inline-flex;
    gap: 10px;
}

.bestcabs-chat-widget__icon-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
}

.bestcabs-chat-widget__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(191, 219, 247, 0.2);
    border-bottom: 1px solid rgba(31, 122, 140, 0.12);
}

.bestcabs-chat-widget__summary span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.82rem;
    box-shadow: 0 8px 22px rgba(2, 43, 58, 0.06);
}

.bestcabs-chat-widget__messages {
    flex: 0 0 auto;
    min-height: 56px;
    max-height: 120px;
    overflow-y: auto;
    padding: 16px 24px 8px;
    background:
        radial-gradient(circle at top left, rgba(191, 219, 247, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbfc 0%, #f3f8fa 100%);
}

.bestcabs-chat-widget__messages:not(:empty)::before {
    content: "Previous steps";
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bestcabs-chat-history-item {
    margin-bottom: 8px;
    border: 1px solid rgba(31, 122, 140, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.bestcabs-chat-history-item summary {
    list-style: none;
}

.bestcabs-chat-history-item summary::-webkit-details-marker {
    display: none;
}

.bestcabs-chat-history-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.bestcabs-chat-history-role {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(31, 122, 140, 0.12);
    color: var(--brand-shell);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bestcabs-chat-history-item--user .bestcabs-chat-history-role {
    background: rgba(31, 122, 140, 0.18);
}

.bestcabs-chat-history-preview {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--text-main);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bestcabs-chat-history-body {
    padding: 0 12px 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.bestcabs-chat-stage {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
    border: 1px solid rgba(31, 122, 140, 0.12);
    box-shadow: 0 18px 40px rgba(2, 43, 58, 0.06);
}

.bestcabs-chat-widget__composer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 18px 24px 22px;
    background: #ffffff;
    border-top: 1px solid rgba(31, 122, 140, 0.12);
    overscroll-behavior: contain;
}

.bestcabs-chat-widget__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 16px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    overscroll-behavior: contain;
}

.bestcabs-chat-widget__footer {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(31, 122, 140, 0.1);
    background: #ffffff;
}

.bestcabs-chat-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.bestcabs-chat-step-header h4 {
    margin: 0 0 6px;
    color: var(--brand-shell);
    font-size: 1.24rem;
}

.bestcabs-chat-step-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.bestcabs-chat-label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
    overflow: visible;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.bestcabs-chat-address-field {
    position: relative;
}

.bestcabs-chat-address-hint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(191, 219, 247, 0.14);
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.bestcabs-chat-address-hint i {
    margin-top: 2px;
    color: var(--brand-primary);
}

.bestcabs-chat-input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(31, 122, 140, 0.18);
    background: #ffffff;
    color: var(--text-main);
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.bestcabs-chat-input:focus {
    outline: none;
    border-color: rgba(31, 122, 140, 0.5);
    box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.12);
}

.bestcabs-chat-input--textarea {
    min-height: 88px;
    resize: vertical;
}

.bestcabs-chat-submit,
.bestcabs-chat-action,
.bestcabs-chat-select,
.bestcabs-chat-footer-btn {
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.bestcabs-chat-submit,
.bestcabs-chat-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 18px;
    border-radius: 18px;
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(31, 122, 140, 0.2);
    text-decoration: none;
}

.bestcabs-chat-submit:hover,
.bestcabs-chat-select:hover,
.bestcabs-chat-submit:focus-visible,
.bestcabs-chat-select:focus-visible {
    background: var(--brand-primary-hover);
    color: #ffffff;
    outline: none;
}

.bestcabs-chat-actions {
    display: grid;
    gap: 10px;
}

.bestcabs-chat-action,
.bestcabs-chat-footer-btn--secondary {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(191, 219, 247, 0.16);
    color: var(--brand-shell);
    border: 1px solid rgba(31, 122, 140, 0.16);
}

.bestcabs-chat-action:hover,
.bestcabs-chat-footer-btn--secondary:hover {
    background: rgba(31, 122, 140, 0.12);
}

.bestcabs-chat-footer-btn--secondary {
    width: 100%;
    justify-content: center;
}

.bestcabs-chat-grid {
    display: grid;
    gap: 14px;
}

.bestcabs-chat-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bestcabs-chat-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bestcabs-chat-grid--three .bestcabs-chat-label {
    min-width: 0;
}

.bestcabs-chat-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 0 18px;
    color: var(--text-muted);
    text-align: center;
}

.bestcabs-chat-loading__spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(31, 122, 140, 0.16);
    border-top-color: var(--brand-primary);
    animation: bestcabsChatSpin 1s linear infinite;
}

@keyframes bestcabsChatSpin {
    to {
        transform: rotate(360deg);
    }
}

.bestcabs-chat-vehicles {
    display: grid;
    gap: 14px;
    max-height: none;
    overflow: visible;
    padding-right: 4px;
    overscroll-behavior: contain;
}

.bestcabs-chat-vehicle-card,
.bestcabs-chat-callout,
.bestcabs-chat-airport-block,
.bestcabs-chat-result {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
    border: 1px solid rgba(31, 122, 140, 0.14);
    box-shadow: 0 16px 34px rgba(2, 43, 58, 0.06);
}

.bestcabs-chat-vehicle-card__top,
.bestcabs-chat-vehicle-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.bestcabs-chat-vehicle-card__top h4,
.bestcabs-chat-airport-block h4,
.bestcabs-chat-result h4 {
    margin: 0 0 4px;
    color: var(--text-main);
    font-size: 1.08rem;
}

.bestcabs-chat-vehicle-card__top p,
.bestcabs-chat-result p {
    margin: 0;
    color: var(--text-muted);
}

.bestcabs-chat-vehicle-card__price {
    text-align: right;
}

.bestcabs-chat-vehicle-card__price span,
.bestcabs-chat-result__price {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.bestcabs-chat-vehicle-card__price strong,
.bestcabs-chat-result__price strong {
    color: var(--brand-shell);
    font-size: 1.24rem;
}

.bestcabs-chat-vehicle-card__meta {
    flex-wrap: wrap;
    margin: 12px 0 14px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.bestcabs-chat-vehicle-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bestcabs-chat-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bestcabs-chat-callout strong {
    color: var(--brand-shell);
}

.bestcabs-chat-callout span {
    color: var(--text-muted);
}

.bestcabs-chat-airport-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bestcabs-chat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.bestcabs-chat-result {
    text-align: center;
}

.bestcabs-chat-result__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 157, 103, 0.14);
    color: #1f9d67;
    font-size: 1.4rem;
}

.bestcabs-chat-footer-note,
.bestcabs-chat-error {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.bestcabs-chat-footer-note {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(191, 219, 247, 0.12);
}

.bestcabs-chat-error {
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(214, 69, 80, 0.08);
    color: #a83b45;
}

.bestcabs-chat-widget .uk-address-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    max-height: 340px;
    min-width: 100%;
    width: 100%;
    overflow-y: auto;
    border-radius: 18px;
    box-shadow: 0 22px 48px rgba(2, 43, 58, 0.18);
    border: 1px solid rgba(31, 122, 140, 0.16);
    margin-top: 0;
    margin-bottom: 0;
}

.bestcabs-chat-widget .uk-address-results.uk-address-visible::before {
    content: "Top matches";
    display: block;
    padding: 10px 16px 6px;
    color: var(--brand-shell);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(191, 219, 247, 0.08);
}

.bestcabs-chat-widget .uk-address-item {
    padding: 14px 16px;
}

.bestcabs-chat-widget .uk-address-main {
    font-size: 0.98rem;
}

.bestcabs-chat-widget .uk-address-postcode {
    font-size: 0.84rem;
}

body.chat-widget-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .bestcabs-chat-launcher {
        right: 16px;
        bottom: 104px;
        padding: 14px;
    }

    .bestcabs-chat-launcher__label {
        display: none;
    }

    .bestcabs-chat-widget__panel {
        right: 12px;
        top: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        border-radius: 24px;
    }

    .bestcabs-chat-widget__messages {
        min-height: 56px;
        max-height: 110px;
    }

    .bestcabs-chat-widget__composer {
        min-height: 0;
    }

    .bestcabs-chat-grid--two,
    .bestcabs-chat-grid--three {
        grid-template-columns: 1fr;
    }

    .bestcabs-chat-callout,
    .bestcabs-chat-vehicle-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .bestcabs-chat-vehicle-card__price {
        text-align: left;
    }

    .bestcabs-chat-stage {
        padding: 16px;
    }
}
