* {
    margin: 0px;
    padding: 0px;
}

/* imp css start */
.btn {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #000;
}

  
.text-primary {
    color: #0d6efd !important;
}

/* imp css end */


/* header start */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

.navbar {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background: #ffffff;
}

.navbar-nav .nav-link:hover {
    color: #0077b6;
    transform: scale(1.05);
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #ffffff;
    border: var(--bs-border-width) solid rgb(255 255 255 / 0%);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

/* header end  */


/* === car-banner start == */
.car-banner {
    margin-top: 65px;
}

.car-banner {
    background-image: url('../images/car_rentbanner.jpg');
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
}
.car-banner2 {
    margin-top: 65px;
}

.car-banner2 {
    background-image: url('../images/car_rentbanner2.jpg');
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
}

.finalcar-banner {
    background-image: url('../images/finalcar-banner.jpg');
    width: 100%;
    height: 550px;
    /*    background-size: cover;*/
    background-repeat: no-repeat;
}

.car-banner .search-box {
    margin-top: 10px;
    background-color: rgb(255 255 255 / 35%);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* === car-banner end === */

  

/* ===== why-choose-us-modern start ===== */
.why-choose-us-modern .feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}


@media (max-width: 767px) {
    .why-choose-us-modern .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===== why-choose-us-modern end ===== */


/* top_destination start */
.top_destination .card {
    display: grid;
    place-items: center;
    height: 350px;
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

    .top_destination .card > * {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

.top_destination .card__background {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}

.top_destination .card__content {
    /* --flow-space: 0.9375rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    height: 50%;
    padding: 15px;
    background: #000;
}

.top_destination .card__content--container {
    --flow-space: 1.25rem;
}

.top_destination .card__title {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
}


.top_destination .card__button {
    padding: 0.75em 1.6em;
    width: fit-content;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
    font-variant: small-caps;
    font-weight: bold;
    border-radius: 0.45em;
    border: none;
    background-color: var(--brand-color);
    font-family: var(--font-title);
    font-size: 1.125rem;
    color: var(--black);
}

@media (any-hover: hover) and (any-pointer: fine) {
    .top_destination .card__content {
        transform: translateY(62%);
        width: 100%;
        transition: transform 500ms ease-out;
        transition-delay: 500ms;
    }

    .top_destination .card__title::after {
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 1000ms ease-in, transform 500ms ease-out;
        transition-delay: 500ms;
        transform-origin: right;
    }

    .top_destination .card__background {
        transition: transform 500ms ease-in;
    }

    .top_destination .card__content--container > :not(.card__title),
    .card__button {
        opacity: 0;
        transition: transform 500ms ease-out, opacity 500ms ease-out;
    }

/*    .top_destination .card:hover,
    .card:focus-within {
        transform: scale(1.05);
        transition: transform 500ms ease-in;
    }*/

        .top_destination .card:hover .card__content,
        .card:focus-within .card__content {
            transform: translateY(0);
            transition: transform 500ms ease-in;
        }

    .top_destination .card:focus-within .card__content {
        transition-duration: 0ms;
    }

    .top_destination .card:hover .card__background,
    .card:focus-within .card__background {
        transform: scale(1.3);
    }

    .top_destination .card:hover .card__content--container > :not(.card__title),
    .card:hover .card__button,
    .card:focus-within .card__content--container > :not(.card__title),
    .card:focus-within .card__button {
        opacity: 1;
        transition: opacity 500ms ease-in;
    }

    .top_destination .card:hover .card__title::after,
    .card:focus-within .card__title::after {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left;
        transition: opacity 500ms ease-in, transform 500ms ease-in;
        transition-delay: 500ms;
    }
}

/* top_destination end */

/* ===== our_journey section start ==== */
.our_journey .icon-wrap {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .our_journey .icon-wrap:hover {
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
    }

.our_journey .img-box {
    height: 365px;
    transition: all 0.5s ease;
}

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

    .our_journey .img-box:hover img {
        transform: scale(1.08);
    }

@media (max-width: 767px) {
    .our_journey .img-box {
        height: 120px;
    }
}

/* ===== our_journey section end ==== */

/* ===== top_destination section end ==== */
.top_destination .hover-lift {
    transition: all 0.4s ease;
}

    .top_destination .hover-lift:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.top_destination .badge {
    font-size: 0.75rem;
    letter-spacing: 0.4px;
}

@media (max-width: 767px) {
    .top_destination .col-md-6 img {
        height: 120px !important;
    }
}

/* ===== top_destination section end ==== */


/* ===== faq-section section end ==== */
.faq-section .accordion-button {
    background: #fff;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

    .faq-section .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #007bff1a, #e9f3ff);
        color: #007bff;
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
    }

    .faq-section .accordion-button::after {
        filter: invert(41%) sepia(83%) saturate(361%) hue-rotate(181deg) brightness(95%) contrast(95%);
    }

.faq-section .accordion-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .faq-section .accordion-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

.faq-section .faq-image img {
    transition: transform 0.5s ease;
}

.faq-section .faq-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .faq-section .faq-image img {
        height: 250px !important;
    }
}

/* ===== faq-section section end ==== */




/* footer section start */
footer {
    background-color: whitesmoke;
    color: #000;
}

    footer ul {
        list-style: none;
        padding-left: 0px;
        line-height: 35px;
    }

    footer a {
        font-weight: 500; 
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            color: #0436a5;
        }

/* footer section end */


.contact-banner {
    background-image: url('../images/contact_banner.jpg');
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-banner {
    background-image: url('../images/about_banner.jpg');
    width: 100%;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}


.privacy-banner {
    background-image: url('../images/privacy-banner.jpg');
    width: 100%;
    height: 235px;
    background-size: cover;
    background-repeat: no-repeat;
}



/* ================= */
.mobile_call {
    background: linear-gradient(90deg, #0d6efd, #0d6efd);
    color: white;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1050;
}

.mobile-icon {
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    display: flex;
    background: #198754;
    animation: pulse 1.5s infinite;
}

.nav-phone {
    display: none;
}


/* Blink animation for number */
.blink-number {
    animation: blink 1s infinite;
    color: #fff;
    letter-spacing: 1px;
}

@keyframes blink {

    0%, 50%, 100% {
        color: #fff;
    }

    25%, 75% {
        color: #212529;
    }
}

/* Pulse effect for phone icon */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(25, 135, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}


@media (max-width:767px) {
    .mobile_call {
        display: block;
    }

    .nav-phone {
        display: block;
    }

    .contact-banner {
        background-image: url(../images/contact_banner.jpg);
        width: 100%;
        height: 200px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .about-banner {
        background-image: url(../images/about_banner.jpg);
        width: 100%;
        height: 200px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .privacy-banner {
        background-image: url(../images/privacy-banner.jpg);
        width: 100%;
        height: 180px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .car-banner {
        background-image: url(../images/car_rentbanner.jpg);
        width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .car-banner2 {
        background-image: url(../images/car_rentbanner2.jpg);
        width: 100%;
        height: 800px;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
/* ================= */


@media (max-width: 767px) {
    .card-logo ul {
        /*        flex-wrap: wrap !important;*/
        gap: 0 !important;
        display: flex !important;
        list-style: none !important;
        align-items: center !important;
    }

    .masta {
        width: 98px !important;
    }

    .mclia {
        width: 120px !important;
    }

    .mpcc {
        width: 110px !important;
    }

    .mdiscover {
        width: 70px !important;
    }

    .mmaster {
        width: 67px !important;
    }

    .mvisa {
        width: 49px !important;
    }

    .mamex {
        width: 45px !important;
    }

    .mdinner {
        width: 90px !important;
    }

    .mpcc {
        width: 110px !important;
    }
}



