@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

body {
    position: relative;
    font-family: "Barlow", sans-serif;
}

.main-hero-sec {
    position: absolute;
    top: 0;
    width: 100%;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.header-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 7px 15px 7px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a.active {
    color: #ED0006;
}

.header-btn {
    background: black;
    color: white;
    padding: 4px 24px 4px 4px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Announcement Bar */
.announcement {
    display: flex;
    justify-content: center;
}

.announcement div {
    background: #ED0006;
    color: white;
    padding: 6px 16px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-top: 25px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.36px;
}

.hero h1 span {
    color: #ED0006;
}

.hero p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons button {
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

/* Search Box */
.search-box {
    display: flex;
    justify-content: center;
}

.search-container {
    width: 100%;
    background: #fff;
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.search-container .divider {
    width: 1px;
    height: 30px;
    background: #ccc;
}

.search-btn {
    background: #ED0006;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Cars Image */
.cars {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.cars img {
    width: 100%;
    max-width: 1000px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .search-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-container .divider {
        display: none;
    }

    .search-btn {
        width: 100%;
    }
}


.input-box-date {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.input-box-date-inner {
    width: 100%;
}

.container {
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .container {
        max-width: 1056px;
        width: 100%;
        margin: 0 auto;
    }
}


/* Footer css start */

.footer {
    background: #000;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    min-width: 160px;
}

.footer-logo-img {
    width: 150px;
    height: 24px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

.footer-col-heading {
    font-weight: 600;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: capitalize;

}



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

.footer-col-items {
    font-weight: 500;
    font-size: 14px;
    line-height: 48px;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;

}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #aaa;
}

.socials a {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.socials a:hover {
    color: #fff;
}

.bottom-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}

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

.socials-icon {
    width: 24px;
    height: 24px;
}

.country {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

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

    .socials {
        margin-bottom: 10px;
    }
}

/* End footer css*/

/* Drive the jounery css start  */

.drive-journey-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.drive-journey-card {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 530px;
    background:
        linear-gradient(90deg,
            rgba(237, 0, 6, 0.6) 0%,
            rgba(237, 0, 6, 0) 100%),
        url("../images/sectionTwo.png") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.drive-journey-content {
    color: #fff;
    padding: 50px;
    max-width: 530px;
}

.drive-journey-tag {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.24px;
    vertical-align: middle;
    text-transform: uppercase;
}

.drive-journey-heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.drive-journey-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 30px;

}

.drive-journey-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.drive-journey-primary {
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;

}

.drive-journey-primary:hover {
    background: #f2f2f2;
}

.drive-journey-secondary {
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;

}

.drive-journey-secondary:hover {
    background: #f2f2f2;
}

/* Responsive */
@media (max-width: 768px) {
    .drive-journey-card {
        min-height: 450px;
        background:
            linear-gradient(180deg,
                rgba(237, 0, 6, 0.6) 0%,
                rgba(237, 0, 6, 0) 100%),
            url("../images/sectionTwo.png") center/cover no-repeat;
    }

    .drive-journey-content {
        padding: 30px;
    }

    .drive-journey-heading {
        font-size: 28px;
    }

    .drive-journey-description {
        font-size: 13px;
    }
}

/* end drive css */


/* start rent section*/

.rent-section {
    background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 0px 20px;
    position: relative;
    overflow: visible;
}

.rent-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.rent-image {
    display: flex;
    justify-content: center;
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.rent-image img {
    width: 100%;
    max-width: 300px;
    display: block;
}

.rent-content {
    flex: 1;
    color: #fff;
}

.rent-content-heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    text-transform: capitalize;

}

.rent-content-sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 20px;
}


.rent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.rent-buttons-primary {
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
}

.rent-buttons-primary:hover {
    background: #e5e5e5;
}

.rent-buttons-secondary {
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
}

.rent-buttons-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */

@media (max-width: 900px) {
    .rent-container {
        flex-direction: column;
        text-align: center;
    }

    .rent-image {
        margin-top: -40px;
    }

    .rent-image img {
        margin: auto;
    }

    .rent-buttons {
        justify-content: center;
    }
}

@media (max-width: 500px) {

    .rent-content-heading {
        font-size: 24px;
    }
}


/* end the rent section css */


/* Start FAQ section css */

.faq-section {
    padding: 40px 20px;
    background: white;
    max-width: 1200px;
    margin: auto;
}

.faq-container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.faq-left {
    flex: 1;
}

.faq-left-tag {
    color: #2C2A2A;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.24px;
    vertical-align: middle;
    text-transform: uppercase;

}

.faq-left-heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.faq-left-heading-span {
    color: #ed0006;
}

.faq-left-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 25px;
    color: #8B8B8B;
}

.faq-btn {
    padding: 2px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: capitalize;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.faq-btn-text {
    padding: 0px 20px;
}

.faq-btn-icon {
    width: 32px;
    height: 32px;
}

.faq-right {
    flex: 1;
}

.faq-right-item {
    background: #e9e9e9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: solid 1px #e9e9e9;
}

.faq-right-item-summary {
    list-style: none;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.24px;
}

.faq-right-item-summary::-webkit-details-marker {
    display: none;
}

.faq-right-answer {
    padding: 10px 20px 18px 20px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    background-color: white;
}


.faq-right-item[open] .faq-right-icon-contianer {
    transform: rotate(180deg);
    transition: 0.3s;
}

.faq-item-icon {
    width: 16px;
    height: 9px;
}

/* Responsive */

@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
        gap: 50px;
    }

    .faq-left h2 {
        font-size: 28px;
    }

    .faq-desc {
        max-width: 100%;
    }
}

/* end FAQ section css */

/* testimonial section css start */

.testimonials-section {
    background-color: #F5F5F5;
}

.testimonials-container {

    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 40px 10px;
}


.testimonials-left {
    flex: 1;
}

.tag {
    color: #2C2A2A;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.24px;
    vertical-align: middle;
    text-transform: uppercase;

}

.testimonials-left-heading {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    text-transform: capitalize;

}

.testimonials-left-heading-color {
    color: #ed0006;
}

.testimonials-left-desc {
    color: #8B8B8B;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 20px;
}

.testi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2f80ed;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.testi-btn:hover {
    background: #1f6ed4;
}

.dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}


.testimonials-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 360px;
    height: 260px;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.card-back-1 {
    background: rgba(237, 0, 6, 0.25);
    top: -12px;
    right: -12px;
}

.card-back-2 {
    background: rgba(237, 0, 6, 0.15);
    top: -24px;
    right: -24px;
}

.card-main {
    background: #ed0006;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-main p {
    font-size: 13px;
    line-height: 1.6;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user h4 {
    font-size: 14px;
    font-weight: 600;
}

.user span {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive */

@media (max-width: 900px) {
    .testimonials-container {
        flex-direction: column;
        text-align: center;
    }

    .desc {
        max-width: 100%;
    }

    .card-stack {
        margin-top: 40px;
    }
}

/* testimonial section css end */

.spacer {
    margin-top: 260px;
}



/* solution section css start */

.services-section {
    background: white;
    margin-top: 80px;
    padding: 100px 20px;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}


.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

.services-header-tag {
    color: #2C2A2A;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2.24px;
    vertical-align: middle;
    text-transform: uppercase;

}

.services-header h2 {
    color: #2C2A2A;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    vertical-align: middle;
    text-transform: capitalize;

}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */

.service-card {
    background: #e9e9e9;
    padding: 30px 25px;
    border-radius: 16px;
    transition: 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box img {
    width: 30px;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Red Arrow Button */

.arrow-btn {
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.arrow-btn-img {

    width: 50px;
    height: 50px;
}

/* ================= Responsive ================= */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .services-header h2 {
        font-size: 28px;
    }
}


/* solution section css end */


/* match section css start */

.match-section {
    margin-top: 50px;
    padding: 50px 20px 50px 0px;
    background: white
}

.match-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.match-left {
    flex: 1;
    display: flex;
    justify-content: center;
    background: #ED0006;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
}

.red-shape {
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-shape img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.match-right {
    flex: 1;
}

.match-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
}

.match-right-heading h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}

.match-right h2 span {
    color: #ed0006;
}

.match-right-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.primary-btn {
    display: inline-block;
    background: #E8002A;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.primary-btn:hover {
    background: #c80005;
}

/* Responsive */

@media (max-width: 1000px) {
    .match-container {
        flex-direction: column;
        text-align: center;
    }

    .desc {
        max-width: 100%;
    }

    .match-right h2 {
        font-size: 28px;
    }

    .red-shape {
        max-width: 450px;
    }
}

@media (max-width: 600px) {
    .match-section {
        padding: 70px 20px;
    }

    .red-shape {
        padding: 25px;
    }

    .match-right h2 {
        font-size: 24px;
    }
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #f5f5f5;
    overflow: hidden;
}

.hero-left {
    position: relative;
    width: 50%;
    height: 450px;
}

/* Red Shape */
.red-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 95%;
    background: #ff0000;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 1;
}

/* Single Combined Image */
.phone-img {
    position: absolute;
    bottom: -10px;
    left: 120px;
    width: 380px;
    z-index: 2;
}


/* match section end */


.collection-section {
    background: #f4f4f4;
    padding: 100px 20px;
}

.collection-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}


.collection-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 15px;
}

.collection-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.collection-header h2 span {
    color: #ed0006;
}


.collection-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.collection-tab {
    padding: 8px 18px;
    border-radius: 25px;
    border: none;
    background: #e9e9e9;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.collection-tab.active,
.collection-tab:hover {
    background: #ed0006;
    color: #fff;
}


.collection-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.collection-car-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.collection-car-card:hover {
    transform: translateY(-8px);
}

.collection-car-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.collection-stars {
    color: #f4b400;
    font-size: 14px;
    margin-bottom: 15px;
}

.collection-car-card img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.collection-car-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.collection-price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.collection-price span {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

.collection-details-btn {
    display: inline-block;
    background: #ed0006;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.collection-details-btn:hover {
    background: #c80005;
}


.collection-slider-dots {
    margin-top: 30px;
}

.collection-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}

.collection-dot.active {
    background: #ed0006;
}

/* Responsive */

@media (max-width: 1000px) {
    .collection-cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .collection-cars-grid {
        grid-template-columns: 1fr;
    }

    .collection-header h2 {
        font-size: 26px;
    }
}

/* collection section css end */
.why-wrapper {
    padding: 0px 20px 0;
}

.why-card {
    max-width: 1200px;
    margin: auto;
    margin-top: -71px;
    background: #F1F1F9;
    border-radius: 18px;
    padding: 11px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.why-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.why-golibre {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
}

.feature {
    display: flex;
    gap: 15px;
    width: 25%;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature p {
    font-size: 13px;
    line-height: 1.4;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.green {
    background: #e7f9ef;
    color: #1dbf73;
}

.yellow {
    background: #fff4df;
    color: #f5a623;
}

.blue {
    background: #e8f1ff;
    color: #2979ff;
}

.clock {
    background: #f0f0f0;
    color: #333;
}

.why-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

.rate-number {
    font-weight: 700;
}

.stars {
    color: #ffb400;
    letter-spacing: 2px;
}

.rating-text {
    color: #777;
}

.stat {
    color: #555;
}

.stat strong {
    font-weight: 700;
    margin-right: 5px;
}

.divider {
    width: 1px;
    height: 20px;
    background: #ccc;
}

/* ================= COMMITMENT SECTION ================= */

.commitment-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.small-heading {
    color: red;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 600;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #2C2A2A;
}

.main-heading span {
    color: red;
}

.cards-row {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 40px;
}

.info-card {
    width: 30%;
}

.red-icon {
    width: 50px;
    height: 50px;
    background: red;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* WRAPPER */
.gs-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

/* CARD */
.gs-step-card {
    flex: 1;
    border-radius: 18px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    background-color: #eef1f4;
    min-height: 420px;
    transition: transform 0.3s ease;
}

.gs-step-card-box {
    padding: 40px;
}


.gs-step-card:hover {
    transform: translateY(-6px);
}

/* TOP ROW */
.gs-step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gs-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.gs-step-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #e2e6ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
}

/* TEXT */
.gs-step-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 20px 0 25px;
    max-width: 270px;
}

/* IMAGE */
.gs-step-image-box {
    margin-top: auto;
    border-radius: 14px;
    overflow: hidden;
}

.gs-step-image-box img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.car-type{
    font-weight: 700
}