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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #171717;
    background: #ffffff;
    overflow-x: hidden;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   SVG
===================================================== */

svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

    flex-shrink: 0;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    height: 76px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 6%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: sticky;

    top: 0;

    z-index: 1000;
}


.logo {
    display: flex;

    align-items: center;

    gap: 10px;
}


.logo-icon {
    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffd21c;

    border-radius: 12px;
}


.logo-icon svg {
    width: 27px;

    height: 27px;

    stroke: #111;

    stroke-width: 2.2;
}


.logo h2 {
    font-size: 19px;

    font-weight: 800;
}


.logo span {
    display: block;

    font-size: 8px;

    color: #777;

    margin-top: 2px;
}


.desktop-nav {
    display: flex;

    gap: 34px;
}


.desktop-nav a {
    font-size: 14px;

    font-weight: 600;

    color: #666;

    transition: .25s;
}


.desktop-nav a:hover,
.desktop-nav .active {
    color: #111;
}


.header-book {
    padding: 12px 20px;

    border-radius: 10px;

    background: #171717;

    color: white;

    font-size: 13px;

    font-weight: 700;

    transition: .25s;
}


.header-book:hover {
    background: #ffd21c;

    color: #111;
}



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

.hero {
    min-height: 680px;

    padding: 80px 6%;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 210, 28, .25),
            transparent 30%
        ),
        #fafafa;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 70px;

    align-items: center;
}


.hero-content {
    max-width: 650px;
}


.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 15px;

    background: #fff3b0;

    color: #856900;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 20px;
}


.hero-badge svg {
    width: 15px;

    height: 15px;
}


.hero h1 {
    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.02;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 25px;
}


.hero h1 span {
    display: block;

    color: #e0ad00;
}


.hero-content > p {
    max-width: 530px;

    color: #666;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin-bottom: 45px;
}


.primary-btn,
.call-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 15px 23px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 800;
}


.primary-btn {
    background: #ffd21c;

    color: #111;

    transition: .25s;
}


.primary-btn:hover {
    transform: translateY(-2px);
}


.call-btn {
    background: white;

    border: 1px solid #ddd;
}


.call-btn svg {
    width: 17px;

    height: 17px;
}


.hero-stats {
    display: flex;

    gap: 45px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;
}


.hero-stats strong {
    font-size: 23px;
}


.hero-stats span {
    font-size: 11px;

    color: #888;

    margin-top: 4px;
}



/* =====================================================
   BOOKING CARD
===================================================== */

.booking-card {
    background: white;

    border-radius: 22px;

    padding: 28px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .10);

    border: 1px solid #eeeeee;
}


.booking-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.booking-heading span {
    font-size: 10px;

    font-weight: 800;

    color: #d09f00;

    letter-spacing: 1px;
}


.booking-heading h2 {
    font-size: 25px;

    margin-top: 4px;
}


.booking-icon {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff4bd;

    border-radius: 14px;
}


.booking-icon svg {
    width: 25px;

    height: 25px;
}


.input-group {
    margin-bottom: 17px;
}


.input-group label {
    display: block;

    font-size: 11px;

    font-weight: 700;

    color: #555;

    margin-bottom: 7px;
}


.input-box,
.select-box {
    height: 48px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 13px;

    background: #fafafa;

    border: 1px solid #e5e5e5;

    border-radius: 9px;
}


.input-box svg,
.select-box svg {
    width: 17px;

    height: 17px;

    color: #777;
}


.input-box input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-size: 12px;
}


.booking-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.select-box select {
    width: 100%;

    height: 100%;

    border: none;

    background: transparent;

    outline: none;

    font-size: 12px;

    color: #333;
}


.booking-btn {
    width: 100%;

    height: 50px;

    border-radius: 10px;

    background: #171717;

    color: white;

    font-weight: 800;

    font-size: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    transition: .25s;
}


.booking-btn svg {
    width: 17px;

    height: 17px;
}


.booking-btn:hover {
    background: #ffd21c;

    color: #111;
}


.secure-text {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    color: #999;

    font-size: 9px;

    margin-top: 13px;
}


.secure-text svg {
    width: 12px;

    height: 12px;
}



/* =====================================================
   GENERAL SECTION
===================================================== */

.section {
    padding: 100px 6%;
}


.section-heading {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 55px;
}


.section-heading > span {
    color: #c69a00;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.section-heading h2 {
    font-size: clamp(34px, 4vw, 48px);

    letter-spacing: -2px;

    margin: 10px 0 13px;
}


.section-heading p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;
}



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

.services-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 18px;
}


.service-card {
    padding: 28px;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    transition: .3s;

    background: white;
}


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

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .07);
}


.featured-service {
    background: #171717;

    color: white;
}


.service-icon {
    width: 52px;

    height: 52px;

    background: #fff4bd;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}


.service-icon svg {
    color: #111;

    width: 25px;

    height: 25px;
}


.service-card h3 {
    font-size: 17px;

    margin-bottom: 10px;
}


.service-card p {
    font-size: 12px;

    line-height: 1.7;

    color: #777;

    margin-bottom: 20px;
}


.featured-service p {
    color: #aaa;
}


.service-card a {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    font-size: 11px;

    font-weight: 800;
}


.service-card a svg {
    width: 14px;

    height: 14px;
}



/* =====================================================
   CABS
===================================================== */

.cabs-section {
    background: #fafafa;
}


.cab-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 18px;
}


.cab-card {
    position: relative;

    overflow: hidden;

    background: white;

    border: 1px solid #eeeeee;

    border-radius: 18px;
}


.cab-image {
    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.cab-image svg {
    width: 105px;

    height: 105px;

    stroke-width: 1.3;
}


.sedan {
    background: #fff4c4;
}


.suv {
    background: #e9f2ff;
}


.ertiga {
    background: #edfff0;
}


.tempo {
    background: #f4eaff;
}


.cab-info {
    padding: 20px;
}


.cab-title {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 15px;
}


.cab-title h3 {
    font-size: 16px;
}


.cab-title span {
    display: block;

    color: #888;

    font-size: 9px;

    margin-top: 4px;
}


.cab-title strong {
    font-size: 13px;

    white-space: nowrap;
}


.cab-features {
    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 18px;
}


.cab-features span {
    display: inline-flex;

    align-items: center;

    gap: 3px;

    padding: 5px 7px;

    background: #f6f6f6;

    border-radius: 5px;

    color: #777;

    font-size: 8px;
}


.cab-features svg {
    width: 9px;

    height: 9px;

    stroke-width: 2.5;
}


.cab-info button {
    width: 100%;

    height: 40px;

    background: #171717;

    color: white;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 700;
}


.cab-info button:hover {
    background: #ffd21c;

    color: #111;
}


.popular-label {
    position: absolute;

    top: 12px;

    left: 12px;

    padding: 6px 9px;

    background: #ffd21c;

    border-radius: 5px;

    font-size: 8px;

    font-weight: 800;

    z-index: 2;
}



/* =====================================================
   WHY US
===================================================== */

.why-section {
    min-height: 600px;

    padding: 100px 10%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.why-content > span {
    color: #c69a00;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.why-content h2 {
    font-size: clamp(40px, 5vw, 58px);

    letter-spacing: -3px;

    line-height: 1.05;

    margin: 12px 0 20px;
}


.why-content h2 strong {
    color: #d2a300;
}


.why-content > p {
    color: #777;

    font-size: 14px;

    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 30px;
}


.why-list {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


.why-item {
    display: flex;

    gap: 14px;
}


.why-item > div {
    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff4bd;

    border-radius: 10px;
}


.why-item > div svg {
    width: 20px;

    height: 20px;
}


.why-item h3 {
    font-size: 14px;

    margin-bottom: 4px;
}


.why-item p {
    font-size: 10px;

    color: #888;
}


.why-image {
    min-height: 420px;

    border-radius: 30px;

    background:
        radial-gradient(circle, #fff3aa, #fff);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}


.big-car svg {
    width: 190px;

    height: 190px;

    stroke-width: 1.1;

    filter:
        drop-shadow(
            0 25px 20px rgba(0,0,0,.12)
        );
}


.experience-box {
    position: absolute;

    bottom: 25px;

    left: 25px;

    background: #171717;

    color: white;

    padding: 18px 20px;

    border-radius: 14px;

    display: flex;

    gap: 12px;

    align-items: center;
}


.experience-box strong {
    font-size: 28px;

    color: #ffd21c;
}


.experience-box span {
    font-size: 9px;

    line-height: 1.4;
}



/* =====================================================
   STEPS
===================================================== */

.steps {
    max-width: 1000px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


.step {
    text-align: center;

    max-width: 220px;
}


.step-number {
    width: 58px;

    height: 58px;

    margin: auto auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffd21c;

    font-size: 13px;

    font-weight: 800;
}


.step h3 {
    font-size: 14px;

    margin-bottom: 7px;
}


.step p {
    font-size: 10px;

    color: #888;

    line-height: 1.6;
}


.step-line {
    width: 100px;

    height: 1px;

    background: #ddd;
}



/* =====================================================
   REVIEWS
===================================================== */

.reviews-section {
    padding: 100px 6%;

    background: #fafafa;
}


.review-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

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

    gap: 18px;
}


.review-card {
    background: white;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    padding: 28px;
}


.stars {
    display: flex;

    gap: 2px;

    color: #e2ae00;

    margin-bottom: 18px;
}


.stars svg {
    width: 14px;

    height: 14px;

    fill: currentColor;

    stroke: currentColor;
}


.review-card > p {
    font-size: 12px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 25px;
}


.review-user {
    display: flex;

    gap: 10px;

    align-items: center;
}


.review-user > div {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff3b0;

    border-radius: 50%;

    font-size: 10px;

    font-weight: 800;
}


.review-user strong {
    display: block;

    font-size: 11px;
}


.review-user span {
    display: block;

    font-size: 8px;

    color: #999;

    margin-top: 3px;
}



/* =====================================================
   CTA
===================================================== */

.cta-section {
    margin: 80px 6%;

    padding: 60px 7%;

    border-radius: 25px;

    background: #ffd21c;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.cta-section > div > span {
    font-size: 10px;

    font-weight: 800;
}


.cta-section h2 {
    font-size: clamp(30px, 4vw, 45px);

    letter-spacing: -2px;

    line-height: 1.1;

    margin: 8px 0 10px;
}


.cta-section p {
    font-size: 12px;
}


.cta-section button {
    padding: 15px 25px;

    background: #171717;

    color: white;

    border-radius: 10px;

    font-weight: 800;

    white-space: nowrap;

    display: inline-flex;

    align-items: center;

    gap: 8px;
}


.cta-section button svg {
    width: 16px;

    height: 16px;
}



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

footer {
    background: #111;

    color: white;

    padding: 70px 6% 25px;
}


.footer-grid {
    display: grid;

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

    gap: 50px;

    max-width: 1200px;

    margin: auto;
}


.footer-brand p {
    color: #888;

    font-size: 11px;

    line-height: 1.8;

    max-width: 260px;

    margin-top: 20px;
}


footer .logo h2 {
    color: white;
}


footer .logo span {
    color: #777;
}


footer h3 {
    font-size: 12px;

    margin-bottom: 18px;
}


footer a,
footer p {
    display: block;

    color: #888;

    font-size: 10px;

    margin-bottom: 12px;
}


footer a:hover {
    color: #ffd21c;
}


footer .footer-grid > div:last-child a {
    display: flex;

    align-items: center;

    gap: 7px;
}


footer .footer-grid > div:last-child svg {
    width: 13px;

    height: 13px;
}


.footer-bottom {
    max-width: 1200px;

    margin: 60px auto 0;

    padding-top: 20px;

    border-top: 1px solid #292929;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 9px;
}



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

.mobile-nav {
    display: none;
}



/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {
    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25d366;

    color: white;

    z-index: 900;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);
}


.whatsapp svg {
    width: 25px;

    height: 25px;
}



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

@media(max-width: 1000px) {

    .desktop-nav {
        display: none;
    }


    .hero {
        grid-template-columns: 1fr;

        padding-top: 60px;
    }


    .hero-content {
        text-align: center;

        margin: auto;
    }


    .hero-content > p {
        margin-left: auto;

        margin-right: auto;
    }


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


    .hero-stats {
        justify-content: center;
    }


    .booking-card {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }


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


    .why-section {
        grid-template-columns: 1fr;
    }


    .why-content {
        text-align: center;
    }


    .why-content > p {
        margin-left: auto;

        margin-right: auto;
    }


    .why-list {
        max-width: 500px;

        margin: auto;

        text-align: left;
    }


    .why-image {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }


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

}



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

@media(max-width: 600px) {

    body {
        padding-bottom: 65px;
    }


    .header {
        height: 65px;

        padding: 0 18px;
    }


    .logo-icon {
        width: 38px;

        height: 38px;

        border-radius: 10px;
    }


    .logo-icon svg {
        width: 23px;

        height: 23px;
    }


    .logo h2 {
        font-size: 16px;
    }


    .logo span {
        font-size: 7px;
    }


    .header-book {
        padding: 9px 13px;

        font-size: 10px;
    }


    .hero {
        padding: 45px 18px 60px;

        min-height: auto;

        gap: 40px;
    }


    .hero h1 {
        font-size: 48px;

        letter-spacing: -3px;
    }


    .hero-content > p {
        font-size: 13px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-stats {
        gap: 22px;
    }


    .hero-stats strong {
        font-size: 18px;
    }


    .hero-stats span {
        font-size: 8px;
    }


    .booking-card {
        padding: 20px;

        border-radius: 17px;
    }


    .booking-heading h2 {
        font-size: 21px;
    }


    .booking-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .section {
        padding: 70px 18px;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2 {
        font-size: 34px;
    }


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


    .service-card {
        padding: 23px;
    }


    .why-section {
        padding: 70px 18px;

        gap: 40px;
    }


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


    .why-image {
        min-height: 300px;
    }


    .big-car svg {
        width: 120px;

        height: 120px;
    }


    .steps {
        flex-direction: column;

        gap: 20px;
    }


    .step-line {
        width: 1px;

        height: 45px;
    }


    .reviews-section {
        padding: 70px 18px;
    }


    .cta-section {
        margin: 30px 18px;

        padding: 35px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .cta-section h2 {
        font-size: 32px;
    }


    footer {
        padding: 50px 20px 25px;
    }


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

        gap: 35px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 10px;

        margin-top: 40px;
    }


    .mobile-nav {
        position: fixed;

        bottom: 0;

        left: 0;

        width: 100%;

        height: 65px;

        background: white;

        border-top: 1px solid #eee;

        display: flex;

        justify-content: space-around;

        align-items: center;

        z-index: 1000;
    }


    .mobile-nav a {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 4px;

        font-size: 9px;

        font-weight: 600;

        color: #999;
    }


    .mobile-nav a svg {
        width: 18px;

        height: 18px;
    }


    .mobile-nav .mobile-active {
        color: #111;
    }


    .whatsapp {
        width: 46px;

        height: 46px;

        right: 15px;

        bottom: 80px;
    }


    .whatsapp svg {
        width: 21px;

        height: 21px;
    }

}