/* ===== UNIQUE HERO SLIDER STYLES ===== */
.unique-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.unique-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.unique-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.unique-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.unique-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

.unique-slide.active .unique-slide-bg {
    transform: scale(1);
}

.unique-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.unique-slide-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    text-align: left;
}

.unique-slide-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.unique-slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unique-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin: 0 0 30px 0;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.4;
}

.unique-price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.unique-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.unique-price-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

.unique-discount-badge {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
    animation: discountGlow 1.5s infinite alternate;
}

@keyframes discountGlow {
    0% { box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3); }
    100% { box-shadow: 0 3px 20px rgba(255, 71, 87, 0.5); }
}

.unique-slide-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unique-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.unique-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.unique-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.unique-cta-btn:hover::before {
    left: 100%;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.unique-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== NAVIGATION CONTROLS ===== */
.unique-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.unique-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.unique-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-icon {
    line-height: 1;
}

/* ===== DOTS INDICATOR ===== */
.unique-dots {
    display: flex;
    gap: 12px;
}

.unique-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.unique-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.unique-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ===== PROGRESS BAR ===== */
.unique-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.unique-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .unique-hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .unique-slide-content {
        padding: 0 15px;
        text-align: center;
        align-items: center;
    }

    .unique-slide-title {
        font-size: 2.5rem;
    }

    .unique-slide-subtitle {
        font-size: 1rem;
    }

    .unique-price-display {
        justify-content: center;
    }

    .unique-slide-features {
        justify-content: center;
        gap: 15px;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .unique-slider-nav {
        bottom: 20px;
        gap: 20px;
    }

    .unique-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .unique-hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .unique-slide-title {
        font-size: 2rem;
    }

    .unique-price-amount {
        font-size: 2rem;
    }

    .unique-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
