/* ==============================
   SERVICES PAGE DESIGN SYSTEM
============================== */

:root {
    --services-navy: #0B132B;
    --services-gold: #D4A24C;
    --services-white: #FFFFFF;
    --services-soft: #F7F8FA;
    --services-dark: #1E1E1E;
    --services-muted: #64748b;
    --services-border: #e5e7eb;
    --services-shadow: 0 22px 60px rgba(15, 23, 42, .10);
    --services-shadow-soft: 0 14px 34px rgba(15, 23, 42, .08);
}

/* ==============================
   SERVICES HERO / BANNER
============================== */

.services-banner {
    position: relative;
    width: 100%;
    min-height: 760px;

    margin-top: -100px;
    padding: 100px 20px 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(11, 19, 43, .94),
            rgba(30, 30, 30, .82)
        ),
        url('../../assets/img/mta-banner.jpg');

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.services-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(212, 162, 76, .18), transparent 34%),
        radial-gradient(circle at 80% 35%, rgba(255, 255, 255, .08), transparent 28%);

    z-index: 1;
    pointer-events: none;
}

.services-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;

    height: 160px;

    background: linear-gradient(
        to bottom,
        transparent,
        #f8fafc
    );

    z-index: 1;
    pointer-events: none;
}

.services-overlay {
    display: none;
}

.services-content {
    position: relative;
    z-index: 2;

    width: min(100%, 980px);
    text-align: center;
    padding-inline: 20px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
    padding: 9px 16px;

    border: 1px solid rgba(212, 162, 76, .45);
    border-radius: 999px;

    background: rgba(212, 162, 76, .10);
    color: var(--services-gold);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-content h1 {
    margin: 0 auto 24px;
    max-width: 860px;

    color: var(--services-white);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -2px;
}

.services-content p {
    max-width: 760px;
    margin: 0 auto;

    color: rgba(255, 255, 255, .84);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.8;
}

/* ==============================
   SERVICES SECTION
============================== */

.services-section {
    position: relative;
    z-index: 3;

    background: #f8fafc;
    padding-top: 90px;
    padding-bottom: 100px;
}

/* ==============================
   SECTION TITLE
============================== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-flex;
    margin-bottom: 10px;

    color: var(--services-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 0 auto;
    max-width: 820px;

    color: var(--services-navy);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1px;
}

/* ==============================
   SERVICES GRID
============================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ==============================
   SERVICE CARD
============================== */

.service-card {
    position: relative;
    overflow: hidden;

    background: var(--services-white);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 28px;

    padding: 40px;

    box-shadow: var(--services-shadow-soft);
    transition: .25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--services-gold),
        rgba(212, 162, 76, .25)
    );
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--services-shadow);
}

.service-card h3 {
    margin: 0 0 18px;

    color: var(--services-navy);
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: -.5px;
}

.service-card p {
    margin: 0;

    color: var(--services-muted);
    font-size: 17px;
    line-height: 1.9;
}

/* ==============================
   RESPONSIVE - TABLET
============================== */

@media screen and (max-width: 992px) {
    .services-banner {
        min-height: 700px;
        margin-top: -100px;
        padding: 145px 20px 170px;
    }

    .services-content h1 {
        font-size: clamp(42px, 8vw, 68px);
    }
}

/* ==============================
   RESPONSIVE - MOBILE
============================== */

@media screen and (max-width: 768px) {
    .services-banner {
        min-height: 650px;
        margin-top: -92px;
        padding: 130px 18px 150px;
    }

    .services-content {
        padding-inline: 0;
    }

    .services-content h1 {
        font-size: clamp(38px, 11vw, 56px);
        letter-spacing: -1px;
    }

    .services-content p {
        font-size: 16px;
    }

    .services-section {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 30px;
        border-radius: 24px;
    }

    .service-card h3 {
        font-size: 23px;
    }

    .service-card p {
        font-size: 16px;
    }
}

/* ==============================
   ACCESSIBILITY
============================== */

.service-card:focus-within {
    outline: 3px solid rgba(212, 162, 76, .35);
    outline-offset: 3px;
}