.services-section {

    position: relative;
    padding: 120px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-heading {

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 72px;
}

.section-heading h2 {

    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f2f2f2;
    margin-bottom: 18px;
}

.section-line {

    width: 52px;
    height: 3px;
    background: var(--brand-crimson);
}

.services-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 64px;
}

.service-card {

    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.02);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.service-card:hover {

    transform: translateY(-4px);

    border-color: rgba(185,28,28,0.28);

    box-shadow:
        0 0 0 1px rgba(185,28,28,0.12),
        0 24px 60px rgba(0,0,0,0.45);
}

.service-image {

    position: absolute;
    inset: 0;
}

.service-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.42;

    transform: scale(1);
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {

    transform: scale(1.05);
}

.service-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,5,5,0.96) 0%,
            rgba(5,5,5,0.84) 35%,
            rgba(5,5,5,0.30) 100%
        );
}

.service-content {

    position: absolute;
    inset: 0;

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    z-index: 2;
}

.service-content h3 {

    font-family: var(--font-heading);

    font-size: 1.45rem;
    font-weight: 700;

    letter-spacing: 0.03em;

    color: #ffffff;

    margin-bottom: 12px;
}

.service-reveal {

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.service-card:hover .service-reveal {

    opacity: 1;
    transform: translateY(0);
}

.service-reveal p {

    font-family: var(--font-heading);

    font-size: 0.96rem;
    line-height: 1.8;

    color: rgba(255,255,255,0.72);

    margin-bottom: 20px;
}

.service-reveal a {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: var(--font-heading);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--brand-crimson);

    text-decoration: none;

    transition: color 0.3s ease;
}

.service-reveal a:hover {

    color: #ffffff;
}

.services-button-wrapper {

    display: flex;
    justify-content: center;
}

.services-outline-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 28px;

    border: 1px solid rgba(255,255,255,0.22);

    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.services-outline-btn:hover {

    background: rgba(255,255,255,0.05);

    border-color: rgba(255,255,255,0.36);

    transform: translateY(-2px);
}