/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --color-navy: #1A2B3C;
    --color-navy-light: #2A3F54;
    --color-orange: #E3B04B;
    --color-orange-hover: #C69A42;
    --color-white: #FFFFFF;
    --color-bg-light: #F7F9FC;
    --color-text: #4A5568;
    --color-text-light: #718096;
    --color-border: #E2E8F0;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(227, 176, 75, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-highlight {
    color: var(--color-orange);
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(227, 176, 75, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 176, 75, 0.3);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.btn-block {
    width: 100%;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.25rem 0;
}

.header.scrolled {
    background-color: var(--color-navy);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--color-orange);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 1.25rem;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    opacity: 0.9;
    text-transform: capitalize;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition-normal);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-navy);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-transform: none;
}

.dropdown a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-orange);
    padding-left: 2rem;
}

/* Mega Dropdown */
.mega-dropdown {
    min-width: 600px;
    padding: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.has-dropdown:hover .mega-dropdown {
    transform: translateX(-50%) translateY(0);
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-column h5 {
    color: var(--color-orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.mega-column ul {
    padding: 0;
}

.mega-column ul li a {
    padding: 0.4rem 0;
    font-size: 0.8rem;
}

.mega-column ul li a:hover {
    padding-left: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.lang-selector span {
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-selector span:hover,
.lang-selector span.active {
    color: var(--color-orange);
    opacity: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding-top: 5rem;
    /* Space for header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.9) 0%, rgba(26, 43, 60, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature i {
    color: var(--color-orange);
}

.hero-form-wrapper {
    flex: 0 0 450px;
}

.quote-form-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.quote-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-orange) 0%, transparent 100%);
    z-index: -1;
    border-radius: 22px;
    opacity: 0.5;
}

.quote-form-card h3 {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quote-form-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half-width {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-navy {
    background-color: var(--color-navy);
}

.text-white {
    color: var(--color-white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--color-orange);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-orange);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background-color: rgba(227, 176, 75, 0.1);
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.text-left {
    text-align: left !important;
}

.small {
    font-size: 0.85rem !important;
}

/* =========================================
   POURQUOI NOUS CHOISIR 
   ========================================= */
.mt-5 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.why-us-box {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-orange);
    text-align: center;
}

.why-us-slider {
    padding-bottom: 2rem !important;
    /* Space for pagination */
}

.why-us-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.why-item {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--color-border);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: auto !important;
}

.why-item i {
    color: var(--color-orange);
    font-size: 3rem;
    background: rgba(227, 176, 75, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.why-item span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
}

.why-us-pagination {
    bottom: -5px !important;
}

/* =========================================
   TRUST / COUNTERS SECTION
   ========================================= */
#trust {
    position: relative;
}

.counters-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.counter-item {
    padding: 2rem;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.counter-text {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-wrapper {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-wrapper h4 {
    font-size: 1.2rem;
    opacity: 0.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
}

/* =========================================
   ZONES SECTION - INTERACTIVE MAP
   ========================================= */
.interactive-zones-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zones-map-container {
    width: 100%;
    position: relative;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.belgium-svg-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-region {
    fill: var(--color-navy-light);
    stroke: var(--color-white);
    stroke-width: 3;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.map-region:hover {
    fill: var(--color-orange);
    transform: scale(1.02);
    transform-origin: center;
    filter: url(#glow);
}

.map-region.active {
    fill: var(--color-orange);
    stroke: var(--color-navy);
    stroke-width: 4;
}

#region-bruxelles {
    fill: var(--color-orange);
}

#region-bruxelles.active {
    fill: var(--color-navy);
    stroke: var(--color-orange);
}

.region-label {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 24px;
    fill: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.bxl-label {
    font-size: 16px;
    fill: var(--color-white);
}

.zones-content-container {
    position: relative;
    min-height: 500px;
}

.zone-info-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--color-orange);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.zone-info-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.zone-title {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zone-title i {
    color: var(--color-orange);
}

.zone-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.zone-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.zone-list-detailed li {
    font-size: 0.95rem;
    color: var(--color-text);
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--color-border);
}

.zone-list-detailed li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zone-list-detailed li strong {
    color: var(--color-navy);
}

@media (max-width: 992px) {
    .interactive-zones-wrapper {
        grid-template-columns: 1fr;
    }

    .zones-content-container {
        min-height: auto;
    }

    .zone-info-card {
        position: relative;
        transform: translateX(0);
        display: none;
    }

    .zone-info-card.active {
        display: block;
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-slider {
    padding-bottom: 3rem !important;
    /* Space for pagination */
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFB800;
    margin-bottom: 1rem;
}

.review {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    color: var(--color-text);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-navy-light);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info h4 {
    color: var(--color-navy);
    font-size: 1rem;
}

.client-info span {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Swiper Pagination Target Customization */
.swiper-pagination-bullet-active {
    background: var(--color-orange) !important;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer-desc {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-orange);
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-col ul li {
    margin-bottom: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-col ul a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-col ul i {
    color: var(--color-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--color-orange);
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA56;
    color: #FFF;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 992px) {
    .zones-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

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

    .zone-list ul {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.form-group label i {
    color: var(--color-orange);
    margin-right: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(227, 176, 75, 0.1);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        flex: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .mega-dropdown {
        min-width: 100%;
        left: 0;
        transform: none;
        padding: 1rem;
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
    }

    .has-dropdown:hover .mega-dropdown {
        display: block;
        transform: none;
    }

    .mega-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-navy);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .lang-selector,
    .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .quote-form-card {
        padding: 1.5rem;
    }
}

/* Service Zones Professional Design */
.zones-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.zones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.zone-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--color-orange);
}

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

.zone-card-header {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.zone-card-header i {
    font-size: 1.5rem;
    color: var(--color-orange);
}

.zone-card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.zone-card-body {
    padding: 20px;
}

.zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.zone-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.zone-item a i {
    color: var(--color-orange);
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.zone-item a:hover {
    background-color: rgba(227, 176, 75, 0.1);
    color: var(--color-navy);
    font-weight: 500;
}

.zone-item a:hover i {
    transform: translateX(3px);
}


/* Footer Truck Animation */
.footer-truck-container {
    width: 200px;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    border-radius: 4px;
}

.footer-road {
    position: absolute;
    bottom: 5px;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.footer-road::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(90deg, transparent, transparent 15px, var(--color-orange) 15px, var(--color-orange) 30px);
}

.footer-truck {
    position: absolute;
    bottom: 9px;
    left: -50px;
    font-size: 1.8rem;
    color: var(--color-orange);
    animation: driveFooterTruck 6s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes driveFooterTruck {
    0% {
        left: -50px;
        transform: translateY(0);
    }

    1%,
    99% {
        transform: translateY(-1px);
    }

    2%,
    98% {
        transform: translateY(0);
    }

    100% {
        left: 220px;
        transform: translateY(0);
    }
}

/* =========================================
   ADDITIONAL MOBILE RESPONSIVENESS FIXES
   ========================================= */
@media (max-width: 768px) {

    /* 1. Container padding reduction to give more space for content */
    .container {
        padding: 0 1rem;
    }

    /* 2. Form layout fixes (stack vertically instead of horizontally on mobile) */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .half-width {
        width: 100%;
        margin-bottom: 1.25rem;
    }

    .form-row .half-width:last-child {
        margin-bottom: 0;
    }

    /* 3. Mobile menu improvements */
    .nav-list {
        padding: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        display: block;
    }

    /* 4. Fix paddings/gaps for various components on mobile */
    .hero-container {
        gap: 2rem;
        padding-top: 2rem;
    }

    .quote-form-card,
    .reservation-box {
        padding: 1.5rem !important;
    }

    .lift-benefits-list {
        padding: 2rem !important;
    }

    .lift-feature-card {
        padding: 1.5rem !important;
    }

    /* 5. Miscellaneous tweaks */
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}