:root {
    --primary-pink: #E40173;
    --primary-pink-hover: #e40173e6;
    --light-pink-back: #FCE5F0;
    --primary-blue: #11A7D2;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-gray: #212529bf;
    --dark-background: #1F242E;
    --gray-background: #F8F8F9;
    --white-back: #ffffff;

    --primary: #ec008c;
    --text: #1f242e;
    --muted: #6b7280;
    --border: #e5e7eb;
}


.hero {
    height: 70vh;
}

.hero video {
    object-fit: cover;
    z-index: -2;
}
.cneNwX {
    background: none;
    color: #fff;
}
.hero .bg-dark {
    z-index: -1;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

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

.hero-blur-btn {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #ffffff38;
    background: rgb(255 255 255 / 12%) !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}




/* Wrapper Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.ts-input-wrapper {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0px 18px;
    display: flex;
    align-items: center;
    height: 60px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ts-input-wrapper:hover {
    border-color: #ced4da;
}

.ts-input-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.ts-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ts-label {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.2;
}

.selected-text {
    font-size: 15px;
    color: #333333;
}

.ts-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* --- THE DROPDOWN OPTIONS BOX (Same as Image) --- */
.custom-options {
    position: absolute;
    width: 50%;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Show Dropdown on Active */
.custom-select-wrapper.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-wrapper.active .ts-arrow {
    transform: rotate(180deg);
}

.custom-options li {
    padding: 12px 20px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-options li:hover {
    background-color: #f8f9fa;
}

.custom-options li.active {
    background-color: #f0f0f0;
    font-weight: 600;
}

/* --- Search Button --- */
.ts-btn-search {
    background-color: #E40173;
    color: #fff;
    border: none;
    border-radius: 12px;
    width: 100%;
    height: 60px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.ts-btn-search:hover {
    background-color: #c20162;
}
@media (max-width: 768px) {

    .custom-options{
        width: 100%;
    }

}
@media (max-width: 991px) {
    .ts-btn-search{
        height: 50px;
    }

}










/* Countries css start */
/* .destination-card {
    display: block;
    text-decoration: none;
}

.destination-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
} */
/* Countries css End */


.destination-card {
    display: block;
    text-decoration: none;
}

.destination-img {
    height: 200px;
    object-fit: cover;
    transition: transform .6s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
}

@media (max-width: 768px) {

    .tab-content.row {
        display: block;
    }

    .tab-content .slick-slide {
        padding-right: 6px;
    }

    .tab-content .slick-track {
        margin-left: 0;
    }

    .destination-img {
        height: 185px;
    }

    .theme-item {
        padding-right: 12px;
    }

}

@media (max-width: 500px) {
    .destination-img {
        height: 160px;
    }
}

@media (min-width:768px) {
    .theme-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}






.countries-box:hover {
    background: #fff;
}


.departure-item {
    transition: background .2s ease;
}

.departure-item:hover {
    background: #f0f2f480;
}

.departure-item:hover h6 {
    color: var(--primary-pink);
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.departure-item:hover img {
    transform: scale(1.1);
}

.quiz-box img {
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, .4));
}



.group-trips {
    background: #F8F8F9;
}

.group-trips .group-trips-image {
    border-radius: 12px;
    overflow: hidden;
}

.group-trips .group-trips-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .4s ease;
}

.group-trips .group-trips-image:hover img {
    transform: scale(1.05);
}

.group-trips .group-trips-btn {
    background: var(--primary-pink);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.group-trips .group-trips-btn:hover {
    background: #d10063;
    color: #fff;
}

.btn-outline-secondary:hover {
    background-color: #212529 !important;
    border-color: #212529 !important;
    box-shadow: none !important;
}

.groepsreis-text h2{
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.groepsreis-text p{
    color: #6c757d; 
    margin-bottom: 1rem;
}
.back-btn-main{
    margin: -60px 0 0 55px;
}
.red-btn{
    font-weight: 600;
    font-size: 14px;
    color: #FFF !important;
    background: #FF104C;
    padding: 8px 15px !important;
    border-radius: 8px;
    text-transform: none !important;
    border: none;
}

@media (max-width: 991px) {
    .raw-html-embed{
        height: 470px !important;
    }
}
@media (max-width: 480px) {
    .cus-btn-mobile{
        flex-direction: column-reverse;
        align-items: start !important;
        gap: 0rem !important;
    }

}
@media (max-width: 575px) {
    .back-btn-main{
        margin: -60px 0 0 10px;
    }

}

@media (max-width: 575px) {
    .countries-box .location-title , .travel-time{
        font-size: 13px;
        line-height: 18px;
    }

}


/* Css for location open/close toggle */
/* .hidden-location {
    display: none !important;
} */