/* Banner Section */
.banner-section {
    padding: var(--space-xl) var(--container-padding);
    background-color: var(--bg-light);
}

.banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.banner-slider {
    display: flex;
    gap: var(--space-md);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.banner-slide {
    flex: 0 0 calc(33.333% - 11px);
    min-width: calc(33.333% - 11px);
    height: 320px;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.banner-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 70%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    border-radius: 0 0 var(--radius-lg) 0;
}

/* Banner Arrows */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--bg-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: all var(--transition-normal);
    z-index: 10;
    cursor: pointer;
}

.banner-arrow:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: -24px;
}

.banner-next {
    right: -24px;
}

/* Banner Indicators */
.banner-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border-input);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.indicator.active {
    width: 32px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-pink) 100%);
}

.indicator:hover {
    background-color: var(--primary-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .banner-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .banner-slide {
        flex: 0 0 100%;
        min-width: 100%;
        height: 260px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-arrow {
        display: none;
    }
}
