#services {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: var(--navy2);
}

.bg-services {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-services img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-services-desktop {
    display: none;
}

.bg-services-mobile {
    display: block;
}

#services .container {
    position: relative;
    z-index: 2;
}

.services-header {
    max-width: 760px;
    margin-bottom: 10px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.services-badge::before,
.services-badge::after {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.services-header h2 {
    margin-bottom: 5px;
    font-size: clamp(1rem, 7vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.services-header p {
    max-width: 680px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: auto;
    padding: 18px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(7, 15, 28, 0.78);
    backdrop-filter: blur(12px);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
    background: rgba(10, 20, 38, 0.92);
}

.service-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.24);
    background: rgba(201,168,76,0.08);
    color: var(--gold);
}

.service-icon svg {
    width: 18px;
    height: 18px;
}

.service-card h3 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 0.62rem;
    line-height: 1.7;
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .bg-services-desktop {
        display: block;
    }

    .bg-services-mobile {
        display: none;
    }
}