.hero-banner-section {
    padding: 2rem 0;
    overflow: hidden;
}

/* Container */
.hero-banner-section .hero-banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Dots Pagination */
.hero-banner-section .hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.625rem;
    z-index: 10;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    box-shadow: var(--shadow-default);
}

.hero-banner-section .hero-dots .dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: var(--border);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--td-fast) ease;
}

.hero-banner-section .hero-dots .dot:hover {
    background: var(--secondary-text);
    transform: scale(1.2);
}

.hero-banner-section .hero-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 100px;
}

/* Slider */
.hero-banner-section .hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--depth);
}

.hero-banner-section .hero-track {
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Slide */
.hero-banner-section .hero-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.hero-banner-section .hero-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hero-banner-section .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 21 / 9;
    transition: transform var(--td-slow) ease;
}

.hero-banner-section .hero-link:hover .hero-image {
    transform: scale(1.02);
}

/* Placeholder */
.hero-banner-section .hero-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--secondary-text);
    background: var(--depth);
}

.hero-banner-section .hero-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.3;
}

.hero-banner-section .hero-placeholder p {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
}

/* Navigation Arrows */
.hero-banner-section .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all var(--td-fast) ease;
    z-index: 10;
    box-shadow: var(--shadow-default);
}

.hero-banner-section .hero-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-float-1);
}

.hero-banner-section .hero-arrow:active {
    transform: translateY(-50%) scale(1);
}

.hero-banner-section .hero-arrow.prev {
    left: 1.5rem;
}

.hero-banner-section .hero-arrow.next {
    right: 1.5rem;
}

.hero-banner-section .hero-arrow svg {
    display: block;
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
    .hero-banner-section {
        padding: 1.5rem 0;
    }

    .hero-banner-section .hero-slider {
        border-radius: 12px;
    }

    .hero-banner-section .hero-image {
        aspect-ratio: 16 / 9;
    }

    .hero-banner-section .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-banner-section .hero-arrow.prev {
        left: 1rem;
    }

    .hero-banner-section .hero-arrow.next {
        right: 1rem;
    }

    .hero-banner-section .hero-dots {
        bottom: 1rem;
        padding: 0.5rem 0.875rem;
    }
}

@media only screen and (max-width: 768px) {
    .hero-banner-section {
        padding: 1rem 0;
    }

    .hero-banner-section .hero-slider {
        border-radius: 10px;
    }

    .hero-banner-section .hero-image {
        aspect-ratio: 4 / 3;
    }

    .hero-banner-section .hero-placeholder {
        min-height: 300px;
    }

    /* Hide arrows on mobile - swipe is enough */
    .hero-banner-section .hero-arrow {
        display: none;
    }

    .hero-banner-section .hero-dots {
        bottom: 0.75rem;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-banner-section .hero-dots .dot {
        width: 8px;
        height: 8px;
    }

    .hero-banner-section .hero-dots .dot.active {
        width: 24px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-banner-section .hero-slider {
        border-radius: 8px;
    }

    .hero-banner-section .hero-image {
        aspect-ratio: 1 / 1;
    }

    .hero-banner-section .hero-placeholder {
        min-height: 250px;
    }

    .hero-banner-section .hero-placeholder svg {
        width: 60px;
        height: 60px;
    }

    .hero-banner-section .hero-placeholder p {
        font-size: var(--font-size-base);
    }

    /* Arrows already hidden by parent media query */

    .hero-banner-section .hero-dots {
        bottom: 0.5rem;
        gap: 0.375rem;
        padding: 0.375rem 0.625rem;
    }

    .hero-banner-section .hero-dots .dot {
        width: 7px;
        height: 7px;
    }

    .hero-banner-section .hero-dots .dot.active {
        width: 20px;
    }
}

/* Animation for smooth transitions */
@media (prefers-reduced-motion: reduce) {

    .hero-banner-section .hero-track,
    .hero-banner-section .hero-slide,
    .hero-banner-section .hero-image,
    .hero-banner-section .hero-arrow,
    .hero-banner-section .hero-dots .dot {
        transition: none;
    }
}