/* Hero Carousel Block */
.hero {
    position: relative;
    height: 500px;
    color: #fff;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
}

.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: var(--fs-hero);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-green);
}

.hero p {
    margin-bottom: 2rem;
    color: #d1d5db;
}

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

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: clamp(180px, 20vw, 250px);
}

.stat-badge i {
    font-size: 1.5rem;
    color: var(--primary-green);
}
.stat-badge span {
    font-size: 1.5rem;
    color: var(--primary-green);
}
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.hero-dot.active {
    background: var(--primary-green);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .stat-badge { min-width: auto; width: 100%; }
    .hero-stats { flex-direction: column; }
}
