.search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #a3adbb;
    padding: 10px 15px;
    border-radius: 16px;
    gap: 10px;
    width: 60%;
    /* take only 60% width */
    margin-left: 22%;
    margin-top: 2%;
    margin-bottom: 8%;
}


.toggle-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.toggle-btn.active {
    background: #e06436;
    color: white;
}

.search-input {
    flex: 1;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background: #e06436;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat h2 {
    font-size: 56px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.stat h2:hover {
    transform: scale(1.15);
    color: #1a73e8;
    text-shadow: 0px 4px 15px rgba(26, 115, 232, 0.4);
}

.stat p {
    font-size: 18px;
    font-weight: 500;
    color: #6c7a89;
    letter-spacing: 0.6px;
    transition: color 0.3s ease;
}

.stat p:hover {
    color: #1a73e8;
}

.service-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 43px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-item i {
    font-size: 20px;
    color: #e06436;
    /* Orange */
    margin-bottom: 5px;
}

.service-item span {
    font-weight: bold;
    font-size: 14px;
}

.destination-card-items .destination-content .price .theme-btn.style-2::before {
    background-color: #e06436;
}

.destination-card-items .destination-content .price .theme-btn.style-2 {
    border-radius: 100px;
    background: rgba(2, 165, 206, 0.1);
    color: #e06436;
    padding: 10px 20px;
    min-width: 140px;
}

.destination-card-items .destination-content .info {
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px dashed #e06436;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


.vehicle-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #edf1f9;
    border-radius: 18px;
    padding: 6px 12px;
    width: fit-content;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #edf1f9;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    color: #3b5998;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vehicle-item:hover {
    background-color: #d4e0f0;
}

.vehicle-item i {
    font-size: 16px;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #edf1f9c2;
    border: none;
    border-radius: 9px;
    padding: 3px 18px;
    color: #3b5998;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.destination-card-items .destination-image .heart-icon {
    position: absolute;
    right: 190px;
    top: 20px;
    text-align: center;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;

}

.destination-card-items .destination-image .heart-icon {
    background: none;
}

.footer-section {
    position: relative;
    background-image: url(assets/img/spitibike2.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    z-index: 1;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* covers entire footer */
    background: rgba(0, 0, 0, 0.5);
    /* black overlay with 50% opacity */
    z-index: -1;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 20px;
}


.title-animate {
    text-align: center;
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1.5s ease forwards;
    margin: 16px 0px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 50px 50px;
}

.stat h2:hover {
    transform: scale(1.15);
    color: #e06436;
    text-shadow: 0px 4px 15px rgba(26, 115, 232, 0.4);
}

.counter {
    font-size: 30px !important;
    font-weight: 700;
    color: #3a5570;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-left: 6px;
}

@media screen and (max-width: 992px) {
    .section-padding {
        padding: 49px 20px;
    }

    .service-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 37px;
        padding: 10px 8px;
        flex-wrap: wrap;
    }

    .theme-btn {
        padding: 20px 2px;
        font-size: 14px;
    }

    .feature-wrapper .feature-image img {
        width: 100%;
        height: 500px;
        margin-top: 20px;
    }

    .section-title {
        text-align: center;
    }

    .deals-offer-section.section-padding.fix.bg-cover {

        background-image: url(assets/img/frame.jpg);
        background-position-x: -3px;
    }

    .deals-offer-wrapper .price-items {
        padding: 0 21px !important;
        margin-bottom: 54px;
    }

    .search-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #a3adbb;
        padding: 10px 15px;
        border-radius: 16px;
        gap: 4px;
        width: 100%;
        margin-top: 2%;
        margin-bottom: 8%;
        margin-left: 0px;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .toggle-btn,
    .search-input,
    .search-btn {
        width: 100%;
        text-align: center;
    }
}

.travel-feature-section.section-padding.fix {
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen hero */
    overflow: hidden;
}

.hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Keeps correct ratio, fills area */
    z-index: -1;
}

.hero-1 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(11, 13, 17, 0.6) 0%, rgb(11 13 17 / 51%) 30%, #0B0D11 100%) !important;
}

.sub-title {
    /* font-family: "Great Vibes", cursive!important; */
    text-align: center;
    color: white;
    letter-spacing: 6px;
    font-weight: 600;
}

.feature-card-items .icon {
    width: 82px;
    height: 82px;
    border-radius: 50px;
    line-height: 82px;
    text-align: center;
    background-color: rgb(224 100 54) !important;
    margin: 0 auto;
    margin-bottom: 20px;
    color: white;
}

.stat h2 {
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 10px;
}

.nh1 {
    margin-top: 100px;
    margin-bottom: 100px;
}

section.testimonial-section.section-padding.fix.section-bg {
    background-color: #e06436;
}

.testimonial-section {
    position: relative;
    background-color: #e06436;
}

.testimonial-wrapper .testimonial-card-items {
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid #ebebeb !important;
    margin-top: 30px;
    background-color: white;
}

.testimonial-wrapper .array-button .array-nexts:hover {
    color: #ffffff !important;
}

.testimonial-wrapper .array-button .array-nexts {
    color: #ffffff !important;
    transition: all 0.4s ease-in-out;
}

.theme-btn:hover {
    color: #ffffff !important;
    box-shadow: none;
}


.client-image img {
    width: 100%;
    max-width: 75px;
    border-radius: 40px;
    height: 67px;
    object-fit: cover;
}