/* ====== Services Section ====== */
.services-section {
    --accent: #225D77;
    --ink: #C59D63;
    --muted: #838384;
}

.sec-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 70px !important;

}


.service-heading {
    margin-top: clamp(12px, 6vw, 90px) !important;
    color: #111827;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;

}


.service-text {
    color: var(--muted);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;

    text-align: start;
}

.btn-ink {
    width: 260px;
    height: 54px;
    angle: 0deg;
    opacity: 1;
    border-radius: 4px;
    gap: 10px;

    background: var(--ink);
    color: #fff;
    padding: .6rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-align: center;

}


.svc-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    background: #fff;
    border: 1px solid #E6E9ED;
}

.svc-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.svc-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    background: #fff;
    border-top: 1px solid #E6E9ED;
}


.ink-wrap {
    position: relative;
    display: inline-block;
    z-index: 0;
    padding-inline: .15rem;
}

.ink-svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.7em;
    width: 100%;
    height: .70em;
    display: block;
    pointer-events: none;
    z-index: -1;
}

.ink-svg path {
    fill: var(--ink, #D0A066);
}



@media (min-width: 761px) and (max-width: 1024px) {
    .services-section .sec-title {
        font-size: 36px;
        margin-bottom: 48px !important;
    }

    .services-section .service-heading {
        font-size: 36px;
        margin-top: clamp(16px, 5vw, 60px) !important;
        line-height: 115%;
    }

    .services-section .service-text {
        font-size: 17px;
        line-height: 30px;
    }

    .services-section .ink-svg {
        bottom: -.6em;
        height: .6em;
    }

    .services-section .btn-ink {
        width: 240px;
        height: 50px;
        font-size: 16px;
    }

    .services-section .svc-photo {
        border-radius: 8px;
    }
}


@media (max-width: 760px) and (min-width: 569px) {
    .services-section .sec-title {
        font-size: 34px;
        margin-bottom: 44px !important;
    }

    .services-section .service-heading {
        font-size: 32px;
        line-height: 120%;
        margin-top: 28px !important;
    }

    .services-section .service-text {
        font-size: 16.5px;
        line-height: 28px;
    }

    .services-section .ink-svg {
        bottom: -.55em;
        height: .55em;
    }

    .services-section .btn-ink {
        width: min(48%, 240px);
        height: 48px;
        font-size: 16px;
    }

    .services-section .svc-photo {
        margin-bottom: 18px;
    }
}


@media (max-width: 568px) {
    .services-section {
        --container-pad: 12px;
    }

    .services-section .sec-title {
        font-size: 28px;
        margin-bottom: 32px !important;
    }

    .services-section .service-heading {
        font-size: 26px;
        line-height: 130%;
        margin-top: 20px !important;
    }

    .services-section .service-text {
        font-size: 16px;
        line-height: 28px;
    }

    .services-section .ink-svg {
        bottom: -.5em;
        height: .5em;
    }

    .services-section .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }

    .services-section .btn-ink {
        width: 100%;
        height: 46px;
        font-size: 15px;
    }

    .services-section .svc-photo {
        margin-bottom: 14px;
    }

    .services-section .svc-photo img {
        aspect-ratio: 16/10;
        object-fit: cover;
    }
}