/* Adventure */
.adventure-card {
        height: 320px;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        transform-style: preserve-3d;
        cursor: pointer;
        transition: 0.4s ease;
        background: #111;
        border: 1px solid rgba(255,255,255,0.08);
    }

    .adv-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.2);
        transition: 0.8s ease;
        opacity: 0.9;
    }

    .group:hover .adv-img {
        transform: scale(1.35) rotate(1.5deg);
        opacity: 1;
    }

    .adv-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
        z-index: 5;
        transition: 0.4s ease;
    }

    .group:hover .adv-overlay {
        background: linear-gradient(to top, rgba(255,0,0,0.35), rgba(0,0,0,0.15));
    }

    .adv-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 10;
        color: white;
    }

    .adv-content h3 {
        font-size: 20px;
        font-weight: 700;
        font-family: serif;
        margin-bottom: 6px;
    }

    .adv-content p {
        font-size: 13px;
        opacity: 0.85;
        max-width: 230px;
        line-height: 1.4;
    }

    /* hero Main */
    /* Desktop YouTube Background */
    .yt-desktop iframe {
        width: 120vw;
        height: 120vh;
        position: absolute;
        top: -10vh;      /* hides YouTube UI */
        left: -10vw;
        object-fit: cover;
        pointer-events: none;
    }

    /* Mobile YouTube Video */
    .yt-mobile iframe {
        width: 100%;
        height: 250px;  /* adjust mobile height */
        object-fit: cover;
        pointer-events: none;
    }

    /* Responsive Fix */
    @media (min-width: 768px) {
        .yt-mobile { display: none; }
    }
    @media (max-width: 767px) {
        .yt-desktop { display: none; }
    }

    /* expertiese - Service */
    .service-card {
        background: white;
        padding: 18px;
        border-radius: 18px;
        border: 1px solid #e6e6e6;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .service-card:hover {
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 16px 30px rgba(0,0,0,0.15);
    }

    .icon-box {
        width: 65px;
        height: 65px;
        border-radius: 16px;
        background: linear-gradient(135deg, #ff3d3d, #b30000);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
        padding: 10px;
        box-shadow: 0 8px 20px rgba(255,0,0,0.25);
    }

    .service-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #222;
        margin-bottom: 4px;
    }

    .service-card p {
        font-size: 12px;
        color: #666;
        line-height: 1.45;
    }

    /* Luxury Experience */

    .lux-card {
        height: 340px;
        cursor: pointer;
        position: relative;
        border-radius: 18px;
        transition: 0.4s ease;
    }

    .lux-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.08);
        transition: 0.7s ease;
    }

    .group:hover .lux-img {
        transform: scale(1.18);
    }

    .lux-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
        z-index: 5;
        opacity: 1;
        transition: 0.4s ease;
    }

    .group:hover .lux-overlay {
        background: linear-gradient(to top, rgba(255,0,0,0.4), rgba(0,0,0,0.1));
    }

    .lux-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 10;
        color: white;
    }

    .lux-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
        font-family: serif;
    }

    .lux-content p {
        font-size: 14px;
        font-weight: 400;
        opacity: 0.9;
        max-width: 240px;
        line-height: 1.4;
    }

    /* Security */
    /* Card Style */
    .trust-card {
        background: white;
        border-radius: 18px;
        padding: 24px;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        transition: 0.3s ease;
    }

    .trust-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.12);
        border-color: #ff3b3b;
    }

    /* TEXT */
    .trust-card h4 {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 6px;
    }

    .trust-card p {
        font-size: 13px;
        color: #555;
        line-height: 1.4;
    }

    /* SVG ICONS */
    .trust-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
        color: #ff3b3b;
        opacity: 0.9;
        transition: 0.3s;
    }

    /* Hover glow */
    .trust-card:hover .trust-icon {
        transform: scale(1.15);
        opacity: 1;
    }



    /* --- ANIMATIONS --- */

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
        100% { transform: translateY(0px); }
    }
    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes pulseSlow {
        0% { transform: scale(1); }
        50% { transform: scale(1.12); }
        100% { transform: scale(1); }
    }
    .animate-pulse-slow {
        animation: pulseSlow 2.6s ease-in-out infinite;
    }

    @keyframes tilt {
        0% { transform: rotate(0deg); }
        50% { transform: rotate(3deg); }
        100% { transform: rotate(0deg); }
    }
    .animate-tilt {
        animation: tilt 3.5s ease-in-out infinite;
    }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
        100% { transform: translateY(0px); }
    }
    .animate-float { animation: float 3s ease-in-out infinite; }

    @keyframes pulseSlow {
        0% { transform: scale(1); }
        50% { transform: scale(1.12); }
        100% { transform: scale(1); }
    }
    .animate-pulse-slow { animation: pulseSlow 2.5s ease-in-out infinite; }

    /* Why Chose */
    /* MAIN CARD */
.lux-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    cursor: pointer;
}

.lux-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.lux-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #ffe8e8, #ffffff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255,0,0,0.18);
    margin-bottom: 18px;
    transition: all .3s ease;
}

.lux-card:hover .lux-icon {
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(255,0,0,0.25);
}

/* TITLE + TEXT */
.lux-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.lux-text {
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.55rem;
}

/* REVEAL ON HOVER */
.lux-reveal {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all .35s ease;
}

.lux-card:hover .lux-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* testimonial */
/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 35px 25px 45px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    text-align: center;
    transition: all .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* PHOTO */
.t-photo {
    width: 90px;
    height: 90px;
    margin: auto;
    overflow: hidden;
    border-radius: 999px;
    border: 5px solid #ffffff;
    box-shadow: 0 0 18px rgba(255,0,0,0.18);
    transition: .3s ease;
}

.testimonial-card:hover .t-photo {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(255,0,0,0.3);
}

/* NAME */
.t-name {
    margin-top: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    color: #222;
}

/* STARS */
.t-stars {
    font-size: 1.1rem;
    color: #ffbb00;
    margin-top: 4px;
    letter-spacing: 2px;
}

/* MESSAGE */
.t-msg {
    margin-top: 15px;
    color: #555;
    font-size: .95rem;
    line-height: 1.6rem;
    padding: 0 4px;
}

/* RESPONSIVE SWIPER CONFIG */
.swiper-slide {
    display: flex;
    justify-content: center;
}