.akm-services-hero{

    position:relative;
    width:100%;
    max-width:none;
    height:680px;
    margin:0;
    padding:0;
    overflow:hidden;
    border-radius:0;

}

.akm-services-hero img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:30% center;

    display:block;

    z-index:0;

}

.akm-services-hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.28) 28%,
        rgba(0,0,0,.58) 58%,
        rgba(0,0,0,.82) 100%
    );

    z-index:1;

}

.akm-services-hero-content{

    position:absolute;

    top:50%;
    right:6%;

    transform:translateY(-50%);

    width:520px;
    max-width:520px;

    z-index:2;

    color:#fff;

}

.akm-subtitle{

    display:inline-block;

    margin-bottom:18px;

    letter-spacing:4px;

    font-size:13px;

    font-weight:700;

    color:#d4af37;

    text-transform:uppercase;

}

.akm-services-hero h1{

    margin:0 0 28px;

    font-size:56px;

    line-height:1.05;

    letter-spacing:-1px;

    font-weight:800;

    color:#fff;

    text-shadow:0 6px 20px rgba(0,0,0,.60);

}

.akm-services-hero p{

    margin:0 0 42px;

    max-width:500px;

    font-size:21px;

    line-height:1.75;

    color:#ECECEC;

    text-shadow:0 2px 8px rgba(0,0,0,.45);

}

.akm-services-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.akm-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 38px;

    background:#d4af37;

    color:#111;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

}

.akm-btn-primary:hover{

    background:#f0cb53;

}

.akm-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 38px;

    border:2px solid #fff;

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    transition:.3s;

}

.akm-btn-secondary:hover{

    background:#fff;

    color:#111;

}

@media (max-width:768px){

    .akm-services-hero{

        height:560px;

    }

    .akm-services-hero img{

        object-position:center center;

    }

    .akm-services-hero-overlay{

        background:linear-gradient(
            180deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.72)
        );

    }

    .akm-services-hero-content{

        left:30px;
        right:30px;

        width:auto;
        max-width:none;

    }

    .akm-services-hero h1{

        font-size:42px;

    }

    .akm-services-hero p{

        font-size:18px;

        line-height:1.6;

        margin-bottom:30px;

    }

    .akm-services-buttons{

        flex-direction:column;

    }

    .akm-btn-primary,
    .akm-btn-secondary{

        width:100%;
        min-width:100%;

        text-align:center;

    }

}