
/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .main-nav {
        gap: 16px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, 1180px);
    }


    .site-header {
        height: 70px;
    }


    .menu-toggle {
        display: flex;
    }


    .main-nav {

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        background: #ffffff;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 20px 25px;

        border-bottom: 1px solid #eeeeee;
    }


    .main-nav.open {
        display: flex;
    }


    .main-nav a {
        padding: 10px 0;
    }


    .main-nav .nav-cta {
        text-align: center;

        margin-top: 8px;
    }

}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 700px) {

    .hero {

        min-height: calc(100vh - 70px);
    }


    .hero-container {

        padding-top: 70px;
        padding-bottom: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .hero h1 {

        font-size: clamp(46px, 13vw, 68px);

        letter-spacing: -2px;
    }


    .hero-description {

        font-size: 16px;

        max-width: 100%;
    }


    .hero-trust {

        gap: 18px;

        margin-top: 50px;
    }


    .hero-scroll {

        display: none;
    }

}



/* =========================
   SERVICES RESPONSIVE
========================= */

@media (max-width: 900px) {

    .services-heading {

        grid-template-columns: 1fr;

        gap: 30px;

        align-items: start;
    }


    .service-grid {

        grid-template-columns: 1fr;
    }


    .service-card {

        min-height: 280px;
    }

}


@media (max-width: 700px) {

    .section {

        padding: 80px 0;
    }


    .section-heading {

        margin-bottom: 38px;
    }


    .section-heading h2 {

        font-size: 42px;

        letter-spacing: -1.8px;
    }


    .service-card {

        min-height: 270px;

        padding: 28px;
    }


    .service-card h3 {

        font-size: 25px;
    }

}


/* =========================
   FLEET RESPONSIVE
========================= */

@media (max-width: 900px) {

    .car-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .car-grid {

        grid-template-columns: 1fr;
    }


    .car-image {

        height: 250px;
    }

}




/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-image {

        height: 500px;
    }

}


@media (max-width: 700px) {

    .about-image {

        height: 380px;
    }


    .about-content h2 {

        font-size: 42px;

        letter-spacing: -1.8px;
    }


    .benefits-list {

        grid-template-columns: 1fr;
    }

}


/* =========================
   BOOKING RESPONSIVE
========================= */

@media (max-width: 900px) {

    .booking-box {

        grid-template-columns: 1fr;
    }


    .booking-content {

        padding: 55px;
    }


    .booking-form-wrapper {

        padding: 45px;
    }

}


@media (max-width: 700px) {

    .booking-content {

        padding: 40px 25px;
    }


    .booking-form-wrapper {

        padding: 35px 25px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    .booking-content h2 {

        font-size: 44px;

        letter-spacing: -1.8px;
    }

}


/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }

}


@media (max-width: 700px) {

    .contact-grid {

        gap: 40px;
    }


    .contact-form-wrapper {

        padding: 28px 20px;
    }


    .contact-content h2 {

        font-size: 42px;

        letter-spacing: -1.8px;
    }

}



/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 900px) {

    .footer-top {

        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 40px;
    }


    .footer-brand {

        grid-column: 1 / -1;
    }

}


@media (max-width: 700px) {

    .site-footer {

        padding-top: 55px;
    }


    .footer-top {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }


    .footer-brand {

        grid-column: 1 / -1;
    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;
    }


    .legal-links {

        flex-wrap: wrap;

        gap: 12px 18px;
    }
}








/* =========================================================
   FLEET
========================================================= */

.fleet {
    padding: 120px 0;
    background: #f7f8fa;
}

.fleet-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 60px;
}

.fleet-heading .section-intro {
    max-width: 480px;
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fleet-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 24px;
    transition: .35s ease;
}

.fleet-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(0,0,0,.09);
}


/* Gallery */

.fleet-gallery {
    position: relative;
    padding: 14px;
    background: #eef0f2;
}

.fleet-main-image {
    height: 330px;
    overflow: hidden;
    border-radius: 17px;
}

.fleet-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.fleet-card:hover .fleet-main-image img {
    transform: scale(1.04);
}

.fleet-small-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.fleet-small-images img {
    width: 100%;
    height: 115px;
    display: block;
    object-fit: cover;
    border-radius: 13px;
}


/* Badge */

.fleet-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 9px 16px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}


/* Content */

.fleet-content {
    padding: 34px;
}

.fleet-label {
    margin: 0 0 10px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.fleet-content h3 {
    margin: 0 0 16px;
    color: #111;
    font-size: 30px;
    line-height: 1.15;
}

.fleet-content > p {
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}


/* Details */

.fleet-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.fleet-details div {
    padding: 14px;
    background: #f5f6f7;
    border-radius: 12px;
}

.fleet-details strong {
    display: block;
    margin-bottom: 4px;
    color: #111;
    font-size: 13px;
}

.fleet-details span {
    color: #888;
    font-size: 11px;
}


/* Prices */

.fleet-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 25px 0;
    padding: 18px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.fleet-prices div {
    text-align: center;
}

.fleet-prices span {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 11px;
}

.fleet-prices strong {
    color: #111;
    font-size: 17px;
}


/* Extra information */

.fleet-extra {
    margin-bottom: 25px;
}

.fleet-extra p {
    margin: 7px 0;
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}

.fleet-extra strong {
    color: #222;
}


/* Button */

.fleet-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 14px 20px;
    min-width: 210px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.fleet-button span {
    font-size: 20px;
}

.fleet-button:hover {
    background: #333;
    transform: translateX(3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .fleet {
        padding: 90px 0;
    }

    .fleet-heading {
        flex-direction: column;
        align-items: flex-start;
    }

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


@media (max-width: 600px) {

    .fleet {
        padding: 70px 0;
    }

    .fleet-content {
        padding: 24px;
    }

    .fleet-main-image {
        height: 240px;
    }

    .fleet-small-images img {
        height: 95px;
    }

    .fleet-content h3 {
        font-size: 25px;
    }

    .fleet-details {
        grid-template-columns: 1fr;
    }

    .fleet-prices {
        grid-template-columns: 1fr;
    }

    .fleet-prices div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }

    .fleet-prices span {
        margin: 0;
    }

    .fleet-button {
        width: 100%;
    }
}
















/* =========================================
   LONG-TERM RENTAL
========================================= */

.longterm {
    padding: 120px 0;
    background: #fff;
}

.longterm-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 60px;
}

.longterm-heading > p {
    max-width: 480px;
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.longterm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.longterm-card {
    overflow: hidden;
    background: #f7f8fa;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    transition: .35s ease;
}

.longterm-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.longterm-image {
    position: relative;
    height: 330px;
    padding: 14px;
}

.longterm-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 17px;
}

.longterm-image span {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 9px 16px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.longterm-content {
    padding: 34px;
}

.longterm-label {
    margin: 0 0 10px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.longterm-content h3 {
    margin: 0 0 16px;
    color: #111;
    font-size: 30px;
    line-height: 1.15;
}

.longterm-content > p {
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

.longterm-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.longterm-details div {
    padding: 15px;
    background: #fff;
    border-radius: 12px;
}

.longterm-details strong {
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-size: 14px;
}

.longterm-details span {
    color: #888;
    font-size: 11px;
}

.longterm-info {
    margin-bottom: 25px;
}

.longterm-info p {
    margin: 8px 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.longterm-info strong {
    color: #222;
}

.longterm-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 210px;
    padding: 14px 20px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.longterm-button:hover {
    background: #333;
}

.longterm-button span {
    font-size: 20px;
}


/* MOBILE */

@media (max-width: 900px) {

    .longterm {
        padding: 90px 0;
    }

    .longterm-heading {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 600px) {

    .longterm {
        padding: 70px 0;
    }

    .longterm-content {
        padding: 24px;
    }

    .longterm-image {
        height: 240px;
    }

    .longterm-content h3 {
        font-size: 25px;
    }

    .longterm-details {
        grid-template-columns: 1fr;
    }

    .longterm-button {
        width: 100%;
    }
}
/* ========================================
   SHARED HEADER / FOOTER POLISH
======================================== */

@media (max-width: 1100px) {
    .main-nav { gap: 18px; font-size: 13px; }
    .nav-cta { padding: 10px 15px; font-size: 13px; }
}

@media (max-width: 860px) {
    .main-nav { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .main-nav.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 20px 18px;
        background: #fff;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        box-shadow: 0 18px 34px rgba(0,0,0,.08);
    }
    .main-nav.open a { padding: 12px 4px; }
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; }
}

@media (max-width: 600px) {
    .site-header { height: 70px; }
    .nav-wrapper { min-height: 70px; }
    .logo { font-size: 15px; }
    .logo-mark { width: 34px; height: 34px; font-size: 17px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
    .legal-links { gap: 10px 14px; flex-wrap: wrap; }
    .footer-services { margin-top: 16px; }
}


/* ========================================
   FINAL NAVIGATION / MOBILE POLISH
======================================== */
@media (max-width: 860px) {
    .site-header { box-shadow: 0 8px 28px rgba(0,0,0,.06); }
    .main-nav.open { max-height: calc(100vh - 70px); overflow-y: auto; }
    .main-nav.open a { font-size: 14px; font-weight: 700; }
}
@media (max-width: 600px) {
    .container { width: min(100% - 24px, 1180px); }
    .hero-background { background-position: 65% center; }
}
