.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 560px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.15), transparent 70%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    z-index: 2;
    animation: slideUp 0.8s var(--ease-out-expo);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.375rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.hero-image img {
    max-height: 450px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.125rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    width: 40px;
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .hero-image {
        right: 4%;
    }
    
    .hero-image img {
        max-height: 380px;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: 480px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .hero-image {
        right: 2%;
    }
    
    .hero-image img {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 440px;
    }
    
    .hero-slide {
        padding: 2.5rem 2rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-controls {
        bottom: 1.5rem;
        gap: 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 380px;
    }
    
    .hero-slide {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.875rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
