/* Hero Section */
.hero {
    position: relative;
    height: 65vh;
    min-height: 580px;
    background-color: #222;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/hero/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.hero-slider-btn.left {
    left: 40px;
}

.hero-slider-btn.right {
    right: 40px;
}

.hero-content {
    text-align: center;
    z-index: 5;
    padding: 0 20px;
    transform: translateY(-80px);
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: uppercase;
    display: block;
}

.hero h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    margin: 0 0 35px 0;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: -15px auto 35px;
    max-width: 1400px;
}

.hero-btn {
    background-color: #eaf6e5;
    color: #54b248;
    border: 1.5px solid #54b248;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: var(--font-size-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(84, 178, 72, 0.15);
}

.hero-btn:hover {
    background-color: #54b248;
    color: #ffffff;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    display: inline-block;
    margin-left: 2px;
    font-weight: 400;
    color: inherit;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-content {
        transform: translateY(-40px);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-slider-btn {
        display: none;
        /* Hide sliders on tablets for clean look */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
}