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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f7f8fa;
    color: #151515;
    line-height: 1.6;
}

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

img {
    width: 100%;
    display: block;
}

button,
input {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


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

.header {
    height: 76px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 20px rgba(0,0,0,.07);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #54d62c;
    color: #fff;
    font-size: 21px;
}

.logo strong {
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
}

.logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #777;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-menu a {
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.desktop-menu a:hover {
    color: #4fc928;
}

.nav-call {
    background: #55d52d;
    color: #fff;
    padding: 11px 19px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
}

.nav-call i {
    margin-right: 6px;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 23px;
}


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

.hero {
    min-height: 620px;
    position: relative;
    background:
        url("../images/hero-taxi.webp")
        center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.42),
            rgba(0,0,0,.12)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(84,214,44,.14);
    border: 1px solid rgba(84,214,44,.5);
    color: #67df40;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    margin-top: 20px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 800;
}

.hero h1 span {
    color: #5cdb35;
}

.hero p {
    max-width: 530px;
    margin-top: 20px;
    color: #e9e9e9;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.btn-primary {
    background: #56d52f;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #111;
}


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

.booking-section {
    margin-top: -85px;
    position: relative;
    z-index: 10;
    padding-bottom: 70px;
}

.booking-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.booking-heading span,
.section-tag {
    color: #52cc2c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.booking-heading h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 5px;
}

.booking-heading h2 strong {
    color: #55d52d;
}

.booking-heading p {
    color: #777;
    font-size: 13px;
    margin-top: 5px;
}

.trip-tabs {
    display: flex;
    margin: 22px 0;
    border-bottom: 2px solid #edf0ed;
}

.trip-tab {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #777;
}

.trip-tab.active {
    color: #111;
    border-bottom: 3px solid #55d52d;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 7px;
}

.form-group label i {
    color: #55d52d;
    margin-right: 5px;
}

.input-box {
    height: 48px;
    background: #f3f4f3;
    border: 1px solid #e5e7e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.input-box > i {
    color: #55d52d;
    margin-right: 10px;
}

.input-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.book-btn {
    height: 52px;
    border: 0;
    border-radius: 9px;
    background: #55d52d;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(85,213,45,.25);
}


/* ================= COMMON ================= */

.section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-top: 8px;
}

.section-head h2 span {
    color: #55d52d;
}

.section-head p {
    color: #777;
    font-size: 14px;
    margin-top: 12px;
}


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

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 430px;
    object-fit: cover;
    border-radius: 22px;
}

.experience-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #55d52d;
    color: #fff;
    padding: 17px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-box strong {
    font-size: 32px;
}

.experience-box span {
    font-size: 11px;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 44px;
    margin: 8px 0 20px;
}

.about-content h2 span {
    color: #55d52d;
}

.about-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #55d52d;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}


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

.services {
    background: #f6f8f6;
}

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

.service-card {
    background: #fff;
    border-radius: 17px;
    padding: 28px 22px;
    transition: .3s;
    border: 1px solid #edf0ed;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #eaf9e6;
    color: #55d52d;
    border-radius: 13px;
    font-size: 20px;
}

.service-card h3 {
    margin-top: 18px;
    font-size: 17px;
}

.service-card p {
    color: #777;
    font-size: 12px;
    margin-top: 7px;
}


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

.why {
    background: #111;
    color: #fff;
}

.why .section-head p {
    color: #aaa;
}

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

.why-card {
    padding: 28px 20px;
    background: #191919;
    border: 1px solid #292929;
    border-radius: 16px;
}

.why-card i {
    font-size: 25px;
    color: #55d52d;
}

.why-card h3 {
    margin-top: 15px;
    font-size: 16px;
}

.why-card p {
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
}


/* ================= TARIFF ================= */

.tariff {
    background: #fff;
}

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

.tariff-card {
    position: relative;
    background: #f7f9f7;
    border: 1px solid #e9ece9;
    padding: 28px 20px;
    border-radius: 17px;
    text-align: center;
}

.tariff-card.featured {
    background: #55d52d;
    color: #fff;
    border-color: #55d52d;
}

.tariff-card i {
    font-size: 28px;
    color: #55d52d;
}

.tariff-card.featured i {
    color: #fff;
}

.tariff-card h3 {
    margin-top: 10px;
    font-size: 17px;
}

.tariff-card strong {
    display: block;
    margin-top: 10px;
    font-size: 29px;
}

.tariff-card strong small {
    font-size: 12px;
    font-weight: 500;
}

.tariff-card > span {
    font-size: 11px;
    color: #777;
}

.tariff-card.featured > span {
    color: #eaffdf;
}

.popular {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #111;
    color: #fff;
    font-size: 8px;
    padding: 4px 7px;
    border-radius: 30px;
}


/* ================= ROUTES ================= */

.routes {
    background: #f6f8f6;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.route-card {
    background: #fff;
    border: 1px solid #e7eae7;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.route-card i {
    color: #55d52d;
}

.route-card:hover {
    border-color: #55d52d;
    transform: translateY(-3px);
}


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

.cta {
    background: #55d52d;
    padding: 55px 0;
    color: #fff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cta h2 {
    font-size: 34px;
    margin-top: 3px;
}

.cta p {
    font-size: 13px;
}

.cta-btn {
    background: #111;
    padding: 15px 24px;
    border-radius: 10px;
    font-weight: 700;
    white-space: nowrap;
}


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

.footer {
    background: #101010;
    color: #fff;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-brand p {
    color: #999;
    max-width: 280px;
    font-size: 12px;
    margin-top: 15px;
}

.footer h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-grid > div > a {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 9px;
}

.footer-grid > div > a:hover {
    color: #55d52d;
}

.footer-grid > div > a i {
    color: #55d52d;
    margin-right: 5px;
}

.copyright {
    border-top: 1px solid #262626;
    padding: 18px;
    text-align: center;
    color: #777;
    font-size: 11px;
}


/* ================= FLOATING ================= */

.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 9999;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

.floating-call {
    left: 18px;
    background: #111;
}

.floating-whatsapp {
    right: 18px;
    background: #25d366;
}


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

@media (max-width: 900px) {

    .desktop-menu,
    .nav-call {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

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

    .hero p {
        font-size: 14px;
    }

    .booking-section {
        margin-top: -45px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image img {
        height: 350px;
    }

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

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


@media (max-width: 600px) {

    .header {
        height: 68px;
    }

    .hero {
        min-height: 470px;
        align-items: flex-end;
        padding-bottom: 75px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.18),
                rgba(0,0,0,.82)
            );
    }

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

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

    .hero-buttons {
        margin-top: 20px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 12px;
    }

    .booking-card {
        padding: 22px 17px;
        border-radius: 17px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .section {
        padding: 65px 0;
    }

    .service-grid,
    .why-grid,
    .tariff-grid,
    .route-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 20px 14px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-image img {
        height: 300px;
    }

    .experience-box {
        bottom: 12px;
        right: 12px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta h2 {
        font-size: 28px;
    }

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

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

    .route-card {
        padding: 14px 10px;
        font-size: 10px;
    }

}

/* ================= NAV ACTIONS ================= */

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

.menu-btn {
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 10px;
    background: #f2f5f2;
    color: #111;
    cursor: pointer;
}


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

.mobile-menu {
    display: none;
}


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

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(85,213,45,.18),
            transparent 35%
        ),
        #101210;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,12,10,.98) 0%,
            rgba(10,12,10,.82) 45%,
            rgba(10,12,10,.25) 100%
        );
}

.hero-grid {
    min-height: 650px;
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-text {
    max-width: 620px;
    color: #fff;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -2px;
    margin-top: 20px;
}

.hero h1 span {
    color: #58d931;
}

.hero p {
    max-width: 520px;
    color: #bfc5bf;
    font-size: 16px;
    margin-top: 22px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d9ded9;
    font-size: 11px;
    font-weight: 600;
}

.hero-features i {
    color: #58d931;
}


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

.hero-car {
    position: relative;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car img {
    width: 580px;
    max-width: 100%;
    position: relative;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0,0,0,.55));
    animation: carFloat 4s ease-in-out infinite;
}

.car-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(85,213,45,.12);

    filter: blur(45px);
}

.car-badge {
    position: absolute;
    right: 20px;
    bottom: 65px;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,.96);
    color: #111;

    padding: 12px 16px;
    border-radius: 13px;

    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}

.car-badge > i {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #58d931;
    color: #fff;
}

.car-badge strong {
    display: block;
    font-size: 12px;
}

.car-badge small {
    display: block;
    color: #777;
    font-size: 9px;
}

@keyframes carFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


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

@media (max-width: 900px) {

    .desktop-menu,
    .nav-call {
        display: none;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .mobile-menu {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 74px;

        background: #fff;

        padding: 12px;

        border-radius: 16px;

        box-shadow:
            0 20px 50px rgba(0,0,0,.18);

        display: flex;
        flex-direction: column;
        gap: 3px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: .3s;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        gap: 12px;

        padding: 12px;

        border-radius: 9px;

        font-size: 13px;
        font-weight: 600;
    }

    .mobile-menu a:hover {
        background: #f0f8ee;
        color: #4fc928;
    }

    .mobile-menu a i {
        width: 20px;
        color: #55d52d;
    }

    .mobile-menu .mobile-call {
        justify-content: center;
        margin-top: 7px;

        background: #55d52d;
        color: #fff;
    }

    .mobile-menu .mobile-call i {
        color: #fff;
    }

    .hero {
        min-height: 720px;
    }

    .hero-grid {
        min-height: 720px;

        grid-template-columns: 1fr;

        padding-top: 45px;
        padding-bottom: 35px;
    }

    .hero-text {
        text-align: center;
        margin: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-car {
        height: 300px;
        margin-top: -10px;
    }

    .hero-car img {
        width: 105%;
    }

    .car-badge {
        right: 5px;
        bottom: 15px;
    }
}


@media (max-width: 600px) {

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

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

    .hero-car {
        height: 260px;
    }

    .car-glow {
        width: 280px;
        height: 280px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features div {
        font-size: 9px;
    }

    .car-badge {
        padding: 9px 11px;
    }

    .car-badge strong {
        font-size: 10px;
    }
}

/* ================= PREMIUM BOOKING ================= */

.booking-section {
    position: relative;
    z-index: 20;
    margin-top: -95px;
    padding-bottom: 85px;
}

.booking-card {
    width: min(900px, 94%);
    margin: auto;

    background: rgba(255,255,255,.98);

    border: 1px solid rgba(0,0,0,.06);

    border-radius: 24px;

    padding: 30px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.16);

    backdrop-filter: blur(15px);
}


/* TOP */

.booking-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.booking-label {
    color: #55d52d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.booking-top h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-top: 5px;
}

.booking-top h2 span {
    color: #55d52d;
}

.booking-top p {
    color: #858585;
    font-size: 12px;
    margin-top: 5px;
}

.booking-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: #edfae9;
    color: #55d52d;

    font-size: 23px;
}


/* TRIP SWITCH */

.trip-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin: 24px 0 22px;

    padding: 5px;

    background: #f4f6f4;
    border-radius: 13px;
}

.trip-option {
    border: 0;
    background: transparent;

    padding: 11px 15px;

    border-radius: 10px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #777;

    transition: .25s;
}

.trip-option > i {
    font-size: 16px;
}

.trip-option span {
    text-align: left;
}

.trip-option strong {
    display: block;
    font-size: 12px;
}

.trip-option small {
    display: block;
    font-size: 9px;
    margin-top: 2px;
}

.trip-option.active {
    background: #fff;
    color: #111;

    box-shadow:
        0 4px 15px rgba(0,0,0,.07);
}

.trip-option.active > i {
    color: #55d52d;
}


/* FORM */

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.form-group label {
    display: block;

    color: #444;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .7px;

    margin-bottom: 7px;
}

.form-group label i {
    color: #55d52d;
    margin-right: 4px;
}


/* LOCATION */

.location-row {
    display: grid;

    grid-template-columns:
        1fr 42px 1fr;

    align-items: end;

    gap: 10px;
}

.location-input {
    position: relative;
}

.location-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    margin-right: 12px;

    flex-shrink: 0;
}

.pickup-dot {
    background: #55d52d;
    box-shadow: 0 0 0 4px #e5f8df;
}

.drop-dot {
    background: #111;
    box-shadow: 0 0 0 4px #e8e8e8;
}

.input-box {
    height: 50px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    background: #f6f7f6;

    border: 1px solid #e8ebe8;

    border-radius: 10px;

    transition: .25s;
}

.input-box:focus-within {
    background: #fff;

    border-color: #55d52d;

    box-shadow:
        0 0 0 3px rgba(85,213,45,.09);
}

.input-box > i {
    color: #55d52d;
    margin-right: 10px;
}

.input-box input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #222;

    font-size: 12px;
}

.input-box input::placeholder {
    color: #aaa;
}


/* SWAP */

.swap-btn {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 1px solid #e5e8e5;

    background: #fff;

    color: #55d52d;

    cursor: pointer;

    margin-bottom: 6px;

    box-shadow: 0 5px 15px rgba(0,0,0,.07);

    transition: .3s;
}

.swap-btn:hover {
    background: #55d52d;
    color: #fff;

    transform: rotate(180deg);
}


/* DATE TIME */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}


/* PHONE */

.phone-input {
    padding-left: 12px;
}

.country-code {
    font-size: 12px;
    font-weight: 700;
}

.phone-line {
    width: 1px;
    height: 20px;

    background: #ddd;

    margin: 0 10px;
}


/* BUTTON */

.book-btn {
    height: 54px;

    border: 0;
    border-radius: 11px;

    background: #55d52d;
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(85,213,45,.2);

    transition: .3s;
}

.book-btn span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.book-btn > i {
    font-size: 14px;
}

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

    box-shadow:
        0 15px 30px rgba(85,213,45,.3);
}


/* NOTE */

.booking-note {
    text-align: center;

    color: #999;

    font-size: 9px;
}

.booking-note i {
    color: #55d52d;
    margin-right: 4px;
}

.booking-note span {
    margin: 0 7px;
    color: #ccc;
}


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

@media (max-width: 700px) {

    .booking-section {
        margin-top: -60px;
        padding-bottom: 60px;
    }

    .booking-card {
        width: 94%;
        padding: 20px 16px;
        border-radius: 19px;
    }

    .booking-top h2 {
        font-size: 22px;
    }

    .booking-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .location-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .swap-btn {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .trip-option {
        padding: 10px 7px;
    }

    .trip-option strong {
        font-size: 10px;
    }

    .trip-option small {
        font-size: 8px;
    }

    .booking-note {
        font-size: 8px;
    }
}

.distance-result {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 15px;

    border-radius: 10px;

    background: #eff9ec;
    border: 1px solid #d9f0d2;

    color: #555;

    font-size: 10px;
}

.distance-result > i {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #55d52d;
    color: #fff;

    font-size: 14px;
}

.distance-result span {
    display: flex;
    flex-direction: column;
}

.distance-result strong {
    color: #111;
    font-size: 13px;
    margin-top: 2px;
}
