/* Root Colors */
:root {
    --primary-color: #1572D3;
    --primary-light: #E8F5FF;
    --primary-soft: #F0F8FF;
    --secondary-color: #051C34;

    --white-color: #FFFFFF;

    --text-dark: #242424;
    --text-color: #333333;
    --text-grey: #6D6D6D;
    --text-light-grey: #9CA3AF;

    --border-grey: #E0E0E0;
    --d-grey: #484848;
    --l-grey: #B6B6B6;

    --footer-text-color: #D6D6D6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--text-color);
}

/* top scroll bar */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to right, #4cafef, var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* Header & Navbar Styles Start*/
.header {
    background: var(--white-color);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 160px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a,
.sign-in {
    color: var(--d-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:not(.nav-actions):hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-signup {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    border: 1px solid var(--primary-color);
}

.btn-signup:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-signin {
    background: var(--white-color);
    color: var(--d-grey);
    border: 1px solid transparent;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: border 0.3s, color 0.3s;
    display: inline-block;
}

.btn-signin:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 999;
    padding: 20px;
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--d-grey);
    text-decoration: none;
    position: relative;
}

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

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

.mobile-nav a:hover {
    color: var(--primary-color);
}


/* Header & Navbar Styles End*/

/* Hero Section Start*/
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    padding: 80px 0 40px;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 450px;
    max-width: 500px;
    margin-left: 60px;
    padding-left: 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.highlight {
    color: var(--primary-color);
}

.underline-img {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 120px;
    pointer-events: none;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 24px;
}

.app-badges {
    display: flex;
    gap: 14px;
}

.app-badges img {
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.app-badges img:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image .car-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}

.search-box {
    margin-top: 50px;
    background: var(--white-color);
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(19, 94, 182, 0.2);
    margin-bottom: 70px;
}

.search-field {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-left: 1px solid var(--footer-text-color);
}

.search-field img {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.search-field img:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.search-field.location {
    border-left: none;
}

.label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.value {
    font-size: 13px;
    color: var(--l-grey);
}

.btn-search {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-search:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Hero Section End*/


/* How it works Section Start */
.section-header,
.section-header-testimonials {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.3;
}

.badge {
    display: inline-block;
    background: rgba(21, 114, 211, 0.1);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 32px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.badge:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-bottom: 160px;
}

.step {
    text-align: center;
    max-width: 200px;
}


.icon-box {
    width: 112px;
    height: 112px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
}


.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.icon-box:hover img {
    transform: scale(1.05);
}


.step h3 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.step p {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.5;
}

.brands-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.brands-slider {
    display: flex;
    gap: 96px;
    animation: scrollBrands 20s linear infinite;
}

.brand-logo {
    height: 50px;
    filter: grayscale(100%) opacity(0.6);
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-text {
    font-size: 32px;
    font-weight: 600;
    color: var(--l-grey);
    letter-spacing: 4px;
}

/* How it works Section End */

/* Why Choose Us Section Start */
.why-choose-us {
    background: var(--white-color);
    padding: 100px 160px;
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    min-height: 800px;
}

.car-showcase {
    flex: 1;
    position: relative;
}

.showcase-car {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
}

.why-content {
    flex: 1;
    max-width: 576px;
}

.why-content h2 {
    font-size: 32px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 50px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    background: var(--primary-light);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.feature h4 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.feature p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Why Choose Us Section End */

/* Popular Cars Section Start */
.popular-cars {
    background: var(--white-color);
    padding: 35px 160px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.car-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.car-image-container {
    background: var(--white-color);
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image-container img {
    width: 100%;
    object-fit: cover;
}

.car-details {
    padding: 24px;
}

.car-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 12px;
}

.review-count {
    color: var(--text-grey);
}

.car-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-row {
    display: flex;
    gap: 19px;
    font-size: 12px;
    color: var(--text-light-grey);
}

.car-details hr {
    border: none;
    border-top: 1px solid var(--border-grey);
    margin: 24px 0;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.car-price .label {
    color: var(--text-grey);
}

.car-price .price strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.car-price .period {
    color: var(--text-light-grey);
}

.btn-rent {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s, color 0.3s;
}

.btn-rent:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-rent i {
    transition: transform 0.3s;
    color: inherit;
    font-size: 14px;
}

.btn-rent:hover i {
    transform: translateX(4px);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--d-grey);
    border-radius: 8px;
    text-decoration: none;
    color: var(--d-grey);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all a:hover {
    background: var(--d-grey);
    color: var(--white-color);
}

.view-all a i {
    transition: transform 0.3s ease;
}

.view-all a:hover i {
    transform: translateX(4px);
}

/* Popular Cars Section End */

/* Testimonials Section Start */
.testimonials {
    background: var(--background-color);
    padding: 100px 100px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.testimonial-card {
    background: var(--white-color);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.testimonial-image:hover .testimonial-avatar {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}


.rating-large {
    gap: 6px;
}

.score {
    font-size: 32px;
    font-weight: 600;
    color: var(--d-grey);
    margin: 0;
}

.rating-text {
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 400;
}


.rating-large .stars {
    font-size: 20px;
    color: #EFBF14;
    margin-bottom: 12px;
}

.rating-large .overall {
    color: var(--text-light-grey);
    font-size: 14px;
}


.testimonial-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 12px;
}

.author strong {
    color: var(--secondary-color);
}

.author span {
    color: var(--text-light-grey);
    font-size: 12px;
}

/* Testimonials Section End */

/* Download App Section Start */
.download-app {
    background: linear-gradient(135deg, #E8F5FF 0%, #F0F8FF 100%);
    padding-bottom: 120px;
    padding: 80px 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.download-app::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(21, 114, 211, 0.08);
    border-radius: 50%;
    top: -2px;
    left: -100px;
}

.download-app::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(21, 114, 211, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.app-content {
    color: #18191F;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.app-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-content h2 .highlight {
    color: var(--primary-color);
}

.app-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-grey);
    line-height: 1.6;
}

.phone-mockup {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 360px;
    height: auto;
    transform: translateY(30px);
    z-index: 2;
}


.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Download App Section End */

/* Footer Start*/
.footer {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 80px 160px 40px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: var(--text-light-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white-color);
}

.footer-column address {
    margin-top: 14px;
    font-style: normal;
    line-height: 1.8;
    color: var(--footer-text-color);
}

.footer-column address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-column address i {
    color: var(--footer-text-color);
    font-size: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: background 0.3s;
    text-decoration: none;
    font-size: 18px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light-grey);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-bottom .separator {
    margin: 0 6px;
    color: var(--text-light-grey);
}

.footer-bottom a {
    color: var(--text-light-grey);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Heart Icon Styling & Animation */
.footer-bottom .fa-heart {
    color: rgb(218, 2, 2);
    font-size: 16px;
    margin: 0 4px;
    transition: transform 0.3s ease;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14%,
    28% {
        transform: scale(1.3);
    }

    42%,
    70% {
        transform: scale(1.15);
    }
}

/* Footer End*/

/* Sticky Book Now Button start */
#book-now-btn {
    position: fixed;
    bottom: -80px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    z-index: 9999;
    transition: bottom 0.35s ease-out,
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    box-sizing: border-box;
}


#book-now-btn.show {
    bottom: 20px;
}


#book-now-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transform: translateX(0);
}

/* Sticky Book Now Button end */

/* Responsiive Media Queries */
@media (max-width: 1200px) {

    .nav-container,
    .why-choose-us,
    .popular-cars,
    .footer {
        padding-left: 80px;
        padding-right: 80px;
    }

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

    .steps {
        gap: 100px;
    }

    .brands {
        gap: 48px;
    }

    .testimonials {
        padding: 80px 80px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .download-app {
        padding: 60px 60px;
    }

    .app-content h2 {
        font-size: 40px;
    }

    .phone-mockup {
        bottom: -80px;
        right: 60px;
        width: 350px;
        height: 350px;
    }

}

/* Tablet Portrait - 992px */
@media (max-width: 992px) {
    .testimonials {
        padding: 60px 40px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .download-app {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
        padding-bottom: 200px;
        gap: 40px;
    }

    .phone-mockup {
        left: 0;
        right: 0;
        margin: auto;
        width: 300px;
        transform: translateY(40px);
    }

    .footer {
        padding: 60px 40px 40px;
    }

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

/* Mobile & Tablet - 768px */
@media (max-width: 768px) {

    .nav-container,
    .why-choose-us,
    .popular-cars,
    .testimonials,
    .download-app,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav {
        display: none;
        transition: 0.3s ease;
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .mobile-nav .mobile-nav-actions .btn-signin,
    .mobile-nav .mobile-nav-actions .btn-signup {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .hero {
        padding: 10px 0 20px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 10px;
    }

    .hero-text {
        max-width: 100%;
        margin-left: 0;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }

    .hero-image .car-image {
        max-width: 100%;
        width: 100%;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin: 40px 0;
    }

    .search-field,
    .btn-search {
        flex: 1 1 100%;
    }

    .steps {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .brands {
        flex-wrap: wrap;
        gap: 32px;
    }

    .why-choose-us {
        flex-direction: column;
    }

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

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-avatar {
        height: auto;
    }

    #book-now-btn {
        left: 50%;
        right: auto;
        bottom: -80px;
        width: calc(100% - 32px);
        max-width: 420px;
        text-align: center;
        border-radius: 10px;
        font-size: 18px;
        transform: translateX(-50%);
        padding: 10px 0;
        box-sizing: border-box;
    }

    #book-now-btn.show {
        bottom: 25px;
    }

    #book-now-btn:hover {
        transform: translateX(-50%);
    }

}

/* Small Mobile - 640px */
@media (max-width: 640px) {
    .testimonials {
        padding: 40px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-avatar {
        height: 250px;
    }

    .download-app {
        padding-bottom: 180px;
    }

    .app-content h2 {
        font-size: 32px;
    }

    .app-content p {
        font-size: 16px;
    }

    .app-badges {
        flex-direction: column;
        width: 50%;
        margin: 0 auto;
        gap: 10px;
    }

    .badge {
        width: 200px;
        height: auto;
    }

    .phone-mockup {
        width: 200px;
        transform: none !important;
        margin-top: 20px;
    }


    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Designed & Developed By Hassan Javed */