/* ===================================
   SERVICES
=================================== */

.services-section {
    padding: 40px 20px 80px;
    background: #e9ebf0;
}

.services-heading {
    text-align: center;
    max-width: 820px;
    margin: auto auto 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #b18024;
    font-size: .9rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-label span {
    width: 60px;
    height: 2px;
    background: #b18024;
}

.services-heading h2 {
    font-size: clamp(2.3rem,5vw,4rem);
    color: #051f45;
    margin: 18px 0 25px;
    line-height: 1.1;
}

.services-heading p {
    font-size: 1.25rem;
    color: #5a6178;
    line-height: 1.7;
}

/* =====================================================
   Services Grid
===================================================== */

.services-grid {

    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

}


/* =====================================================
   Service Card
===================================================== */

.service-card {

    display: flex;
    flex-direction: column;

    background: #ffffff;

    padding: 28px;

    border-radius: 20px;

    box-shadow:
        0 12px 28px rgba(5,31,69,.08),
        0 3px 8px rgba(5,31,69,.05);

    transition: all .3s ease;

}

.service-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 36px rgba(5,31,69,.12),
        0 6px 14px rgba(5,31,69,.08);

}


/* =====================================================
   Icon
===================================================== */

.service-icon {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #edf4fb;

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

    font-size: 1.5rem;

    color: #051f45;

    margin-bottom: 22px;

}


/* =====================================================
   Title
===================================================== */

.service-card h3 {

    color: #051f45;

    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;

    margin: 0 0 16px;

    min-height: 80px;

}


/* =====================================================
   Gold Divider
===================================================== */

.gold-line {

    width: 42px;
    height: 3px;

    background: #b18024;

    margin-bottom: 20px;

}


/* =====================================================
   Description
===================================================== */

.service-card p {

    flex-grow: 1;

    margin: 0 0 28px;
    padding: 0;

    color: #5a6178;

    font-size: 1rem;
    line-height: 1.7;

}


/* =====================================================
   Learn More Link
===================================================== */

.service-card a {

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

    margin-top: auto;

    color: #051f45;

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

    text-decoration: none;

    transition: color .3s ease;

}

.service-card a:hover {

    color: #b18024;

}




/* --------------------------------------------------
   Services Callout
-------------------------------------------------- */

.services-callout {
    margin: 90px auto 0;
    width: min(100%, 1400px);
    box-sizing: border-box;

    padding: 35px 50px;

    background: #f7f8fa;
    border-radius: 18px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
}

.callout-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}

.callout-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;

    background: #edf4fb;
    border-radius: 50%;

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

.callout-icon img {
    width: 65px;
    height: auto;
}

.callout-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #051f45;
    white-space: nowrap;
}

.divider {
    width: 2px;
    height: 56px;

    background: #b18024;
    opacity: .5;
}

.services-callout p {
    margin: 0;
    text-align: center;
    color: #5a6178;
    font-size: 1.5rem;
    line-height: 1.6;
}

.services-callout a {
    justify-self: end;

    color: #b18024;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition: color .2s ease;
}

.services-callout a:hover {
    color: #8e651b;
}

/* Large laptops / standard desktop */
@media (max-width: 1500px) {

    .services-callout {
        grid-template-columns: 260px 1fr auto;
        gap: 2rem;
        padding: 30px 40px;
    }

    .callout-title {
        font-size: 1.5rem;
    }

    .services-callout p,
    .services-callout a {
        font-size: 1.35rem;
    }
}

/* Smaller desktop */
@media (max-width: 1280px) {

    .services-callout {
        grid-template-columns: 260px 1fr auto;
        gap: 1.5rem;
        padding: 25px 30px;
    }

    .callout-left {
        gap: 1rem;
    }

    .callout-icon {
        width: 60px;
        height: 60px;
    }

    .callout-icon img {
        width: 28px;
    }

    .callout-title {
        font-size: 1.35rem;
    }

    .services-callout p,
    .services-callout a {
        font-size: 1.2rem;
    }
}