/* ==========================================================
   MAMGOC Website V2
   04-hero.css
   Enterprise hero section
========================================================== */

.hero-v2{
    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(rgba(15,23,42,.74),rgba(15,23,42,.74)),
        url("../../assets/hero-commercial-facilities.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,rgba(37,99,235,.20),transparent 42%),
        linear-gradient(90deg,rgba(15,23,42,.25),transparent);
}

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

.hero-copy{
    max-width:760px;
}

.eyebrow{
    color:#fbbf24;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-weight:800;
    font-size:.82rem;
    margin-bottom:1.25rem;
}

.hero-v2 h1{
    color:#fff;
    margin-bottom:1.75rem;
}

.hero-lead{
    max-width:720px;
    color:rgba(255,255,255,.88);
    font-size:1.15rem;
    line-height:1.9;
    margin-bottom:2.5rem;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:2.5rem;
}

.hero-buttons .btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.55rem;
    padding:14px 28px;
    border-radius:var(--radius-md);
    border:2px solid rgba(255,255,255,.85);
    color:#fff;
    font-weight:800;
    line-height:1;
    transition:var(--transition);
}

.hero-buttons .btn-secondary:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-2px);
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-badges span{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:.95rem;
    font-weight:700;
}
