/* ============================================================================
   HERO BANNER CAROUSEL
============================================================================ */
.hero-banner-section {
    width: 100%;
    position: relative;
    background: #1e293b;
    overflow: hidden;
}

.hero-banner-carousel {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.hero-banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-banner-content {
    max-width: var(--max-width);
    width: 100%;
    padding: 0 16px 0 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.hero-banner-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.hero-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.hero-banner-description {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.hero-banner-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.hero-banner-cta:hover {
    background: var(--primary);
}

.hero-banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(30, 41, 59, 0.8);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
}

.hero-banner-nav:hover {
    background: rgba(30, 41, 59, 1);
}

.hero-banner-nav-prev {
    left: 20px;
}

.hero-banner-nav-next {
    right: 20px;
}

.hero-banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    align-items: center;
}

.hero-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-banner-dot.active {
    background: var(--primary);
    width: 32px;
    height: 12px;
    border-radius: 6px;
}

.hero-banner-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Hero Banner */
@media (max-width: 768px) {
    .hero-banner-carousel {
        min-height: 350px;
    }
    
    .hero-banner-slide {
        min-height: 350px;
    }
    
    .hero-banner-title {
        font-size: 32px;
    }
    
    .hero-banner-description {
        font-size: 16px;
    }
    
    .hero-banner-content {
        padding: 0 20px 0 80px;
    }
    
    .hero-banner-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-banner-nav-prev {
        left: 10px;
    }
    
    .hero-banner-nav-next {
        right: 10px;
    }
    
    .hero-banner-dots {
        bottom: 16px;
    }
}
