    /* ==========================================================================
    1. RESETĂRI GENERALE & VARIABILE
    ========================================================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --green: #03430d;
        --orange: #fa3600;
        --dark-neutral: #111111;
        --light-neutral: #ffffff;
        --text-muted: #666666;
        --grey: #3B3B3B;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--light-neutral);
        color: var(--dark-neutral);
        overflow-x: hidden;
    }

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

    /* ==========================================================================
    2. HEADER & NAVIGATIE
    ========================================================================== */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background-color: var(--light-neutral);
        height: 90px;
    }

    .logo-container .logo {
        height: 100px;
        object-fit: contain;
        cursor: pointer;
    }

    .nav {
        display: flex;
        gap: 35px;
    }

    .nav-link {
        text-decoration: none;
        color: #4a4a4a;
        font-size: 16px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--orange);
    }

    /* ==========================================================================
    3. SECTIUNEA HERO
    ========================================================================== */
    .hero-section {
        width: 100%;
        height: calc(100vh - 90px);
        min-height: 550px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('landingbkgrnd.jpeg');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 8%;
    }

    .hero-container {
        width: 100%;
        max-width: 550px;
    }

    .hero-card {
        background-color: var(--light-neutral);
        padding: 50px 60px;
        width: 100%;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
        border-left: 8px solid var(--green); 
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .card-subtitle {
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        color: var(--dark-neutral);
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .card-title {
        font-size: 38px;
        font-weight: 600;
        line-height: 1.25;
        color: var(--dark-neutral);
        margin-bottom: 35px;
    }

    .btn-contact {
        display: inline-block;
        background-color: var(--green); 
        color: var(--light-neutral);
        text-decoration: none;
        padding: 14px 40px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .btn-contact:hover {
        background-color: var(--orange);
        transform: translateY(-2px);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ==========================================================================
    4. SECTIUNEA DE SERVICII / FEATURES
    ========================================================================== */
    .features-section {
        background: linear-gradient(
            to bottom,
            var(--green) 0%,
            var(--green) 84%,
            var(--light-neutral) 84%,
            var(--light-neutral) 100%
        );
        padding: 90px 4% 70px 4%;
        width: 100%;
    }


    .features-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2; 
    }

    .section-title {
        color: var(--light-neutral);
        font-size: 42px;
        font-weight: 500;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: 0.5px;
    }

    .cards-grid {
        display: block;
        text-align: center;
        font-size: 0; 
        margin-bottom: 50px;
    }

    .feature-card {
        display: inline-block;
        vertical-align: top;
        width: 31%; 
        margin: 0 1.1%;
        background-color: var(--light-neutral);
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
        font-size: 16px; 
        text-align: center;
        box-sizing: border-box;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
    }

    .card-image-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
        background-color: #f0f0f0; 
    }

    .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        transition: transform 0.5s ease;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.18);
    }

    .feature-card:hover .card-img {
        transform: scale(1.06);
    }

    .card-content {
        padding: 35px 30px 45px 30px;
    }

    .card-content h3 {
        font-size: 22px;
        color: var(--dark-neutral);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .card-content p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
        font-style: italic; 
        font-weight: 400;
    }

    .actions-wrapper {
        text-align: center;
        margin-top: 70px;
        margin-bottom: -30px;
        position: relative;
        z-index: 5;
    }

    .btn-learn-more {
        display: inline-block;
        background-color: var(--green);
        color: var(--light-neutral);
        text-decoration: none;
        padding: 16px 55px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .btn-learn-more:hover {
        background-color: var(--orange);
        transform: translateY(-2px);
    }

    /* ==========================================================================
    5. STATISTICI / COUNTERS
    ========================================================================== */
    .stats-section {
        width: 100%;
        min-height: 650px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), url('/StatisticsImage/statsticsbackground.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 60px 8%;
        position: relative;
        margin-top: 0px;

    }

    .stats-container {
        width: 100%;
        max-width: 550px; 
    }

    .stats-card {
        background-color: var(--light-neutral);
        padding: 50px 45px;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
        width: 100%;
        box-sizing: border-box;
    }

    .stats-grid {
        display: block;
        font-size: 0;
        text-align: left;
    }

    .stat-item {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 45px;
        box-sizing: border-box;
    }

    .stat-icon {
        color: var(--green); 
        margin-bottom: 12px;
    }

    .stat-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--green);
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: var(--green); 
        margin-bottom: 12px;
        font-family: 'Inter', sans-serif;
    }

    .stat-desc {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.5;
        font-style: italic;
        font-weight: 400;
    }

    .stats-action {
        padding: 0 15px;
        margin-top: 10px;
    }

    .btn-stats-contact {
        display: block;
        width: 100%;
        background-color: var(--orange); 
        color: var(--light-neutral);
        text-decoration: none;
        text-align: center;
        padding: 16px 20px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .btn-stats-contact:hover {
        background-color: #d62e00;
        transform: translateY(-2px);
    }

    /* ==========================================================================
    6. GRILĂ ASIMETRICĂ
    ========================================================================== */
    .grid-section {
        width: 100%;
        background-color: var(--light-neutral);
        padding: 100px 0 60px 0;
    }

    .grid-section-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 4%;
    }

    .grid-header {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 60px auto;
    }

    .main-grid-title {
        font-size: 44px;
        font-weight: 600;
        color: var(--dark-neutral);
        margin-bottom: 25px;
        letter-spacing: -0.5px;
    }

    .main-grid-subtitle {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.7;
        font-style: italic;
    }

    .mosaic-grid {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.06);
    }

    .grid-box {
        width: 33.333%;
        height: 380px;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }

    .text-box {
        background-color: var(--light-neutral);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
    }

    .box-inner-content {
        text-align: center;
    }

    .box-title {
        font-size: 24px;
        font-weight: 600;
        color: var(--green); 
        margin-bottom: 20px;
    }

    .box-desc {
        font-size: 15px;
        color: var(--dark-neutral);
        line-height: 1.6;
        font-style: italic;
    }

    .image-box {
        background-color: #f5f5f5;
    }

    .image-box .grid-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .image-box:hover .grid-img {
        transform: scale(1.04);
    }

    /* ==========================================================================
    7. FAST DISPATCH
    ========================================================================== */
    .dispatch-section {
        width: 100%;
        min-height: 700px;
        background-image: url('fundal-camioane.jpeg');
        background-size: cover;
        background-position: center;
        padding: 100px 4%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .dispatch-container {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        text-align: center;
    }

    .dispatch-header {
        max-width: 750px;
        margin: 0 auto 50px auto;
    }

    .dispatch-title {
        font-size: 46px;
        font-weight: 500;
        color: var(--dark-neutral);
        margin-bottom: 15px;
    }

    .dispatch-line {
        width: 60px;
        height: 4px;
        background-color: var(--orange);
        margin: 0 auto 25px auto;
    }

    .dispatch-subtitle {
        font-size: 16px;
        color: var(--dark-neutral);
        line-height: 1.6;
        font-style: italic;
        opacity: 0.9;
    }

    .dispatch-card {
        background-color: var(--light-neutral);
        padding: 60px 40px;
        box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
        width: 100%;
        box-sizing: border-box;
    }

    .dispatch-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .dispatch-item {
        flex: 1;
        padding: 0 20px;
        text-align: center;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        background-color: var(--green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px auto;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .icon-circle svg {
        width: 32px;
        height: 32px;
        stroke: var(--light-neutral);
    }

    .dispatch-item h3 {
        font-size: 22px;
        font-weight: 600;
        color: var(--dark-neutral);
        margin-bottom: 15px;
    }

    .dispatch-item p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.5;
        font-style: italic;
    }

    .dispatch-item:hover .icon-circle {
        transform: translateY(-5px) scale(1.05);
        background-color: var(--orange);
    }

    /* ==========================================================================
    8. FOOTER MINIMALIST
    ========================================================================== */
    .main-footer {
        width: 100%;
        background-color: var(--green);
        padding: 35px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-text {
        color: var(--light-neutral);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 2px;
        opacity: 0.85;
    }

    /* ==========================================================================
    9. SECTIUNEA PAGINĂ FLOTĂ (COMPACTĂ & ALINIATĂ PERFECT)
    ========================================================================== */
    .fleet-section {
        width: 100%;
        background-color: var(--light-neutral);
        padding: 180px 0 80px 0;
    }

    .fleet-container {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fleet-row {
        display: flex;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* --- CONFIGURARE COLOANE DUBE --- */
    .row-vans {
        max-width: 820px; 
        gap: 5%;
        margin-bottom: 20px;
    }

    .row-vans .fleet-card {
        width: 45%;
    }

    .row-vans .fleet-img-wrapper {
        height: 150px; 
        align-items: flex-end; 
        margin-bottom: -25px;
    }

    /* Duba Stânga (1) */
    .row-vans .fleet-card:first-child .fleet-image {
        max-width: 92%; 
        height: auto;
        object-fit: contain;
    }

    /* Duba Dreapta (2) - Egalizare dimensiune și coborâre la sol */
    .row-vans .fleet-card:last-child .fleet-image {
        max-width: 100%; 
        height: auto;
        object-fit: contain;
        transform: scale(1.12); 
        transform-origin: bottom center; 
        position: relative;
        top: 22px;
    }

    /* --- CONFIGURARE COLOANE TIRURI --- */
    .row-trucks {
        max-width: 1140px; 
        gap: 5%;
        margin-bottom: 20px;
    }

    .row-trucks .fleet-card {
        width: 47%;
    }

    .row-trucks .fleet-img-wrapper {
        height: auto;
        margin-bottom: -95px;
    }

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

    /* --- ELEMENTE GENERICE CARD FLOTĂ --- */
    .fleet-img-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fleet-info {
        padding-left: 10px;
    }

    .fleet-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--dark-neutral);
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .fleet-subtitle {
        display: block;
        font-size: 22px;
        font-weight: 400;
        color: var(--dark-neutral);
        margin-top: 2px;
    }

    /* --- SPECIFICAȚII TEHNICE & CONECTOARE --- */
    .spec-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .spec-list li {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        position: relative; 
    }

    .spec-icon {
        width: 34px; 
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 35px; 
        flex-shrink: 0;
        position: relative;
        box-sizing: border-box;
        padding: 7px; 
    }

    .spec-icon.icon-g { background-color: var(--green); }
    .spec-icon.icon-o { background-color: var(--orange); }

    .spec-icon svg {
        width: 100%;
        height: 100%;
        stroke: var(--light-neutral);
    }

    /* Liniile orizontale conectoare */
    .spec-list li::after {
        content: '';
        position: absolute;
        left: 34px; 
        top: 50%;
        transform: translateY(-50%);
        width: 20px; 
        height: 1.5px; 
        z-index: 1;
    }

    .spec-list li:has(.icon-g)::after { background-color: var(--green); opacity: 0.7; }
    .spec-list li:has(.icon-o)::after { background-color: var(--orange); opacity: 0.7; }

    .spec-text {
        font-size: 17px;
        color: var(--dark-neutral);
        font-weight: 400;
        padding-left: 5px; 
    }

    /* ==========================================================================
    11. SECTIUNEA ABOUT US
    ========================================================================== */
    .about-section {
        width: 100%;
        background-color: var(--light-neutral);
        padding: 60px 0 100px 0;
    }

    .about-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 4%;
        gap: 8%;
        align-items: center;
    }

    .about-left-col {
        width: 48%;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-main-img-wrapper {
        width: 100%;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
    }

    .about-main-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .certificates-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        width: 100%;
    }

    .cert-item {
        flex: 1;
        text-align: center;
    }

    .cert-item img {
        max-width: 150px; 
        height: auto;
        margin-bottom: 12px;
    }

    .about-right-col {
        width: 44%;
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center;  
        padding-top: 10px;
    }

    .about-main-title {
        font-size: 46px;
        font-weight: 700;
        color: var(--dark-neutral);
        margin-bottom: 15px;
        line-height: 1.15;
        margin-top: -25px;
    }

    .about-orange-line {
        width: 75px;
        height: 3px;
        background-color: var(--orange);
        margin-bottom: 45px;
    }

    .about-text-block {
        margin-bottom: 40px;
        max-width: 460px; 
    }

    .about-text-block:last-child {
        margin-bottom: 0;
    }

    .about-text-block h3 {
        font-size: 22px;
        font-weight: 500;
        color: var(--dark-neutral);
        margin-bottom: 12px;
    }

    .about-text-block p {
        font-size: 17px;
        color: #222222;
        line-height: 1.5;
        font-weight: 400;
    }

    /* ==========================================================================
    12. SECTIUNEA PAGINĂ CONTACT (STIL REFRESH EMPEX)
    ========================================================================== */
    .contact-section {
        width: 100%;
        background: linear-gradient(to bottom, var(--light-neutral) 55%, var(--green) 55%);
        padding: 60px 0 110px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-main-title {
        font-size: 52px;
        font-weight: 700;
        color: var(--dark-neutral);
        letter-spacing: -1px;
        margin-bottom: 200px;
    }

    .contact-container {
        width: 100%;
        max-width: 1140px;
        padding: 0 4%;
    }

    .contact-card {
        background-color: #ededed; 
        padding: 60px 40px;
        box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-item {
        flex: 1;
        text-align: center;
        padding: 0 20px;
    }

    .contact-icon-circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -105px auto 25px auto; 
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }

    .contact-icon-circle svg {
        width: 38px;
        height: 38px;
        stroke: var(--light-neutral); 
    }

    .contact-icon-circle.bg-green { background-color: var(--green); }
    .contact-icon-circle.bg-orange { background-color: var(--orange); }

    .contact-item h3 {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--dark-neutral);
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .contact-item p {
        font-size: 16px;
        line-height: 1.6;
        color: #222222;
    }

    .contact-link {
        text-decoration: none;
        color: #222222;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .contact-link:hover {
        color: var(--orange);
    }

    .address-text {
        font-weight: 500;
    }

    .contact-item:hover .contact-icon-circle {
        transform: scale(1.06) translateY(-4px);
    }

    /* ==========================================================================
    13. MEDIA QUERIES & RESPONSIVENESS GLOBAL (PC / TABLETĂ / MOBIL)
    ========================================================================== */
    @media (max-width: 1024px) {
        .grid-box {
            width: 50%;
            height: 340px;
        }
    }

    @media (max-width: 992px) {
        .feature-card {
            width: 45%;
            margin: 15px 2.5%;
        }
        .section-title {
            font-size: 34px;
        }
        .about-container {
            flex-direction: column;
            align-items: center;
            gap: 60px;
        }
        .about-left-col, .about-right-col {
            width: 100%;
            max-width: 650px;
        }
        .about-main-title {
            font-size: 38px;
        }
    }

    @media (max-width: 902px) {
        .dispatch-grid {
            flex-direction: column;
            gap: 50px;
        }
        .dispatch-item {
            width: 100%;
            padding: 0;
        }
        .dispatch-card {
            padding: 50px 20px;
        }
    }

    @media (max-width: 860px) {
        .contact-section {
            background: #ededed; 
            padding: 40px 20px;
        }
        .contact-card {
            flex-direction: column;
            gap: 110px; 
            padding: 80px 20px 40px 20px;
            background-color: var(--light-neutral);
            box-shadow: none;
        }
        .contact-item {
            width: 100%;
            padding: 0;
        }
        .contact-icon-circle {
            margin: 0 auto 20px auto; 
        }
        .contact-main-title {
            font-size: 38px;
            margin-bottom: 30px;
        }
    }

    /* --- ADAPTĂRI COMPLETE PENTRU TELEFON (MOBIL) --- */
    @media (max-width: 768px) {

           * {
        max-width: 100%;
    }
        /* Meniu Hamburger Structural */
        .header {
            flex-direction: row !important;
            justify-content: space-between !important;
            padding: 10px 20px;
            height: 70px;
            position: relative;
            z-index: 100;
        }

        .nav {
            position: absolute;
            top: 70px;
            left: -100%; 
            flex-direction: column;
            background-color: var(--light-neutral);
            width: 100%;
            height: calc(100vh - 70px);
            gap: 25px !important;
            padding: 40px 0;
            text-align: center;
            transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 15px 25px rgba(0,0,0,0.05);
        }

        .nav.active {
            left: 0; 
        }

        .nav-link {
            font-size: 20px; 
            display: block;
        }

        /* Corecție completă vizibilitate element hamburger */
        .menu-toggle {
            display: flex !important;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 101;
        }

        .menu-toggle .bar {
            display: block !important;
            width: 30px;
            height: 3px;
            background-color: var(--dark-neutral) !important;
            transition: all 0.3s ease;
        }

        .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
        .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--orange); }
        .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--orange); }

        /* Elemente Secțiuni Generale Mobil */
        .hero-section {
            justify-content: center;
            padding: 20px;
            height: auto;
            min-height: 500px;
        }
        .hero-container { max-width: 100%; }
        .hero-card {
            padding: 35px 25px;
            border-left: 6px solid var(--green);
        }
        .card-title { font-size: 28px; }
        
        .features-section { padding: 60px 20px 80px 20px; }
        .features-section::after { display: none; }
        .feature-card {
            display: block;
            width: 100%;
            margin: 0 0 30px 0;
        }
        .section-title {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .stats-section {
            justify-content: center;
            padding: 40px 20px;
            min-height: auto;
        }
        .stats-container { max-width: 100%; }
        .stats-card { padding: 40px 20px; }
        .stat-item {
            width: 100%; 
            text-align: center;
            margin-bottom: 35px;
        }
        .stat-icon { margin-left: auto; margin-right: auto; }

        .main-grid-title { font-size: 30px; }
        .grid-box {
            width: 100%;
            height: auto;
            min-height: 280px;
        }
        .text-box { padding: 45px 25px; }

        .dispatch-title { font-size: 34px; }
        .dispatch-section { background-attachment: scroll; padding: 70px 20px; }

        /* Pagina Flotă pe Mobil */
        /* Pagina Flotă pe Mobil */
        .fleet-section {
            padding: 10px 0 40px 0;
        }

        .fleet-row.row-vans,
        .fleet-row.row-trucks {
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
            max-width: 100%;
        }

        .fleet-card {
            width: 100% !important;
            max-width: 400px;
        }

        /* Dube */
        .row-vans .fleet-img-wrapper {
            height: auto;
            margin-bottom: -20px;
        }

        .row-vans .fleet-card:last-child .fleet-image {
            transform: scale(1);
            top: 0;
        }

        /* Camioane */
        .row-trucks .fleet-img-wrapper {
            height: auto;
            margin-bottom: -40px !important;
        }

        .row-trucks .fleet-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .row-trucks .fleet-card {
            margin-bottom: 10px;
        }

        /* Text flotă */
        .fleet-info {
            padding-left: 0;
        }

        .fleet-title {
            font-size: 34px;
            margin-bottom: 18px;
        }

        .fleet-subtitle {
            font-size: 28px;
        }

        .spec-list li {
            margin-bottom: 20px;
        }

        .spec-text {
            font-size: 22px;
            line-height: 1.3;
        }
        
        
    .row-vans .fleet-card:last-child .fleet-image {
        transform: scale(1) !important;
    }

    .fleet-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .fleet-card,
    .fleet-row,
    .fleet-container,
    .stats-container,
    .dispatch-container {
        overflow-x: hidden;
    }

    .cards-grid,
    .stats-section,
    .stats-container,
    .stats-card,
    .grid-section,
    .grid-section-container,
    .mosaic-grid,
    .grid-box,
    .dispatch-section,
    .dispatch-container,
    .dispatch-card {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .feature-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .stats-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dispatch-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    }

    @media (max-width: 480px) {
        .certificates-wrapper {
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }
        .about-text-block p {
            font-size: 15px;
        }
    }

    /* Ascundere completă pe Desktop PC */
    @media (min-width: 769px) {
        .menu-toggle {
            display: none !important;
        }
    }