/* ================= HOME HERO - STRONG FIX ================= */
.home-hero {
    background: linear-gradient(135deg, var(--mecri-blue) 0%, var(--mecri-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    
    /* Strong spacing fix */
    padding-top: 200px !important;
    padding-bottom: 110px;
    
    border-top: 8px solid var(--mecri-accent);
    box-shadow: 0 8px 30px rgba(0, 168, 107, 0.35);
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

/* Text */
.home-hero h1 {
    font-weight: 800;
    line-height: 1.1;
    font-size: 2.8rem;
}

/* Buttons - Fixed Colors */
.home-hero .btn-light {
    background-color: #ffffff !important;
    color: var(--mecri-blue) !important;
    border: none !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.home-hero .btn-light:hover {
    background-color: #f8f9fa !important;
    color: var(--mecri-blue) !important;
    transform: translateY(-3px);
}

.home-hero .btn-outline-light {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
    font-weight: 600;
}

.home-hero .btn-outline-light:hover {
    background-color: #ffffff !important;
    color: var(--mecri-blue) !important;
}

/* Image */
.hero-image {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .home-hero {
        padding-top: 170px !important;
    }
    .home-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding-top: 150px !important;
        padding-bottom: 80px;
    }
    .home-hero h1 {
        font-size: 2.1rem;
    }
}