/* Main Styling for Executive Lane */
/* Modern Black & White Design inspired by Blacklane */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #333333;
    --color-light-grey: #f4f4f4;
    --color-border: #e0e0e0;

    --font-main: 'Inter', sans-serif;

    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-lg);
}

.col {
    flex: 1;
    min-width: 300px;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Top Bar */
.header-top-bar {
    /* Premium Mercedes Leather Texture */
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;

    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    z-index: 1001;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-contact a:hover {
    opacity: 0.8;
}

.top-contact .material-symbols-outlined {
    font-size: 1.1rem;
}

.lang-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.lang-link:hover,
.lang-link.active {
    color: #fff;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Header Main */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: var(--spacing-sm) 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    /* Vertical padding */
    position: relative;
    /* Context for absolute positioning of mobile menu */
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
    padding: 5px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 280px;
}

nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.cta-button {
    /* Premium Mercedes Leather Texture */
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;

    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
    opacity: 0.95;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    /* Safe space for header */
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-text);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    /* Side by side */
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: var(--spacing-lg);
}

.hero-text-column {
    color: var(--color-secondary);
    max-width: 600px;
    padding-right: var(--spacing-lg);
}

.hero-text-column h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero-text-column p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-subheading {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.hero-btn .icon-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.hero-btn:hover .icon-arrow {
    transform: translateX(4px) translateY(-4px);
}

.hero-form-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
}

/* Transfer Form Widget */
.booking-widget {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 0;
    max-width: 450px;
    animation: slideUp 0.8s ease-out;
    padding: 0;
    overflow: hidden;
}

.booking-tabs-header {
    display: flex;
    background: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    background: #ffffff;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.booking-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row .bl-input-box {
    flex: 1;
    width: 100%;
    /* Ensure they take available space */
}

.bl-input-box {
    display: flex;
    align-items: flex-start;
    background: #f4f6f8;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    gap: 12px;
    transition: background-color 0.3s;
}

.bl-input-box:focus-within {
    background: #eef2f5;
    box-shadow: 0 0 0 1px #d1d5db;
}

.input-icon {
    font-size: 1.2rem;
    color: #555;
    margin-top: 2px;
    margin-right: 8px;
    /* Added spacing for material icons */
}

.input-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-content label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 2px;
}

.bl-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #1a1a1a;
    padding: 0;
    outline: none;
    font-weight: 500;
}

.bl-input::placeholder {
    color: #999;
    font-weight: 400;
}

.form-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
    margin-bottom: 5px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
}


.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-accent);
}

/* Sections General */
section {
    padding: 80px 0;
    scroll-margin-top: 100px;
    /* Fix for sticky header */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Flatpickr Material Design Overrides (Black & White Theme for Google-like feel) */
/* Flatpickr Material Design Overrides (Black & White Theme for Google-like feel) */
.flatpickr-calendar {
    font-family: var(--font-main) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #000 !important;
}

/* Make headers solid black */
.flatpickr-month,
.flatpickr-weekdays {
    background: #000 !important;
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #000 !important;
    color: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: #000 !important;
}

/* Month Selection Overrides */
.flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-month.endRange {
    background: #000 !important;
    border-color: #000 !important;
}

.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
    background: #f0f0f0 !important;
    border-color: #e0e0e0 !important;
}

/* Ensure no blue on dropdown months */
.flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: #000 !important;
    color: #fff !important;
}

.flatpickr-monthDropdown-months .flatpickr-monthDropdown-month:hover {
    background-color: #333 !important;
}

.flatpickr-weekday {
    color: #ccc !important;
    background: #000 !important;
}

/* Day Selection Styling */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Today's Date */
.flatpickr-day.today {
    border-color: #333 !important;
}

.flatpickr-day.today:hover {
    border-color: #000 !important;
    background: #f0f0f0 !important;
    color: #000 !important;
}

/* Hover States */
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: #f4f4f4 !important;
    border-color: #f4f4f4 !important;
    color: #000 !important;
}

/* Time Picker Styling */
.flatpickr-time {
    background: #fff !important;
    border-top: 1px solid #eee !important;
}

.flatpickr-time input {
    color: #333 !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: #333 !important;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
    color: #fff !important;
    font-weight: 700 !important;
    background: #f9f9f9 !important;
}

/* Month & Year Dropdown/Input Overrides */
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: #000 !important;
    color: #fff !important;
}

.flatpickr-current-month input.cur-year {
    color: #fff !important;
    font-weight: 700 !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: #fff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: #fff !important;
}

/* Specific fix for the "checked" or "active" month in the dropdown */
.flatpickr-monthDropdown-months option:checked {
    background-color: #333 !important;
    /* Dark grey for selected */
    color: #fff !important;
}

/* Focus states for year input */
.flatpickr-current-month input.cur-year:focus {
    color: #fff !important;
    background: transparent !important;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 0;
    border: none;
    /* Removed border for cleaner look */
    border-radius: var(--border-radius-md);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 240px;
    /* Slightly taller */
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    /* Subtle overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-icon {
    display: none;
}

/* Fleet */
/* Fleet */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 1100px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

.fleet-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.fleet-header {
    margin-bottom: 20px;
}

.fleet-header h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.fleet-header p {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.fleet-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    min-height: 140px;
}

.fleet-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.fleet-specs {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.spec-icon {
    width: 32px;
    height: 32px;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
}

/* Contact */
.contact-section {
    background-color: var(--color-light-grey);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-header-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.contact-header-text p {
    color: #666;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon-box span {
    font-size: 28px;
    color: var(--color-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.contact-details span,
.contact-details a {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-details a:hover {
    color: #000;
    text-decoration: underline;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

/* Footer */
/* Footer */
footer {
    /* Premium Mercedes Leather Texture */
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;

    color: var(--color-secondary);
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.5;
    max-width: 300px;
    padding-left: 15px;
}

.footer-links-col,
.footer-contact-col,
.footer-social-col {
    flex: 1;
    min-width: 150px;
}

.footer-top h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col a,
.footer-contact-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover,
.footer-contact-col a:hover {
    color: #fff;
    padding-left: 5px;
    /* Slight movement on hover */
}

/* Contact Column Specifics */
.footer-contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact-col span.material-symbols-outlined {
    font-size: 1.2rem;
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #aaa;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges {
    color: #aaa;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .header-inner {
        flex-direction: row;
        /* Keep row to have logo left, burger right */
        flex-wrap: wrap;
        /* Allow wrapping if needed, though we use absolute for menu */
    }

    .mobile-menu-toggle {
        display: block;
        /* Show hamburger on mobile */
    }

    .main-navigation {
        display: none;
        /* Hide menu by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--color-border);
        align-items: center;
        gap: 20px;
        z-index: 999;
    }

    .main-navigation.active {
        display: flex;
        /* Show when active */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        /* Center align items */
        text-align: center;
        padding-top: 40px;
        gap: 40px;
    }

    .hero-text-column {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-form-column {
        width: 100%;
        max-width: 500px;
        /* Keep form width constrained */
        justify-content: center;
        text-align: left;
        /* Ensure form text is left aligned even if hero is centered */
    }

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

    /* Responsive Footer */
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand,
    .footer-links-col,
    .footer-contact-col,
    .footer-social-col {
        min-width: 100%;
        flex: auto;
    }

    .footer-brand {
        margin-bottom: 10px;
    }

    /* Tablet Typography */
    .hero-text-column h1 {
        font-size: 3rem;
        /* Scale down slightly from 3.5rem */
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .hero-text-column h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* Booking Page Specifics */
.booking-page-header {
    background-color: var(--color-space-cadet);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Premium Mercedes Leather Texture (Simulated via CSS/SVG) */
    background-color: #111;
    background-image:
        /* Leather grain noise */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        /* Subtle lighting gradient */
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;
    z-index: 1;
}

.booking-page-header .container {
    position: relative;
    z-index: 2;
}

.booking-page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.booking-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.booking-page-container {
    max-width: 800px;
    /* Reduced from 1000px for better centering focus */
    margin: -60px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    display: flex;
    /* Added flex to ensure child centering if needed, though block context usually works */
    justify-content: center;
}

.booking-widget-standalone {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    /* Override the 450px limit from .booking-widget */
    margin: 0 auto;
    /* Enhance centering */
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form-full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-full-width {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {

    /* Form Mobile Fixes */
    .booking-widget {
        width: 100%;
        max-width: 100%;
        border-radius: var(--border-radius-md);
        /* Keep rounded corners */
        margin: 0 auto;
        text-align: left;
        /* Override hero center alignment */
    }

    .booking-form {
        padding: 15px;
    }

    .bl-input-box {
        padding: 10px;
        gap: 10px;
        align-items: center;
        /* Center icon vertically with input group */
    }

    .input-icon {
        font-size: 1.2rem;
        margin-top: 0;
        /* Remove top margin to center */
    }

    .input-content {
        min-width: 0;
        /* Prevent flex overflow */
    }

    .bl-input {
        font-size: 0.9rem;
        /* Prevent zooming on some mobiles */
        text-overflow: ellipsis;
        /* Handle long placeholders */
    }

    .bl-input::placeholder {
        font-size: 0.85rem;
    }
}

/* Autocomplete Dropdown (OpenStreetMap) */
.input-content {
    position: relative;
    /* Ensure dropdown positions relative to input */
    width: 100%;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hidden by default */
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #f4f4f4;
    transition: background-color 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: #f9f9f9;
}

/* Button Styles with Leather Texture */
.btn-submit {
    /* Premium Mercedes Leather Texture */
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;

    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    color: #fff;
}

/* Services Section Grid & Placeholders */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 200px;
    position: relative;
    background-color: #f4f4f4;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-placeholder .material-symbols-outlined {
    font-size: 64px;
    opacity: 0.8;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.service-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Icons with Leather Background */
.service-icon-wrapper {
    width: 100%;
    height: 240px;
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-icon-wrapper .material-symbols-outlined {
    font-size: 80px;
    color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

.service-card:hover .service-icon-wrapper .material-symbols-outlined {
    transform: scale(1.15);
    color: #ffffff;
    opacity: 1;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon-wrapper::after {
    opacity: 1;
}

/* Fleet Carousel */
/* Fleet Carousel - Premium Modern Design */
.fleet-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for buttons */
    max-width: 1300px;
    /* Slightly wider for better breathing room */
    margin: 0 auto;
}

.fleet-carousel-container {
    overflow: hidden;
    margin: 0 -20px;
    /* Reset padding context */
    padding: 40px 0;
    /* meaningful space for hover lift effects */
}

.fleet-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth elegant easing */
    width: 100%;
    touch-action: pan-y;
    /* Improve horizontal swipe handling */
}

.fleet-carousel-track .fleet-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    height: auto;

    /* Reset and Override Base Styles for Carousel */
    border: none;
    border-radius: 16px;
    /* Softer, more modern radius */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    /* Very subtle, premium shadow */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover Effect for Card */
.fleet-carousel-track .fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Deep soft shadow on hover */
}

/* Image improvements inside card */
.fleet-carousel-track .fleet-card .fleet-image-container {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fleet-carousel-track .fleet-card img {
    transition: transform 0.8s ease;
    /* Slow, cinematic zoom */
    width: 100%;
    display: block;
}

.fleet-carousel-track .fleet-card:hover img {
    transform: scale(1.05);
}

/* Typography refinements */
.fleet-carousel-track .fleet-card h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.fleet-carousel-track .fleet-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Hide grid */
.fleet-grid.carousel-mode {
    display: none;
}

/* Responsive Breakpoints */
@media (min-width: 600px) {
    .fleet-carousel-track .fleet-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 900px) {
    .fleet-carousel-track .fleet-card {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Navigation Buttons - Elegant & Minimal */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /* Premium Mercedes Leather Texture */
    background-color: #111;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
        radial-gradient(circle at 50% 0, rgba(50, 50, 50, 0.4), transparent 80%);
    background-size: 100px 100px, 100% 100%;

    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #fff;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.carousel-btn span {
    font-size: 1.5rem;
}

/* Pagination Dots - Modern Lines */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 30px;
    /* Line style */
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bdbdbd;
}

.dot.active {
    background: var(--color-primary);
    /* Brand color */
    width: 40px;
    /* Active one is slightly longer */
}

/* Design Credit Link Hover */
.copyright a:hover {
    color: #e63946 !important;

    text-decoration: none !important;
}

/* Typewriter Effect Loop */
.copyright a {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #e63946;
    /* Cursor color */
    vertical-align: bottom;
    width: 0;
    max-width: fit-content;
    /* Ensure it doesn't exceed */
    animation:
        typewriter 6s steps(40) infinite,
        blink 0.75s step-end infinite;
}

@keyframes typewriter {
    0% {
        width: 0;
    }

    30% {
        width: 30ch;
    }

    /* Type out approx length */
    60% {
        width: 30ch;
    }

    /* Pause */
    80% {
        width: 0;
    }

    /* Delete */
    100% {
        width: 0;
    }

    /* Pause empty */
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #e63946
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .booking-page-header {
        padding: 120px 0 60px;
        /* Reduced padding on mobile */
    }

    .booking-page-header h1 {
        font-size: 2.2rem;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        gap: 30px;
    }


    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .fleet-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .booking-page-header {
        padding: 100px 0 40px;
    }

    .booking-page-header h1 {
        font-size: 1.8rem;
    }

    /* Carousel small mobile */
    .fleet-carousel-wrapper {
        padding: 0 10px;
    }

    .carousel-btn {
        display: flex;
        /* Show buttons */
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
    }

    .carousel-btn span {
        font-size: 1.2rem;
    }
}

/* Adjust header padding for mobile/tablet */
@media (max-width: 900px) {
    .header-inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 600px) {
    .copyright {
        justify-content: center;
        text-align: center;
    }
}