/* ── Section ── */
.services {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80%;
    min-height: 190px;
    margin: 60px auto;

    overflow: hidden;
    border-radius: 24px;

    background: linear-gradient(135deg, #d8b06b, #c89a4a);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

/* ── Overlay ── */
.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
}

/* ── Title ── */
.header-title {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 20px;

    color: white;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 400;
    letter-spacing: 1px;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-title::after {
    content: '';
    display: block;

    width: 100%;
    height: 10px;
    margin: 14px auto 0;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .services {
        margin: 35px;
        min-height: 150px;
        border-radius: 18px;
    }

    .header-title {
        font-size: 2rem;
    }
}