﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #201E1E;
    color: #fff;
    font-family: "Heebo", sans-serif;
}

.navbar {
    background: #000;
    padding: 18px 0;
}

    .navbar .nav-link {
        color: #fff;
        margin-right: 25px;
        font-weight: 500 !important;
        font-size: 18px;
    }

        .navbar .nav-link:hover {
            color: #E95440 !important;
        }

        .navbar .nav-link.active {
            color: #E95440 !important;
            font-weight: 700;
        }

.navbar-brand {
    color: #E95440;
    font-size: 20px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
    letter-spacing: 1.5px;
}

@media screen and (min-width:580px) {
    .navbar-brand {
        font-size: 40px;
    }
}

.navbar .btn-outline-light {
    padding: 12px 30px;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 0px 1px 4px 0px #00000040;
    background-color: #000000;
    font-weight: 400;
    font-size: 18px;
    color: white;
}

    .navbar .btn-outline-light:hover {
        color: white
    }

.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0)), url('../images/header.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-left: 60px;
    color: #fff;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 60px 10px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 400;
    line-height: 60px;
}

    .hero h1 span {
        color: #E95440;
    }

.hero p {
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0;
}

@media screen and (min-width:580px) {
    .hero h1 {
        font-size: 64px;
    }

    .hero p {
        font-size: 24px;
    }
}

@media screen and (min-width:992px) {
    .hero h1 {
        font-size: 96px;
        max-width: 50%;
        line-height: 120px;
    }

    .hero p {
        max-width: 65%;
    }
}

.hero .btn-main {
    background: #E95440;
    border-radius: 5px;
    padding: 16px 24px;
    border: 1px solid #E95440;
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    width: 234px;
    line-height: 24px;
}

.hero .btn-dark {
    padding: 20px 33px;
    background-color: #000000;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    border: 1px solid #fff;
}

.section-title {
    text-align: center;
    margin-top: 80px;
}

    .section-title h2 {
        font-family: "Figtree", sans-serif;
        font-size: 37px;
        font-weight: 400;
        line-height: 120px;
    }

        .section-title h2 span {
            color: #E95440;
        }

    .section-title p {
        font-family: "Figtree", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        color: #FFFFFF;
    }

@media screen and (min-width:580px) {
    .hero h1 {
        font-size: 64px;
    }

    .hero p {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 44px;
    }

    .section-title p {
        font-size: 20px;
        line-height: 37px;
    }
}

@media screen and (min-width:992px) {
    .hero h1 {
        font-size: 96px;
        max-width: 50%;
        line-height: 120px;
    }

    .hero p {
        max-width: 65%;
    }

    .section-title h2 {
        font-size: 64px;
    }

    .section-title p {
        font-size: 24px;
    }
}

.car-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px 40px;
    margin-bottom: 40px;
    text-decoration: none;
    min-height: 305px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

    .car-card h3 {
        font-family: "Plus Jakarta Sans", sans-serif;
        color: #000000;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: -3%;
    }

    .car-card img {
        width: 204px;
        transform: scaleX(-1);
        height: 105px;
        object-fit: cover;
        transition: all 0.5s ease-in-out;
    }

    .car-card:hover img {
        width: 220px;
    }

    .car-card .info {
        font-size: 14px;
        color: #626262;
        font-family: "Plus Jakarta Sans", sans-serif;
        margin-bottom: 15px;
        line-height: 150%;
        letter-spacing: -2%;
        font-weight: 700;
    }

.card-footer p {
    color: #626262;
}

    .card-footer p .icon {
        width: 24px;
        height: 24px;
    }

.swiper {
    padding-bottom: 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: 100%;
}

.main-swiper .swiper-button-next {
    position: absolute;
    top: 90%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: black;
}

    .main-swiper .swiper-button-next::after,
    .carSwiper .swiper-button-next::after,
    .carSwiper .swiper-button-prev::after {
        font-size: 20px;
        font-weight: 600;
    }

.booking-content {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:600px) {
    .booking-content {
        max-width: 80%;
        margin: auto;
    }
}

@media screen and (min-width:768px) {
    .booking-content {
        max-width: 70%;
        margin: auto;
    }
}

@media screen and (min-width:992px) {
    .booking-content {
        max-width: 60%;
        margin: auto;
    }
}

.tab-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: #4a4a4a;
    color: #fff;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

    .tab-btn:hover {
        background: #5a5a5a;
    }

    .tab-btn.active {
        background: #fff;
        color: #000;
    }

.booking-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        color: #fff;
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 400;
    }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-wrapper i {
        position: absolute;
        left: 18px;
        color: #888;
        font-size: 16px;
        z-index: 2;
    }

.form-control,
textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: none;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(232, 109, 95, 0.3);
    }

    .form-control::placeholder {
        color: #aaa;
    }



.btn-next {
    width: 100%;
    background: linear-gradient(135deg, #e86d5f 0%, #e84a3a 100%);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232, 109, 95, 0.3);
}

    .btn-next:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(232, 109, 95, 0.4);
    }

    .btn-next:active {
        transform: translateY(0);
    }

.return-row {
    display: flex;
}

.location-wrapper {
    position: relative;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.location-item {
    padding: 14px 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

    .location-item:last-child {
        border-bottom: none;
    }

    .location-item:hover {
        background: #f5f5f5;
        padding-left: 25px;
    }

    .location-item::before {
        content: '';
        width: 4px;
        height: 4px;
        background: #e86d5f;
        border-radius: 50%;
        margin-right: 12px;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .location-item:hover::before {
        opacity: 1;
    }

.flight-info-box {
    background: rgba(232, 109, 95, 0.15);
    border: 2px solid #e86d5f;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}


yframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flight-header {
    display: flex;
    align-items: center;
    color: #e86d5f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

    .flight-header i {
        margin-right: 10px;
        font-size: 18px;
    }

.flight-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.flight-item {
    display: flex;
    flex-direction: column;
}

    .flight-item label {
        color: #888;
        font-size: 12px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.flight-value {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.flatpickr-calendar {
    background: white;
    color: #2a2a2a;
    font-weight: 600;
}

.flatpickr-monthDropdown-months {
    background: #fff;
    color: #2a2a2a;
}

.flatpickr-months {
    background: #fff;
    color: #2a2a2a;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #e86d5f;
}

.flatpickr-day {
    color: #2a2a2a;
}

    .flatpickr-day.selected {
        background: #e86d5f;
    }

    .flatpickr-day:hover {
        background: #e86d5f;
    }

    .flatpickr-day.today {
        border-color: #e86d5f;
    }

@media (max-width: 768px) {
    .booking-content {
        padding: 30px 20px;
    }

    .tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 30px;
        min-width: 120px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-control {
        padding: 14px 18px 14px 45px;
        font-size: 14px;
    }

    .input-wrapper i {
        left: 15px;
        font-size: 14px;
    }

    .btn-next {
        font-size: 18px;
        padding: 16px;
    }

    .flight-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .booking-content {
        padding: 20px 15px;
    }

    .tab-buttons {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 20px;
        min-width: 100px;
        font-size: 13px;
    }

    .flight-info-box {
        padding: 15px;
    }

    .flight-header {
        font-size: 14px;
    }

    .flight-value {
        font-size: 16px;
    }
}

.booking {
    background-image: linear-gradient(#090A0BD4, #090A0BD4), url(../images/ride-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.how-it-works-section {
    background-color: #000;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.content-wrapper {
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 50px;
}

.steps-container {
    position: relative;
}



.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

    .step-item:last-child {
        margin-bottom: 0;
    }

.step-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    flex-shrink: 0;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 40px;
    bottom: 30px;
    width: 2px;
    height: 115px;
    border-radius: 4px;
    background-color: #ff4444;
}

.step-item:last-child::before {
    display: none;
}

.step-item:first-child .step-icon {
    border-color: #ff4444;
}


.step-content {
    flex: 1;
    padding-top: 0;
}

.step-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 30px;
    font-family: "DM Sans", sans-serif;
}

.step-description {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.car-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    transform: scaleX(-1);
    transition: all o.5s ease-in-out;
}

.background-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/how-it-works-bg.png');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .content-wrapper {
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .car-image-wrapper {
        padding: 20px;
    }

    .car-image {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-item {
        margin-bottom: 40px;
    }

    .car-image {
        max-width: 400px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 18px;
    }

    .car-image {
        max-width: 380px;
    }
}

.services .section-title {
    color: #E95440;
    font-weight: 500;
    font-size: 44px;
    line-height: 54px;
    font-family: "Figtree", sans-serif;
}

.services .heading p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    font-family: "Figtree", sans-serif;
}

.service-card .img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-card {
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

    .service-card .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-card .img .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 2;
        display: flex;
        align-items: end;
        justify-content: start;
        padding: 20px;
        opacity: 1;
        transition: all 0.5s ease-in-out;
    }

    .service-card:hover .overlay {
        transform: scale(1.05);
        background: rgba(0, 0, 0, 0.55);
    }

    .service-card .img .overlay h3 {
        color: #fff;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        margin: 0;
        z-index: 3;
        font-family: "DM Sans", sans-serif;
    }

.features {
    background-color: #000;
}

    .features .section-title {
        font-family: "Figtree", sans-serif;
        font-weight: 500;
        font-size: 44px;
        line-height: 54px;
    }

        .features .section-title span {
            color: #E95440;
        }

.feature .icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .feature .icon .icon-img {
        width: 40px;
    }

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    line-height: 30px;
}

.feature p {
    font-size: 16px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    line-height: 26px;
}

@media screen and (min-width:1200px) {
    .feature p {
        max-width: 80%;
    }
}

.numbers-section {
    background: #201E1E;
    position: relative;
    overflow: hidden;
    font-family: "DM Sans", sans-serif;
}

    .numbers-section::before {
        content: "";
        position: absolute;
        right: 20%;
        top: 0;
        width: 1658px;
        height: 100%;
        background: url("../images/count-bg.png");
        background-position: center;
        background-size: cover;
        opacity: 0.9;
        z-index: 0;
    }

    .numbers-section * {
        position: relative;
        z-index: 2;
    }

.counter {
    font-size: 42px;
    font-weight: bold;
}

.numbers-section .section-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    text-align: left;
    margin-top: 0px;
}

.counter-box h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.counter-box p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.about {

    font-family: "Figtree", sans-serif;
}

    .about * {
        position: relative;
        z-index: 2;
    }

/* Images Layout */
.about-images .big-img img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px  
}

.about-images .small-imgs img {
    height: 205px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .about-images .big-img img {
        height: 330px;
    }

    .about-images .small-imgs img {
        height: 160px;
    }
}

.about h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 50px;
    color: #181A1F;
}

.about p {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 44px;
}

.testimonials {
    font-family: "DM Sans", sans-serif;
}

    .testimonials h2 {
        text-align: center;
        font-weight: 500;
        font-size: 44px;
        line-height: 54px;
        font-family: "Figtree", sans-serif;
    }

        .testimonials h2 span {
            color: #E95440;
        }

    .testimonials .box .icon {
        width: 70px;
        height: 70px;
        background-color: #fff;
        border-radius: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .testimonials .box .icon img {
            width: 30px;
        }

    .testimonials .box p {
        font-size: 16px;
        line-height: 34px;
        font-weight: 600;
    }

    .testimonials .box .name p {
        font-weight: 600;
        font-size: 18px;
    }

.airport-header,
.sprinter-header,
.events-header {
    min-height: 90vh;
    background-image: linear-gradient(#00000033, #00000033), url(../images/airpoert-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
}

.sprinter-header {
    background-image: linear-gradient(#00000033, #00000033), url(../images/sprinter-header.jpg);
}

.events-header {
    background-image: linear-gradient(#00000033, #00000033), url(../images/service-1.jpg);
}

    .airport-header .hero-content h1,
    .sprinter-header h1,
    .events-header h1 {
        max-width: 100% !important;
        text-transform: capitalize;
    }

.about-airport {
    color: #181A1F;
    overflow: hidden;
}

    .about-airport .img {
        height: 480px;
        width: 452.3px;
        position: relative;
        z-index: 1;
    }

        .about-airport .img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .about-airport .img::after {
            content: "";
            position: absolute;
            width: 404.309px;
            height: 576px;
            background-color: #F6F6F6;
            left: 96px;
            z-index: -1;
            top: -10%;
        }

@media screen and (min-width:992px) {
    .about-airport .img::after {
        left: 66px;
    }
}

@media screen and (min-width:1200px) {
    .about-airport .img::after {
        left: 96px;
    }
}

.about-airport .right h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    margin-bottom: 15px;
    font-family: "DM Sans", sans-serif;
}

.about-airport .right p {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Figtree", sans-serif;
}

.feature-box {
    padding: 25px 40px;
    border-radius: 10px;
    border: 1px solid #E95440;
    height: 100%;
    color: #181A1F;
    font-family: "DM Sans", sans-serif;
}

    .feature-box .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #FDEDEC;
        position: relative;
        margin-bottom: 40px;
    }

        .feature-box .icon img {
            width: 52px;
            height: 52px;
            position: absolute;
            top: 50%;
            left: 0;
        }

    .feature-box h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 30px;
    }

    .feature-box p {
        font-size: 16px;
        font-weight: 500;
        line-height: 26px;
    }

.sprinter-card {
    border: 1px solid #E95440;
}

    .sprinter-card .img .overlay h3 {
        padding: 0px 55px 0px 15px;
    }

.contact {
    background-image: linear-gradient(#0000007A, #0000007A), url("../images/contactt-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.login {
    background: linear-gradient(0deg, rgba(61, 59, 64, 0.48), rgba(61, 59, 64, 0.48)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/auth.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.contact h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 500;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.contact .form-control,
.contact textarea,
.login .form-control,
.login textarea {
    padding: 16px 20px 16px 16px;
}

.contact-box {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0px 0px 40px 0px #0000000D;
}

.contact .img {
    height: 462px;
    border-radius: 4px;
}

    .contact .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

.contact-btn {
    background-color: #E95440;
    padding: 16px 24px;
    border-radius: 64px;
    border: 1px solid #E95440;
    width: 100%;
    font-family: "Figtree", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.services-header {
    background-color: #141414;
    position: relative;
    min-height: 195px;
}


@media screen and (min-width:992px) {
    .boxes {
        transform: translateY(190px);
    }

    .header-container {
        transform: translateY(100px);
    }
}

.service-box {
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    color: #141414;
    box-shadow: 0px 5px 20px 0px #0000001A;
    border-radius: 4px;
    max-width: 330px;
    height: 322px;
}

    .service-box h2 {
        font-size: 22px;
        font-weight: 500;
        font-family: "Montserrat", sans-serif;
        text-align: center;
    }

    .service-box p {
        color: #575757;
        font-weight: 400;
        font-size: 15px;
        text-align: center;
    }

.service-page p {
    color: #181A1F !important;
}

.login .contact-box {
    border-radius: 40px;
    box-shadow: 0px 4px 35px 0px #00000014;
    background-color: #000000;
}

@media screen and (min-width:768px) {
    .login .contact-box {
        width: 539px;
        margin: auto;
    }
}

.login .heading h2 {
    font-weight: 500;
    font-size: 32px;
}

.login .heading p {
    color: #8D8D8D;
    font-weight: 400;
    font-size: 16px;
}

    .login .heading p .sign-up {
        display: block;
        text-align: center !important;
        color: #E95440;
        text-decoration: none;
    }

.forget-pass a {
    color: #E95440;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: capitalize;
}

.login .contact-btn {
    border-radius: 10px;
}

.google-btn {
    min-width: 298px;
    min-height: 55px;
    border-radius: 9px;
    background-color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

    .google-btn span {
        color: #4A3D8B;
        font-size: 16px;
        font-weight: 400;
    }

.facebook-btn,
.apple-btn {
    min-width: 60px;
    min-height: 55px;
    background-color: #F6F6F6;
    border-radius: 9px;
    border: 1px solid #F6F6F6;
}

label {
    margin-bottom: 10px;
}

.car-section {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/header.jpg);
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .car-section .nav-pills .nav-link,
    .vehicle-service .nav-pills .nav-link {
        background: #7D7677;
        margin: 0 5px;
        padding: 12px 19px;
        border-radius: 58px;
        color: #fff;
        font-weight: 500;
        font-size: 18px;
        font-family: "Figtree", sans-serif;
        letter-spacing: -2%;
    }

        .car-section .nav-pills .nav-link.active,
        .vehicle-service .nav-pills .nav-link.active {
            background: #f33f40;
            color: #fff;
        }

.car-card {
    transition: transform .3s, box-shadow .3s;
}

    .car-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 1px 20px 0px #E95440;
        border: 2px solid #E95440;
    }

.car-section .car-card {
    min-width: 305px;
    padding: 20px;
}

.select-btn {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -2%;
    min-height: 44px;
    min-width: 116px;
    background-color: #181A1F;
    border: 1px solid #181A1F;
    border-radius: 4px;
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.new-price {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #181A1F;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 3px;
}

.old-price {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #626262;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}

.car-section h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 15px;
    line-height: 130%;
    font-family: "Figtree", sans-serif;
}

.car-section .heading p {
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -2%;
    margin-bottom: 60px;
}

@media screen and (min-width:992px) {
    .car-section .heading p {
        max-width: 60%;
        margin: auto;
    }
}

.additional-service,
.vehicle-service {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/header.jpg);
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.additional-service-box {
    box-shadow: 0px 1px 6px 0px #8F8787;
    background-color: #000;
    min-height: 501px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

@media screen and (min-width:768px) {

    .additional-service-box,
    .find-vehicle-box {
        width: 525px;
        margin: auto;
    }
}

.choice-box.active {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #181A1F;
    padding: 10px 20px;
    border-radius: 5px;
}

.choice-box {
    border: 1px solid #FFFFFF;
    color: white;
    margin-bottom: 40px;
    padding: 10px 20px;
    border-radius: 5px;
}

    .choice-box .counter {
        font-size: 20px;
    }

.service-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

    .service-option .service-check {
        position: absolute;
        opacity: 0;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.custom-circle.active {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: .5px solid #8F8787;
    display: inline-block;
    transition: .2s;
}

.custom-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: .5px solid #fff;
    background-color: #fff;
    display: inline-block;
    transition: .2s;
}

.service-check:checked + .custom-circle {
    background-color: #fff;
}

    .service-check:checked + .custom-circle::after {
        content: "";
        width: 8px;
        height: 8px;
        background: #8F8787;
        border-radius: 50%;
        position: absolute;
        left: 9px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

.option-name,
.price-per-one {
    font-weight: 600;
    font-size: 14px;
    font-family: "Figtree", sans-serif;
}

@media screen and (min-width:450px) {
    .option-name,
    .price-per-one {
        font-size: 20px;
    }
}

.additional-service-box .counter {
    box-shadow: 0px 1px 4px 0px #00000040;
    padding: 9px 17px;
    border-radius: 5px;
    border: 1px solid #E5E5E5;
}

    .additional-service-box .counter button {
        padding: 2px !important;
        background-color: transparent;
        border: none;
        font-size: 18px;
    }

    .additional-service-box .counter .minus {
        color: #D8D5D5;
    }

    .additional-service-box .counter .plus {
        color: #181A1F;
    }

    .additional-service-box .counter .count {
        font-weight: 400;
        font-size: 16px;
        font-family: "Figtree", sans-serif;
    }

.choice-box .counter {
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}

.choice-box.active .counter {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFFFFF;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .close-btn i {
        color: #000;
        font-size: 14px;
    }

.btn-danger {
    padding: 16px 24px;
    min-width: 234px;
    border-radius: 64px;
    background-color: #E95440;
    border: 1px solid #E95440;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.5s ease-in-out;
}

    .btn-danger:hover {
        background-color: #E95440;
        border: 1px solid #E95440;
        transform: translateY(-10px);
    }

.additional-service h2 {
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.find-vehicle-box {
    min-height: 368px;
    box-shadow: 0px 1px 6px 0px #8F8787;
    background-color: #000;
    border-radius: 10px;
    padding: 20px 40px;
}

    .find-vehicle-box h2 {
        color: #E95440;
        font-weight: 600;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        letter-spacing: -2%;
        line-height: 150%;
    }

    .find-vehicle-box .kind {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: -2%;
        vertical-align: middle;
        color: #8F8787;
    }

    .find-vehicle-box .road {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: -2%;
        vertical-align: middle;
    }

    .find-vehicle-box .from,
    .find-vehicle-box .to,
    .find-vehicle-box .text {
        color: #8F8787;
    }

    .find-vehicle-box .airport-name,
    .find-vehicle-box .destination,
    .find-vehicle-box .number {
        color: #fff;
    }

.collection h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: white;
}

.collection .heading-p {
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #E5E5E5;
}

.collection .btn-next-collection,
.promo-section .btn-next-collection {
    background-color: #E95440;
    border: 1px solid #E95440;
    padding: 16px 24px;
    border-radius: 64px;
    min-width: 234px;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

    .collection .btn-next-collection:hover,
    .btn-pay:hover,
    .promo-section .btn-next-collection:hover {
        background-color: #000;
        border-color: #fff;
    }

.btn-pay {
    background-color: #E95440;
    border: 1px solid #E95440;
    width: 100%;
    margin: 20px auto 0;
    min-height: 56px;
    text-align: center;
    border-radius: 64px;
    padding: 16px 24px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

@media screen and (min-width:500px) {
    .btn-pay {
        min-width: 391px;
    }
}

.btn-pay i {
    margin-top: 3px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.btn-pay:hover i {
    opacity: 1;
}

/* Full page dimmed background */
.payment-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 6px 0px #8F8787;
    background-color: #000;
    border-radius: 20px;
    min-height: 597px;
    text-align: center;
    padding: 10px
}

@media screen and (min-width:992px) {
    .payment-wrapper {
        width: 630px;
        margin: auto;
    }
}

.payment-wrapper .form-control,
.promo-section .form-control {
    padding: 16px 90px 16px 20px;
}

.payment-box .title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

label {
    text-align: left;
    display: block;
    margin-bottom: 18px !important;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

.input-icon {
    position: relative;
}

    .input-icon .cards-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        width: 80px;
        transform: translateY(-50%);
    }

.confirm-btn {
    width: 100%;
    height: 55px;
    background: linear-gradient(90deg, #ff5a3c, #ff6640);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .confirm-btn:hover {
        opacity: .9;
    }

.payment-wrapper .form-control {
    color: #A5ACB8;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
}

.payment-wrapper h2 {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
}

.custom-popup {
    padding: 40px 30px !important;
    border-radius: 12px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.swal2-title {
    font-family: "Figtree", sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 140% !important;
    text-align: center !important;
    color: #000 !important;
}

@media screen and (min-width:600px) {
    .swal2-title {
        font-size: 40px !important;
    }
}

div:where(.swal2-icon) {
    border: none !important;
}

.custom-popup {
    width: 100%;
    min-height: 100%;
}

@media screen and (min-width:992px) {
    .custom-popup {
        min-width: 905px;
        min-height: 437px;
    }
}

.carSwiper .swiper-slide {
    height: 300px;
    width: 100%;
}

    .carSwiper .swiper-slide img {
        height: 100%;
    }

.carSwiper .swiper-button-next {
    position: absolute;
    left: 84%;
    background-color: #FFFFFF;
    color: black;
}

.carSwiper .swiper-button-prev {
    position: absolute;
    background-color: #FFFFFF;
    color: black;
}

@media screen and (min-width:992px) {
    .carSwiper .swiper-button-prev {
        left: 10%;
    }
}

.details {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.car-title {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 150%;
    letter-spacing: -3%;
    vertical-align: middle;
}

.car-subtitle {
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -3%;
    vertical-align: middle;
    color: #E5E5E5;
}

.car-info {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #E5E5E5;
}

.car-desc {
    color: #E5E5E5;
    font-family: "Figtree", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.car-detail .price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.car-detail .old-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: line-through;
}



.car-detail .details-select-btn {
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0%;
    padding: 16px 24px;
    min-height: 56px;
    background-color: #E95440;
    color: white;
    border-radius: 64px;
    border: 1px solid #E95440;
}

.custom-nav {
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #333;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

    .custom-nav::after {
        font-size: 14px !important;
    }

/* Pagination dots */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #E95440 !important;
    opacity: 1;
}

.car-detail .collection h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #E95440
}

.car-detail .collection .heading-p {
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -2%;
    vertical-align: middle;
}

.app-section {
    background-color: #E95440;
    position: relative;
    overflow: hidden;
    min-height: 69vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .app-section .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px !important;
    }

    .app-section::after {
        content: "";
        background-image: url(../images/phones.png);
        position: absolute;
        top: 0;
        bottom: 0;
        right: -25%;
        width: 1170px;
        background-repeat: no-repeat;
        display: none;
    }

@media screen and (min-width:1200px) {
    .app-section::after {
        content: "";
        background-image: url(../images/phones.png);
        position: absolute;
        top: 0;
        bottom: 0;
        right: -25%;
        width: 1170px;
        background-repeat: no-repeat;
        display: block;
    }
}

.app-section h2 {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
}

    .app-section h2 span {
        color: #000000;
    }

.app-section p {
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.app-section button {
    background-color: #000;
    border: 1px solid #fff;
    border-radius: 12px;
    min-width: 225.6px;
    min-height: 69px;
    color: white;
}

@media screen and (min-width:992px) {
    .app-section p {
        max-width: 460px;
    }
}

.line {
    position: relative;
}

    .line::after {
        content: "";
        position: absolute;
        height: 40px;
        width: 1px;
        top: -21px;
        background-color: #E5E5E5;
        opacity: 20%;
    }


.footer {
    background: #000;
    padding: 50px 50px 20px;
    font-size: 14px;
    text-align: left;
}

@media screen and (min-width:1200px) {
    .footer {
        padding: 50px 250px 20px;
    }
}

.footer h4 {
    color: #E95440;
    font-weight: 600;
}

.footer h6 {
    font-family: DM Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF8C;
    margin-bottom: 20px;
}

.footer p {
    font-family: DM Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 8px;
    }

        .footer ul li a {
            font-family: DM Sans;
            font-weight: 500;
            font-size: 15px;
            line-height: 41px;
            letter-spacing: 0%;
            vertical-align: middle;
            color: #fff;
            text-decoration: none;
        }

            .footer ul li a:hover {
                color: #E95440;
            }

.footer-top {
    margin-bottom: 20px;
}

.footer-phone i {
    margin-right: 8px;
    color: #fff;
}

.footer-phone span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

.footer-social span {
    font-family: DM Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFCFC;
    margin-right: 30px;
}

.footer-social a {
    color: #fffcfc;
    margin-right: 25px;
    font-size: 14px;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: #E95440;
    }

.footer-divider {
    border-top: 1px solid #FFFFFF24;
    margin: 30px 0;
}

.footer-bottom {
    font-family: DM Sans;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer-links a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

    .footer-links a:hover {
        color: #E95440;
    }

@media (max-width: 768px) {
    .footer-top {
        gap: 15px;
    }

    .footer-bottom {
        gap: 10px;
        text-align: center;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    text-decoration: none;
}

    .whatsapp-btn:hover {
        background-color: #1ebe5d;
        transform: scale(1.08);
        color: #fff;
    }

.offers-card .car-card {
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background-color: #E95440;
    color: #fff;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
}

.offer-type {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    width: 100px;
}

.discount-info {
    background: #E95440;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.discount-percentage {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.discount-label {
    font-size: 14px;
    opacity: 0.9;
}
@media(max-width :768px) {
    .vehicle-item {
        margin: 20px !important;
    }
    .MQ-View {
        padding: 50px;
    }
    #return-question-row {
        margin-top: 7px;
    }
    .about-airport .img::after {
        width: 350px;
        height: 350px;
    }
    .about-airport .img img {
        width: 350px;
        height: 350px;
    }
    .about-airport .right h2{
        font-size:30px;
    }
    .about-airport{
        margin:0;
        padding:0 !important;
    }
    .about-airport .right p {
        font-size: 18px;
    }
    .about-airport .img {
        height: 350px;
    }
    .hero h1 {
        font-size: 35px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero-content {
        gap: 5px;
    }

    .form-group {
        margin: 0px;
    }

        .form-group label {
            margin: 5px;
        }

    .box {
        padding: 1rem 3rem !important;
    }

    .app-section {
        min-height: max-content;
    }

        .app-section h2 {
            font-size: 30px;
        }

    .col-md-6 {
        margin: 5px 0 0 0;
    }

    .hero {
        padding-left: 5%;
    }

        .hero .btn-main {
            width: 175px;
        }

    .how-it-works-section .section-title {
        margin: 20px 5px;
    }

    .features .section-title {
        font-size: 28px;
        line-height: 35px;
        margin: 20px;
    }

    .numbers-section .section-title {
        text-align: center;
        line-height: 33px;
        font-size: 30px;
    }

    .testimonials h2 {
        font-size: 27px;
    }

    .mt-5 {
        margin-top: 1rem !important;
    }

    .car-section h2 {
        font-size: 30px;
    }
    .car-section .nav-pills .nav-link, .vehicle-service .nav-pills .nav-link
    {
        font-size: 15px;
    }
    .about p {
        font-size: 16px;
        line-height: 30px;
    }
    .about h2 {
        font-size: 30px;
    }
    .car-detail .collection h2 {
        line-height: 5rem;
    }

}
.vehicle-selection-page, .services-selection-page, .payment-page-container {
    padding-top: 0 !important;
}
.text-muted{
    color:#FFF !important;
}
@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-right: 14px;
    }
    .navbar> .container, .navbar> .container-fluid, .navbar> .container-lg, .navbar> .container-md, .navbar> .container-sm, .navbar> .container-xl, .navbar> .container-xxl{
        align-items:end;
    }
    
}
.tab-btn {
    text-wrap: nowrap;
    margin: 0;
    padding:20px 0;
}