/* ============================================
   HERO SECTION - Minimal Custom CSS
   ============================================ */

.hero-section {
    padding: 0;
    background: transparent;
    min-height: auto;
    display: block;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

/* Hero Image Slider */
.hero-image-slider {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    position: relative;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.hero-slide-image {
    display: none !important;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    top: auto;
    left: auto;
    z-index: 1;
}

.hero-slide-image.active {
    display: block !important;
    opacity: 1;
    z-index: 2;
}

/* Slider Indicators */
.hero-slider-indicators {
    z-index: 10;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: var(--themeColor);
    box-shadow: 0 0 8px rgba(41, 172, 56, 0.6);
    width: 32px;
    border-radius: 6px;
}

/* Hide decorative shapes */
.hero-shape-1,
.hero-shape-2 {
    display: none;
}

.hero-bg-decoration {
    display: none;
}

.hero-main-image {
    display: none !important;
}