.travel-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    cursor: grab;
}

.travel-hero:active {
    cursor: grabbing;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}


.slide-content {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 60px;
    z-index: 3;
    color: white;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}


.slide-heading {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.slide-details {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.offer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.price-tag {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.duration {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 9999
}

.btn-primary {
    background: linear-gradient(135deg, #68230e, #ac6550);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);

}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 15px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

.slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.nav-dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

.nav-dot.active {
    background: white;
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, #68230e, #ac6550);
    border-radius: 6px;
    animation: progress 6s linear infinite;
}

.progress-indicators {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.progress-item.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.progress-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-item.active .progress-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    min-width: 80px;
}

.floating-features {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .travel-hero {
        height: 100vh;
    }

    .slide-content {
        padding: 0 30px;
        max-width: 100%;
    }

    .slide-heading {
        margin-bottom: 12px;
    }

    .offer-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.95rem;
        text-align: center;
    }

    .progress-indicators {
        display: none;
    }

    .floating-features {
        top: 20px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .slider-navigation {
        bottom: 30px;
        gap: 10px;
    }

    .nav-dot {
        width: 40px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 0 20px;
    }

    .location-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .price-tag {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .duration {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .floating-features {
        top: 15px;
        right: 15px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}