#discover {
    padding: 2rem 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}

.discover-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.discover-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.discover-headline {
    color: var(--brand-primary-alt);
}

.discover-text {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 2.5rem;
    font-weight: 400;

    @media (max-width: 992px) {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.discover-btn {
    background-color: var(--brand-primary-alt);
    border: none;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--white);
}

.discover-btn:hover {

    background-color: var(--black);
}

.discover-carousel-container {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.discover-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.discover-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center center;
    text-align: center;
    background: transparent;
}

.discover-card.active {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 3;
    opacity: 1;
}

.discover-card.next {
    transform: translate(10%, -50%) scale(0.9);
    z-index: 2;
    opacity: 0.8;
    filter: blur(1px);
}

.discover-card.prev {
    transform: translate(-110%, -50%) scale(0.9);
    z-index: 2;
    opacity: 0.8;
    filter: blur(1px);
}

@media (max-width: 991px) {
    .discover-headline {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;

    }

    .discover-carousel-container {
        height: 400px;
        margin-top: 0rem;
    }

    .discover-card {
        width: 220px;
        height: 320px;
    }

    .discover-card.next {
        transform: translate(5%, -50%) scale(0.85);
    }

    .discover-card.prev {
        transform: translate(-105%, -50%) scale(0.85);
    }
}

.discover-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 150px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
}

.discover-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.discover-card.active .discover-img-wrapper img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-primary);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discover-country {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary-alt);
}

@media (max-width: 767px) {
    .discover-carousel-container {
        height: 350px;
    }

    .discover-card {
        width: 180px;
        height: 260px;
    }

    .discover-card.next {
        transform: translate(20%, -50%) scale(0.85);
        opacity: 0.6;
    }

    .discover-card.prev {
        transform: translate(-120%, -50%) scale(0.85);
        opacity: 0.6;
    }

    .tour-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }

    .discover-country {
        font-size: 1.25rem;
    }
}