/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: height 0.3s ease;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% center;
    z-index: 0;
    transition: all 0.3s ease;
}

.hero-content {
    position: relative;
    top: -32%;
    /* Move text higher to match image */
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.1;
    color: var(--text-dark);
}

.title-black {
    color: #1a1a1a;
}

.title-red {
    color: var(--primary-color);
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 10px;
    letter-spacing: 0.5px;
    font-weight: 900;
}

.hero-highlight {
    color: var(--primary-color);
    display: inline-block;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-feature i {
    font-size: 24px;
    color: var(--primary-color);
}

.hero-feature span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 425px) {
    .hero-content {
        top: -25%;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
        font-weight: 900;
    }

    .hero-content {
        top: -30%;
    }

    .hero-features {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-feature {
        padding: 10px 20px;
    }

    .hero-feature span {
        font-size: 15px;
    }

    .hero-feature i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 4px;
    }
}