/* CSS VARIABLES FOR YOUR BRAND COLORS (MATCHED TO LOGO) */
:root {
    --color-gold: #D7A829;
    --color-gold-hover: #c29724;
    --color-dark: #000000;
    --color-light: #FFFFFF;
    --color-silver: #D1D1D1;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* BASIC RESET & BODY STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-light);
    overflow-x: hidden;
    overflow-y: scroll;
}

body.body-no-scroll {
    overflow-y: scroll;
}

/* UNIFIED CONTAINER FOR ALL PAGE CONTENT */
.container {
    max-width: 1800px; /* Your required max-width */
    width: 100%;
    margin: 0 auto; /* This centers the container on the page */
    padding: 0 40px; /* This creates the space from the browser edges */
}

/* HEADER STYLING */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
}

/* NEW: This class now only handles the flexbox layout inside the container */
.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-center, .header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
}

/* Header Elements */
.header-left .fa-phone {
    font-size: 24px;
    color: var(--color-gold);
}
.phone-details {
    margin-left: 15px;
}
.phone-details span {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--color-silver);
}
.phone-details a {
    color: var(--color-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.main-logo {
    height: 85px;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 30px;
}
.hamburger-menu .fa-bars {
    font-size: 20px;
}
.hamburger-menu span {
    margin-left: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* BUTTON STYLES */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: 1px solid var(--color-gold);
    font-weight: bold;
}
.btn-primary:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-light);
}
.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* HERO SECTION STYLING */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex; /* This allows vertical alignment of the content */
    align-items: center; /* This vertically centers the .container */
    justify-content: center; /* This horizontally centers the .container */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover; /* --- THIS IS THE ONLY LINE ADDED. IT IS THE FIX. --- */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.pre-title {
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.pre-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    height: 2px;
    width: 40px;
    background-color: var(--color-gold);
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-buttons .btn {
    margin-right: 15px;
}

/* SIDE NAVIGATION MENU */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 400px;
    max-width: 90%;
    background-color: #0A0A0A;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.side-nav.open {
    pointer-events: auto;
}

.side-nav.open {
    transform: translateX(0);
}

.side-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.side-menu-logo {
    height: 50px;
}

.close-btn {
    font-size: 40px;
    color: var(--color-silver);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--color-light);
}

.side-nav-links {
    list-style: none;
}

.side-nav-links li {
    margin-bottom: 25px;
}

.side-nav-links a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.side-nav-links a:hover {
    color: var(--color-gold);
}

.side-nav-contact {
    display: none;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.side-nav-contact span {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-silver);
    margin-bottom: 5px;
}
.side-nav-contact a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.side-nav-contact a:hover {
    color: var(--color-gold);
}

/* PAGE WRAPPER - Prevent shift when sidebar opens */
#page-wrapper {
    position: relative;
    z-index: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .header-left {
        display: none;
    }
    .header-center {
        flex: 1;
        justify-content: flex-start;
    }
    .header-right {
        flex: none;
    }
    .hamburger-menu {
        margin-right: 0;
    }
    .header-right .btn-primary {
        display: none;
    }
    .main-logo {
        height: 55px;
    }
    
    .hero-content {
        text-align: center;
    }
    .pre-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        margin: 0 0 15px 0;
        width: 100%;
        max-width: 250px;
    }
    .side-nav-contact {
        display: block;
    }
}





































































/* All previous CSS remains the same... */

/* ================================================================ */
/*                      BOOKING FORM STYLES                          */
/* ================================================================ */
.booking-form-section {
    background-color: #F5F1E9;
    padding: 60px 0;
    color: #333;
}
.booking-type-toggle {
    display: inline-flex;
    margin-bottom: 20px;
    border: 1px solid #E0D9CB;
    border-radius: 5px;
    background-color: #fff;
}
.toggle-btn {
    padding: 12px 25px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background-color: var(--color-gold);
    color: var(--color-dark);
    font-weight: bold;
    border-radius: 5px;
}
.booking-form-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.form-fields-grid {
    display: none;
    gap: 1px;
    background-color: #E0D9CB;
}
.form-fields-grid.active {
    display: grid;
}
#distanceForm.active {
    grid-template-columns: repeat(5, 1fr);
}
#hourlyForm.active {
    grid-template-columns: repeat(5, 1fr);
}
.form-field {
    background-color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.form-field label {
    font-size: 11px;
    font-weight: bold;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-input {
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 5px 0;
    color: #333;
    background-color: transparent;
}
.form-input:focus {
    outline: none;
}
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D7A829' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}
.form-input::placeholder {
    color: #aaa;
}
input.form-input.flatpickr-input {
    background: transparent;
}
#return-fields {
    grid-column: span 2;
    display: none;
    gap: 1px;
    background-color: #E0D9CB;
}
#return-fields.visible {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.book-now-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.book-now-btn {
    border-radius: 5px;
}
.pac-container {
    z-index: 3000 !important;
}
body.body-no-scroll {
    overflow: hidden;
}

/* --- CRITICAL FIX: Ensure Flatpickr calendar is always on top --- */
.flatpickr-calendar {
    z-index: 9999 !important;
}

/* ================================================================ */
/*                         MAIN RESPONSIVE STYLES                    */
/* ================================================================ */
@media (max-width: 992px) {
    .container, .header-wrapper { padding: 0 20px; }
    .hero-content h1 { font-size: 54px; }
}
@media (max-width: 768px) {
    /* Header & Hero */
    .header-left { display: none; }
    .header-center { flex: 1; justify-content: flex-start; }
    .header-right { flex: none; }
    .hamburger-menu { margin-right: 0; }
    .header-right .btn-primary { display: none; }
    .main-logo { height: 55px; }
    .hero-content { text-align: center; }
    .pre-title::before { left: 50%; transform: translateX(-50%); }
    .hero-content h1 { font-size: 42px; }
    .hero-buttons { display: flex; flex-direction: column; align-items: center; }
    .hero-buttons .btn { margin: 0 0 15px 0; width: 100%; max-width: 250px; }
    .side-nav-contact { display: block; }
}
@media (max-width: 1200px) {
    /* Booking form on tablets */
    #distanceForm.active,
    #hourlyForm.active {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================================================ */
/*       CORRECTED RESPONSIVE STYLES FOR BOOKING FORM ON MOBILE     */
/* ================================================================ */
@media (max-width: 768px) {
    form.booking-form {
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        overflow: hidden;
    }
    .booking-form-wrapper {
        padding: 0; margin: 0; box-shadow: none; border-radius: 0;
    }
    .booking-type-toggle {
        display: flex; flex-direction: column; margin-bottom: 0; border: none; background-color: transparent;
    }
    .toggle-btn {
        width: 100%; padding: 15px 20px; background-color: transparent; border: none; border-bottom: 1px solid #E0D9CB; border-radius: 0 !important; text-align: center;
    }
    .toggle-btn.active {
        background-color: var(--color-gold); border-color: var(--color-gold);
    }
    .form-fields-grid.active {
        display: block; gap: 0; background-color: transparent;
    }
    .form-field {
        padding: 15px 20px; border-bottom: 1px solid #E0D9CB;
    }
    .form-fields-grid > .form-field:last-of-type {
        border-bottom: none;
    }

    /* --- CRITICAL FIX FOR RETURN FIELDS ON MOBILE --- */
    #return-fields {
        grid-column: span 1; padding: 0;
    }
    #return-fields.visible {
        /* This rule no longer needs to force 'display: block' */
        /* JS will now correctly handle showing/hiding */
        border-bottom: 1px solid #E0D9CB;
    }
    #return-fields .form-field:first-of-type {
        border-bottom: 1px solid #E0D9CB;
    }
    
    .book-now-wrapper {
        justify-content: center;
    }
    .book-now-btn {
        width: 100%;
    }
}


































































/*=============================================
=            Why Choose Us Section            =
=============================================*/

/* Main wrapper for the section */
.why-choose-us {
    padding: 80px 0; /* Adds space above and below the section */
    background-color: #000000; /* Assuming a black background as per your variables */
}

/* Flexbox container to create the two-column layout */
.wcu-content-wrapper {
    display: flex;
    align-items: center; /* Vertically aligns the image and text */
    gap: 60px; /* Creates space between the image and the text */
}

/* Column 1: Image Container */
.wcu-image-container {
    flex: 1 1 50%; /* Allows the container to take up 50% of the width */
    min-width: 0;
}

.wcu-image-container img {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Column 2: Text Content Container */
.wcu-text-container {
    flex: 1 1 50%; /* Allows the container to take up the other 50% */
}

.wcu-text-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px; /* Large, elegant heading */
    color: #FFFFFF;
    margin-bottom: 20px;
}

.wcu-text-container p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #D1D1D1; /* Using silver for body text for better readability */
    margin-bottom: 25px;
}

/* Styling for the bullet-point list */
.wcu-text-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.wcu-text-container ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #D1D1D1;
    margin-bottom: 15px;
    padding-left: 28px; /* Space for the custom bullet */
    position: relative;
}

/* Custom bullet styling */
.wcu-text-container ul li::before {
    content: '•';
    color: #D7A829; /* Your brand's gold color */
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px; /* Fine-tune vertical alignment */
}

.wcu-text-container ul li strong {
    color: #FFFFFF; /* Makes the bolded text stand out more */
}

/* Container for the stats blocks */
.stats-container {
    display: flex;
    gap: 20px; /* Space between each stat block */
    margin: 40px 0;
}

.stat-item {
    border: 1px solid #444; /* A subtle border */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Ensures all items take equal width */
    background-color: #1a1a1a; /* Slightly lighter than the background */
    transition: background-color 0.3s, border-color 0.3s;
}

.stat-item:hover {
    background-color: #222;
    border-color: #D7A829;
}

.stat-item .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-item .label {
    display: block;
    font-size: 14px;
    color: #D1D1D1;
    margin-top: 5px;
}

/* "Our Fleet" Button Styling */
.btn-fleet {
    display: inline-block;
    background-color: #D7A829; /* Gold color */
    color: #000000; /* Dark text */
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-fleet:hover {
    background-color: #c29724; /* Gold hover color */
}

/* Responsive Design for smaller screens */
@media (max-width: 992px) {
    .wcu-content-wrapper {
        flex-direction: column; /* Stacks the image and text vertically */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column; /* Stacks stats vertically on very small screens */
    }

    .wcu-text-container h2 {
        font-size: 36px;
    }
}

/*=====  End of Why Choose Us Section  ======*/



























































/*=======================================
=            Fleet Section            =
=======================================*/

.fleet-section {
    padding: 80px 0;
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* Header styling */
.fleet-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.fleet-section .header-icon-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    margin-bottom: 20px;
}

.fleet-section .header-icon {
    width: 24px;
    height: 24px;
}

.fleet-section .header-icon-wrapper span {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-dark);
}

.fleet-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.fleet-section .section-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Accordion general styling */
.fleet-accordion {
    max-width: 1800px; /* <--- THIS LINE HAS BEEN RE-ADDED AS REQUESTED */
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
    border-bottom: none;
}

/* Accordion header (the clickable bar) */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: var(--color-light);
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-header,
.accordion-header:hover {
    background-color: #f7f7f7;
}

.accordion-item.active .accordion-header {
    background-color: var(--color-gold);
}
.accordion-item.active .vehicle-title .vehicle-class,
.accordion-item.active .vehicle-title .vehicle-name {
    color: var(--color-dark);
}

.vehicle-title .vehicle-class {
    display: block;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #666;
    margin-bottom: 2px;
}

.vehicle-title .vehicle-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
}

/* Plus/Minus Icon */
.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-dark);
    transition: transform 0.4s ease;
}
.accordion-icon::before {
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
}
.accordion-icon::after {
    width: 2px;
    height: 100%;
    left: 9px;
    top: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(135deg);
}

/* Accordion content (the expandable area) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fdfdfd;
}

.vehicle-details-grid {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
}

.vehicle-image img {
    width: 100%;
    height: auto;
}

.vehicle-info h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 10px;
}
.vehicle-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 15px;
}
.features-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-list img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.vehicle-pricing {
    text-align: right;
    border-left: 1px solid #e0e0e0;
    padding-left: 40px;
}
.price-label {
    display: block;
    font-size: 14px;
    color: #666;
}
.price-value {
    display: block;
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 5px 0 15px;
}

.btn-view-details {
    display: inline-block;
    background-color: #333;
    color: var(--color-light);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.btn-view-details:hover {
    background-color: var(--color-dark);
}

/* "See More" button at the bottom */
.see-more-container {
    text-align: center;
    margin-top: 40px;
}
.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 15px 35px;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-see-more:hover {
    background-color: var(--color-gold-hover);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vehicle-details-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .features-list {
        grid-template-columns: 1fr;
        max-width: 250px;
        margin: 0 auto 20px;
        text-align: left;
    }
    .vehicle-pricing {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 30px;
    }
}
@media (max-width: 576px) {
    .accordion-header { padding: 15px 20px; }
    .vehicle-title .vehicle-name { font-size: 20px; }
    .vehicle-details-grid { padding: 20px; gap: 20px; }
}

/*=====  End of Fleet Section  ======*/



























































/*=======================================
=            Services Section           =
=======================================*/

.services-section {
    padding: 80px 0;
    background-color: var(--color-light);
    color: var(--color-dark);
}

.services-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.services-section .sub-heading {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-gold);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.services-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 15px;
}
.services-section .section-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* --- DESKTOP STYLES (993px and up) --- */
.services-slider-wrapper {
    position: relative;
    max-width: 1800px; /* Adhering to your max-width rule */
    margin: 0 auto;
}
.services-slider {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}
.service-slide {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-slide.active {
    flex: 5;
}
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-slide:hover .slide-bg {
    transform: scale(1.05);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}
.slide-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-icon img {
    width: 28px;
    height: 28px;
}
.slide-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: var(--color-light);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.service-slide.active .slide-content,
.service-slide.active .slide-icon {
    opacity: 1;
    transform: translateY(0);
}
.slide-content h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    margin-bottom: 5px;
}
.slide-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}
.btn-service {
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.btn-service:hover {
    background-color: var(--color-gold-hover);
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.slider-nav:hover {
    background-color: var(--color-light);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: -22px; }
.next-btn { right: -22px; }
.slider-nav svg { color: var(--color-dark); }
.slider-pagination {
    display: none; /* Hide dots on desktop */
}

/* --- MOBILE & TABLET STYLES (992px and below) --- */
@media (max-width: 992px) {
    .services-slider {
        /* Transform into a horizontal scrolling container */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        height: 450px; /* Adjust height for mobile */
        gap: 0; /* Remove gap for seamless scrolling */
        padding: 0 5%; /* Show a peek of the next/prev cards */
    }
     /* Hide scrollbar */
    .services-slider::-webkit-scrollbar { display: none; }
    .services-slider { -ms-overflow-style: none; scrollbar-width: none; }

    .service-slide, .service-slide.active {
        /* Each slide is a card that takes up 90% of the container width */
        flex: 0 0 90%;
        margin-right: 15px; /* Space between cards */
        scroll-snap-align: center; /* Snap cards to the center */
        transition: none; /* Disable flex transition */
    }
    .service-slide:last-child {
        margin-right: 0;
    }

    /* Make content visible on all slides on mobile */
    .service-slide .slide-content,
    .service-slide .slide-icon {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }

    /* Adjust navigation buttons for mobile */
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    /* Show and style pagination dots on mobile */
    .slider-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    .pagination-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .pagination-dot.active {
        background-color: var(--color-gold);
    }
}


































































/*=======================================
=          Call to Action Section       =
=======================================*/

.cta-section {
    position: relative;
    height: 650px; /* Adjust height as needed */
    color: var(--color-light);
    display: flex;
    align-items: center;
    overflow: hidden; /* Important for the zoom effect */
}

/* The background image container */
.cta-background {
    position: absolute;
    inset: 0;
    background-image: url('../img/mercedes-s-class-21.jpg'); /* High-quality background image */
    background-size: cover;
    background-position: center;
    /* Ken Burns animation */
    animation: kenBurnsEffect 25s infinite;
}

/* Keyframes for the slow zoom and pan effect */
@keyframes kenBurnsEffect {
    0% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.1) translateX(-2%);
    }
    100% {
        transform: scale(1) translateX(0);
    }
}

/* The gradient overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.8) 35%, 
        rgba(0, 0, 0, 0) 70%
    );
}

/* The content is positioned above the overlay */
.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 50%; /* Content takes up the left half */
}

.cta-content .sub-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-gold);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.cta-content h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--color-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-silver);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 550px; /* Improves readability */
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 16px 35px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(5px);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .cta-content {
        max-width: 75%; /* Give content more space on tablets */
    }
    .cta-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        height: 600px;
        text-align: center; /* Center text on mobile */
    }
    .cta-overlay {
        /* Make overlay darker on mobile for better readability */
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.6) 100%
        );
    }
    .cta-content {
        max-width: 100%; /* Full width content on mobile */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-content h1 {
        font-size: 36px;
    }
    .cta-content p {
        font-size: 15px;
    }
}






























































/*=======================================
=            Areas We Cover             =
=======================================*/

.areas-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.areas-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.areas-section .section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.areas-section .section-header h2 .highlight {
    color: var(--color-gold);
}

.areas-section .section-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Tab buttons styling */
.area-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows tabs to wrap on smaller screens */
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px; /* Space for the underline */
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: #555;
    background-color: #e9ecef;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    background-color: #dee2e6;
    color: var(--color-dark);
}

.tab-btn.active {
    background-color: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 5px 15px rgba(215, 168, 41, 0.3);
}

.tab-btn img {
    height: 20px;
    width: 20px;
    filter: invert(30%);
    transition: filter 0.3s ease;
}

.tab-btn:hover img, .tab-btn.active img {
    filter: invert(0%);
}


/* Tab Content Styling */
.tab-pane {
    display: none; /* Hide all panes by default */
}

.tab-pane.active {
    display: block; /* Show only the active pane */
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Location Card Styling */
.location-card {
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Initially hidden for animation */
    animation: fadeIn 0.5s ease-out forwards;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

/* Staggered animation delay for each card */
.active .location-card:nth-child(1) { animation-delay: 0.1s; }
.active .location-card:nth-child(2) { animation-delay: 0.2s; }
.active .location-card:nth-child(3) { animation-delay: 0.3s; }
.active .location-card:nth-child(4) { animation-delay: 0.4s; }
.active .location-card:nth-child(5) { animation-delay: 0.5s; }
.active .location-card:nth-child(6) { animation-delay: 0.6s; }
.active .location-card:nth-child(7) { animation-delay: 0.7s; }
.active .location-card:nth-child(8) { animation-delay: 0.8s; }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.location-card:hover img {
    transform: scale(1.05);
}

.location-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-dark);
    padding: 20px;
    margin: 0;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .area-tabs {
        gap: 10px;
    }
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    .location-card h3 {
        font-size: 18px;
    }
}





















































/*=======================================
=               FAQ Section             =
=======================================*/

.faq-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Header and Accordion */
.faq-accordion-wrapper .section-header {
    text-align: left;
    margin-bottom: 40px;
}
.faq-accordion-wrapper .section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--color-dark);
}

/* Individual FAQ Item */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    color: var(--color-gold);
}

.faq-item.active .faq-question h4 {
    color: var(--color-gold);
}

/* Plus/Minus Icon Styling */
.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0; /* Prevents icon from shrinking */
    margin-left: 20px;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-dark);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-icon::before { /* Horizontal line */
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
}
.faq-icon::after { /* Vertical line */
    width: 2px;
    height: 100%;
    left: 9px;
    top: 0;
}
.faq-item.active .faq-icon::after {
    transform: rotate(90deg); /* Hides vertical line by rotating it */
}

/* Answer Panel Styling and Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), padding-bottom 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-answer p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 25px; /* Add padding only when open */
    margin: 0;
}

/* Right Column: Image */
.faq-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }
    .faq-accordion-wrapper {
        order: 2; /* Move FAQs below the image */
    }
    .faq-image-wrapper {
        order: 1; /* Move image to the top */
        max-width: 500px;
        margin: 0 auto;
    }
    .faq-accordion-wrapper .section-header {
        text-align: center; /* Center header on mobile */
    }
    .faq-question h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .faq-accordion-wrapper .section-header h2 {
        font-size: 36px;
    }
    .faq-question h4 {
        font-size: 18px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}



























































/*=======================================
=             Site Footer               =
=======================================*/

.site-footer {
    background-color: #1a1a1a; /* A slightly softer black */
    color: var(--color-silver);
    padding: 80px 0 0; /* Padding at the top, no padding at the bottom for the sub-footer */
    font-family: var(--font-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr; /* Flexible column layout */
    gap: 50px;
    padding-bottom: 60px;
}

/* Column 1: About */
.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}
.footer-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 25px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}
.social-links img {
    height: 18px;
    width: 18px;
    /* The 'filter' property has been removed from here to fix the icon color. */
}

/* Columns 2 & 3: Links */
.footer-heading {
    font-family: var(--font-primary);
    font-size: 22px;
    color: var(--color-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--color-silver);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--color-gold);
}

/* Column 4: Contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-list img {
    height: 24px;
    width: 24px;
    margin-top: 5px;
    filter: invert(80%);
}
.contact-list span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 2px;
}
.contact-list a, .contact-list p {
    color: var(--color-silver);
    text-decoration: none;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.contact-list a:hover {
    color: var(--color-gold);
}

/* Bottom Bar / Sub-Footer */
.footer-bottom-bar {
    border-top: 1px solid #333;
    padding: 25px 0;
}
.footer-bottom-bar p {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin: 0;
}
.footer-bottom-bar a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-bar a:hover {
    color: var(--color-gold);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-bottom-content p {
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.powered-by span {
    font-size: 14px;
    color: #888;
}

.powered-by a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cb-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.powered-by a:hover .cb-logo {
    opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid on tablets */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        text-align: center; /* Center all content */
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-description {
        max-width: 100%;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-list li {
        text-align: left; /* Keep contact text left-aligned for readability */
    }
    .footer-bottom-bar p {
        font-size: 13px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .powered-by {
        justify-content: center;
    }
}





















































/*=======================================
=        Floating UI Widgets            =
=======================================*/

/* --- Back to Top Button (Bottom Left) --- */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--color-dark);
    color: var(--color-light);
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 998;
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

/* --- Floating Contact Widget (Bottom Right) --- */
.floating-contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Floating Action Button (FAB) */
.contact-fab {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative; /* For positioning icons inside */
    overflow: hidden; /* For the icon switch effect */
}
.contact-fab:hover {
    transform: scale(1.1);
    background-color: var(--color-gold-hover);
}

/* Icons inside the FAB for open/close animation */
.fab-icon-open,
.fab-icon-close {
    position: absolute;
    transition: transform 0.4s ease;
}
.fab-icon-open img {
    height: 28px;
    width: 28px;
    filter: invert(10%);
}
.fab-icon-close {
    transform: rotate(-90deg) scale(0);
}
.floating-contact-widget.active .fab-icon-open {
    transform: rotate(90deg) scale(0);
}
.floating-contact-widget.active .fab-icon-close {
    transform: rotate(0) scale(1);
}

/* The vertical menu of links */
.contact-links-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy transition */
    
    /* Hide by default */
    opacity: 0;
    transform: translateY(20px) scale(0.5);
}

.contact-link img {
    height: 24px;
    width: 24px;
}

.contact-link:hover {
    background-color: var(--color-gold);
}

/* Animate links into view when widget is active */
.floating-contact-widget.active .contact-link {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delay */
.floating-contact-widget.active .contact-link:nth-child(3) { transition-delay: 0.1s; }
.floating-contact-widget.active .contact-link:nth-child(2) { transition-delay: 0.2s; }
.floating-contact-widget.active .contact-link:nth-child(1) { transition-delay: 0.3s; }





































































/*=======================================
=       Experience Section Styling      =
=======================================*/

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa; 
    overflow: hidden;
}

/* --- DESKTOP LAYOUT --- */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
    align-items: center;
}
.experience-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.text-content {
    color: var(--color-dark);
}
.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.section-title .highlight {
    color: var(--color-gold);
}
.text-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.image-wrapper:hover img {
    transform: scale(1.05);
}
.image-main { height: 450px; }
.image-side-1 { height: 350px; }
.image-side-2 { height: 350px; }

/* --- THIS IS THE FIX --- */
/* On Desktop, the track is a vertical container for the two side images. */
.slider-track {
    display: flex;
    flex-direction: column;
    gap: 30px; /* This creates the space you wanted */
}

.mobile-image-slider { display: contents; }
.mobile-slider-controls { display: none; }


/* --- MOBILE & TABLET RESPONSIVE STYLES (992px and below) --- */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-content-column {
        order: 1;
        text-align: center;
    }
    .experience-gallery-column {
        order: 2;
    }
    .mobile-image-slider {
        display: block;
        position: relative;
    }
    
    /* On Mobile, we OVERRIDE the desktop track styles to make it a horizontal slider */
    .slider-track {
        flex-direction: row; /* Change from column to row */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
        gap: 0; /* Reset the desktop gap */
    }
    .slider-track::-webkit-scrollbar { display: none; }
    .slider-track { -ms-overflow-style: none; scrollbar-width: none; }
    
    .image-wrapper {
        flex: 0 0 85%;
        width: 85%;
        height: 350px;
        scroll-snap-align: center;
        margin-right: 15px;
    }
    
    .mobile-slider-controls {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    .slider-btn {
        pointer-events: all;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.5);
        color: white;
        border: 1px solid rgba(255,255,255,0.7);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 5;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider-btn:hover {
        background-color: var(--color-gold);
        border-color: var(--color-gold);
    }
    .slider-btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }
    .prev-btn { left: 10px; } 
    .next-btn { right: 10px; }

    .slider-pagination {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 5;
    }
    .pagination-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .pagination-dot.active {
        background-color: white;
    }
}



































































/*=======================================
=         Fleet Showcase Section        =
=======================================*/
.fleet-showcase-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* --- Top Header Styling --- */
.fleet-selector-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}
.header-flourish {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: var(--color-gold);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    opacity: 0.5;
}
.fleet-selector-header h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--color-dark);
    letter-spacing: 2px;
}
.fleet-selector-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

/* --- Vehicle Selector (Desktop) --- */
.fleet-selector {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 25px;
    margin-bottom: 60px;
    position: relative;
    border-bottom: 1px solid #ddd;
}
.fleet-selector-item {
    text-align: center;
    cursor: pointer;
    padding: 0 20px;
    transition: all 0.4s ease;
    opacity: 0.5;
    filter: grayscale(1);
}
.fleet-selector-item.active {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-5px) scale(1.05);
}
.fleet-selector-item img {
    height: 60px;
    margin-bottom: 15px;
}
.fleet-selector-item span {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-dark);
}
.selector-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #f8f9fa;
    margin: 15px auto -32px;
    transition: all 0.4s ease;
}
.fleet-selector-item.active .selector-dot {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.2);
}

/* --- Details Viewer (Desktop) --- */
.fleet-details-viewer {
    position: relative;
    min-height: 600px;
}
.fleet-details-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}
.fleet-details-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.details-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
    height: 600px;
}
.image-wrapper { border-radius: 12px; overflow: hidden; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.main-image { display: none; }
.side-image-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.side-image-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.details-text-content {
    color: var(--color-dark);
    padding-left: 30px;
}
.vehicle-logo { height: 50px; width: 50px; margin-bottom: 20px; }
.vehicle-logo img { height: 100%; width: auto; object-fit: contain; }
.vehicle-category {
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}
.details-text-content h3 {
    font-family: var(--font-primary);
    font-size: 42px;
    margin: 10px 0 20px;
}
.details-text-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}
.mobile-slider-controls { display: none; }


/* --- MOBILE & TABLET RESPONSIVE STYLES (992px and below) --- */
@media (max-width: 992px) {
    .fleet-selector {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-left: 20px;
        margin: 0 -20px 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .fleet-selector::-webkit-scrollbar { display: none; }
    .fleet-selector-item { flex: 0 0 180px; scroll-snap-align: center; }

    .fleet-details-pane {
        grid-template-columns: 1fr;
        position: static;
        display: none;
        transform: none;
        opacity: 1; visibility: visible;
        
        /* --- THIS IS THE FIX --- */
        /* Making the pane the relative anchor for the controls */
        position: relative;
    }
    .fleet-details-pane.active {
        display: block; 
    }
    
    .details-image-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        height: 400px;
        gap: 15px;
        border-radius: 12px;
        /* Remove grid-template-rows for flex layout */
    }
    .details-image-grid::-webkit-scrollbar { display: none; }
    
    .details-image-grid .image-wrapper {
        flex: 0 0 90%;
        width: 90%;
        height: 100%;
        scroll-snap-align: center;
    }

    .mobile-slider-controls {
        display: block;
        position: absolute;
        /* Position relative to the .fleet-details-pane, but only over the image area */
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 400px; /* Match the slider height */
        pointer-events: none;
    }
    .slider-btn {
        pointer-events: all;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.5);
        color: white;
        border: 1px solid rgba(255,255,255,0.7);
        width: 40px; height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .slider-btn:hover {
        background-color: var(--color-gold);
        border-color: var(--color-gold);
    }
    .slider-btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }
    .prev-btn { left: 10px; } 
    .next-btn { right: 10px; }

    .slider-pagination {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 5;
    }
    .pagination-dot {
        width: 10px; height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.6);
        border: none;
        padding: 0;
    }
    .pagination-dot.active {
        background-color: white;
    }

    .details-text-content {
        padding: 40px 0 0;
        text-align: center;
    }
    .vehicle-logo {
        margin: 0 auto 20px;
    }
}


/*=======================================
=      Contact Information Section      =
=======================================*/

.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 168, 41, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(215, 168, 41, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* Contact Details Column */
.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

.contact-details-column .section-header {
    text-align: left;
}

.contact-details-column .section-header h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-details-column .section-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 450px;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(215, 168, 41, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(215, 168, 41, 0.15);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c29724 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-dark);
}

.contact-content h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.contact-content p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-content a {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-content a:hover {
    color: #fff;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(215, 168, 41, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-info-section {
        padding: 80px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-details-column .section-header h2 {
        font-size: 40px;
    }

    .map-container {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        gap: 40px;
    }

    .contact-details-column .section-header h2 {
        font-size: 32px;
    }

    .contact-details-column .section-header p {
        font-size: 14px;
    }

    .contact-item {
        padding: 20px;
        gap: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-content h3 {
        font-size: 18px;
    }

    .contact-content p,
    .contact-content a {
        font-size: 14px;
    }

    .map-container {
        height: 350px;
    }
}

/*=====  End of Contact Information Section  ======*/


/*=======================================
=   Airport Why Choose Section Styling  =
=======================================*/

.airport-why-section {
    background-color: var(--color-light) !important;
}

.airport-why-section .wcu-text-container h2 {
    color: var(--color-dark) !important;
}

.airport-why-section .wcu-text-container h3 {
    color: var(--color-dark) !important;
}

.airport-why-section .wcu-text-container p {
    color: #555 !important;
}

.airport-why-section .wcu-text-container ul li {
    color: #555 !important;
}

.airport-why-section .wcu-text-container ul li strong {
    color: var(--color-dark) !important;
}

.airport-why-section .wcu-text-container ul li::before {
    color: var(--color-gold) !important;
}

.airport-why-section .stat-item {
    background-color: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
}

.airport-why-section .stat-item:hover {
    background-color: #fff !important;
    border-color: var(--color-gold) !important;
}

.airport-why-section .stat-item .number {
    color: var(--color-gold) !important;
}

.airport-why-section .stat-item .label {
    color: #666 !important;
}

/*=====  End of Airport Why Choose Section Styling  ======*/


/*=======================================
=    Luxury Chauffeur Section Styling   =
=======================================*/

.luxury-chauffeur-section {
    background-color: var(--color-dark) !important;
}

.wcu-content-wrapper.luxury-reverse {
    flex-direction: row-reverse;
}

.luxury-chauffeur-section .wcu-text-container h2,
.luxury-chauffeur-section .wcu-text-container h3,
.luxury-chauffeur-section .wcu-text-container p {
    color: var(--color-light) !important;
}

.luxury-chauffeur-section .wcu-text-container ul li {
    color: var(--color-light) !important;
}

.luxury-chauffeur-section .wcu-text-container ul li strong {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-section .wcu-text-container ul li::before {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-section .stat-item {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(215, 168, 41, 0.3) !important;
}

.luxury-chauffeur-section .stat-item:hover {
    background-color: rgba(215, 168, 41, 0.1) !important;
    border-color: var(--color-gold) !important;
}

.luxury-chauffeur-section .stat-item .number {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-section .stat-item .label {
    color: var(--color-silver) !important;
}

/* Responsive for Luxury Chauffeur Section */
@media (max-width: 992px) {
    .wcu-content-wrapper.luxury-reverse {
        flex-direction: column;
    }
}

/*=====  End of Luxury Chauffeur Section Styling  ======*/


/*=======================================
= Luxury Chauffeur Hero Section Styling =
=======================================*/

.luxury-chauffeur-hero-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.lch-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Column */
.lch-image-container {
    flex: 1 1 50%;
    min-width: 0;
}

.lch-image-container img {
    width: 100%;
    height: 800px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Text Content Column */
.lch-text-container {
    flex: 1 1 50%;
}

.lch-text-container h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lch-text-container .intro-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.lch-text-container h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--color-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.lch-text-container p {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.lch-text-container .stats-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.lch-text-container .stat-item {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.lch-text-container .stat-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(215, 168, 41, 0.1);
}

.lch-text-container .stat-item .number {
    display: block;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.lch-text-container .stat-item .label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* Responsive for Luxury Chauffeur Hero Section */
@media (max-width: 992px) {
    .luxury-chauffeur-hero-section {
        padding: 80px 0;
    }

    .lch-content-wrapper,
    .wcu-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .lch-image-container,
    .wcu-image-container {
        flex: 1 1 100%;
        padding: 0;
        margin: 0 -40px;
        width: calc(100% + 80px);
    }

    .lch-image-container img,
    .wcu-image-container img {
        height: 600px;
        width: 100%;
    }

    .lch-text-container {
        flex: 1 1 100%;
    }

    .lch-text-container h2 {
        font-size: 40px;
    }

    .lch-text-container .stats-container {
        flex-wrap: wrap;
    }

    .lch-text-container .stat-item {
        flex: 1 1 30%;
    }
}

@media (max-width: 576px) {
    .luxury-chauffeur-hero-section {
        padding: 60px 0;
    }

    .lch-content-wrapper,
    .wcu-content-wrapper {
        gap: 30px;
    }

    .lch-image-container,
    .wcu-image-container {
        padding: 0;
        margin: 0 -40px;
        width: calc(100% + 80px);
    }

    .lch-image-container img,
    .wcu-image-container img {
        height: 600px;
        width: 100%;
    }

    .lch-text-container h2 {
        font-size: 32px;
    }

    .lch-text-container .intro-text {
        font-size: 15px;
    }

    .lch-text-container p {
        font-size: 14px;
    }

    .lch-text-container h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .lch-text-container .stats-container {
        flex-direction: column;
        gap: 15px;
    }

    .lch-text-container .stat-item {
        flex: 1 1 100%;
        padding: 15px;
    }

    .lch-text-container .stat-item .number {
        font-size: 24px;
    }

    .lch-text-container .stat-item .label {
        font-size: 13px;
    }
}

/*=====  End of Luxury Chauffeur Hero Section Styling  ======*/


/*=======================================
= Luxury Chauffeur Second Section       =
=======================================*/

.luxury-chauffeur-second-section {
    background-color: var(--color-dark) !important;
}

.wcu-content-wrapper.luxury-reverse-second {
    flex-direction: row-reverse;
}

.luxury-chauffeur-second-section .wcu-text-container h2,
.luxury-chauffeur-second-section .wcu-text-container h3,
.luxury-chauffeur-second-section .wcu-text-container p {
    color: var(--color-light) !important;
}

.luxury-chauffeur-second-section .wcu-text-container ul li {
    color: var(--color-light) !important;
}

.luxury-chauffeur-second-section .wcu-text-container ul li strong {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-second-section .wcu-text-container ul li::before {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-second-section .stat-item {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(215, 168, 41, 0.3) !important;
}

.luxury-chauffeur-second-section .stat-item:hover {
    background-color: rgba(215, 168, 41, 0.1) !important;
    border-color: var(--color-gold) !important;
}

.luxury-chauffeur-second-section .stat-item .number {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-second-section .stat-item .label {
    color: var(--color-silver) !important;
}

/* Responsive for Luxury Chauffeur Second Section */
@media (max-width: 992px) {
    .wcu-content-wrapper.luxury-reverse-second {
        flex-direction: column;
    }
}

/*=====  End of Luxury Chauffeur Second Section  ======*/


/*=======================================
= Luxury Chauffeur Third Section        =
=======================================*/

.luxury-chauffeur-third-section {
    background-color: var(--color-light) !important;
}

.luxury-chauffeur-third-section .wcu-text-container h2,
.luxury-chauffeur-third-section .wcu-text-container h3,
.luxury-chauffeur-third-section .wcu-text-container p {
    color: var(--color-dark) !important;
}

.luxury-chauffeur-third-section .wcu-text-container ul li {
    color: var(--color-dark) !important;
}

.luxury-chauffeur-third-section .wcu-text-container ul li strong {
    color: var(--color-dark) !important;
}

.luxury-chauffeur-third-section .wcu-text-container ul li::before {
    color: var(--color-gold) !important;
}

/*=====  End of Luxury Chauffeur Third Section  ======*/


/*=======================================
= Luxury Chauffeur Fourth Section       =
=======================================*/

.luxury-chauffeur-fourth-section {
    background-color: var(--color-dark) !important;
}

.wcu-content-wrapper.luxury-reverse-fourth {
    flex-direction: row-reverse;
}

.luxury-chauffeur-fourth-section .wcu-text-container h2,
.luxury-chauffeur-fourth-section .wcu-text-container h3,
.luxury-chauffeur-fourth-section .wcu-text-container p {
    color: var(--color-light) !important;
}

.luxury-chauffeur-fourth-section .wcu-text-container ul li {
    color: var(--color-light) !important;
}

.luxury-chauffeur-fourth-section .wcu-text-container ul li strong {
    color: var(--color-gold) !important;
}

.luxury-chauffeur-fourth-section .wcu-text-container ul li::before {
    color: var(--color-gold) !important;
}

/* Responsive for Luxury Chauffeur Fourth Section */
@media (max-width: 992px) {
    .wcu-content-wrapper.luxury-reverse-fourth {
        flex-direction: column;
    }
}

/*=====  End of Luxury Chauffeur Fourth Section  ======*/


/*=======================================
=    Services & Benefits Section       =
=======================================*/

.services-benefits-section {
    padding: 80px 0;
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.services-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.service-card {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    background: #fff;
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #c29724 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.08);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Why Heylux Section */
.why-heylux-wrapper {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 60px 50px;
}

.why-heylux-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 38px;
    color: var(--color-dark);
    margin-bottom: 10px;
    text-align: center;
}

.why-heylux-wrapper .intro {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits List Grid */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(215, 168, 41, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 20px;
}

.benefit-content h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.benefit-content p {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.benefit-content.full-width {
    width: 100%;
}

.closing-benefit {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(215, 168, 41, 0.08) 0%, rgba(215, 168, 41, 0.04) 100%);
    border: 1px solid rgba(215, 168, 41, 0.3);
    padding: 30px;
    text-align: center;
}

.closing-benefit:hover {
    background: linear-gradient(135deg, rgba(215, 168, 41, 0.12) 0%, rgba(215, 168, 41, 0.08) 100%);
    border-color: var(--color-gold);
}

.closing-benefit p {
    color: var(--color-dark);
    font-size: 16px !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .services-benefits-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .why-heylux-wrapper {
        padding: 40px 30px;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .closing-benefit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    /* Make service cards scrollable on mobile */
    .services-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        margin-bottom: 50px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .service-card {
        flex: 0 0 85vw;
        scroll-snap-align: start;
        padding: 30px;
    }

    /* Make "How to Book" & "The Heylux Promise" cards scrollable */
    .services-benefits-section div[style*="display: grid"] {
        display: flex !important;
        overflow-x: auto;
        gap: 15px !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .services-benefits-section div[style*="display: grid"] > div {
        flex: 0 0 85vw;
        scroll-snap-align: start;
    }
}

@media (max-width: 576px) {
    .services-benefits-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card p {
        font-size: 14px;
    }

    .why-heylux-wrapper {
        padding: 30px 20px;
    }

    .why-heylux-wrapper h2 {
        font-size: 32px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .benefit-content h4 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 13px;
    }

    .closing-benefit {
        padding: 25px 20px;
    }

    .closing-benefit p {
        font-size: 16px !important;
    }
}

/*=====  End of Services & Benefits Section  ======*/


/*=======================================
= Car Gallery Section                   =
=======================================*/

.car-gallery-section {
    padding: 80px 0;
    background-color: var(--color-light);
    color: var(--color-dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.gallery-header p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}

/* Gallery Wrapper */
.gallery-wrapper {
    position: relative;
}

/* Desktop Grid Layout */
.gallery-wrapper {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.gallery-grid.slider-mode-desktop {
    display: flex;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.gallery-grid.slider-mode-desktop .gallery-item {
    flex: 0 0 20%;
    min-width: 20%;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(215, 168, 41, 0.9);
    border: none;
    color: var(--color-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -70px;
}

.gallery-next {
    right: -70px;
}

.gallery-grid.slider-mode-desktop ~ .gallery-prev,
.gallery-grid.slider-mode-desktop ~ .gallery-next {
    display: flex;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--color-gold);
}

/* Mobile Slider Mode */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 15px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .gallery-item {
        flex: 0 0 85vw;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-width: 85vw;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--color-gold);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    color: var(--color-light);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .car-gallery-section {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-header p {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .gallery-overlay i {
        font-size: 30px;
    }

    .modal-close {
        font-size: 35px;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-prev,
    .gallery-next {
        left: 10px;
        right: auto;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .gallery-next {
        left: auto;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .car-gallery-section {
        padding: 40px 0;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .gallery-overlay i {
        font-size: 24px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-prev,
    .gallery-next {
        left: 5px;
        right: auto;
    }

    .gallery-next {
        left: auto;
        right: 5px;
    }
}

/*=====  End of Car Gallery Section  ======*/


/*=======================================
= Car Details Section                   =
=======================================*/

.car-details-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    background: #f8f9fa;
}

/*=====  End of Car Details Section  ======*/