@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.bc-services-page,
.bc-services-page * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.bc-services-page {
    --blue: #00609e;
    --deep: #003f6b;
    --dark: #081522;
    --navy: #071326;
    --yellow: #fdb712;
    --soft: #f4fbff;
    --line: #d8edf9;
    --muted: #42576f;
    width: 100%;
    background: #fff;
    color: var(--navy);
    overflow: hidden;
}

.bc-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* HERO */
.bc-services-hero-wrap {
    position: relative;
    min-height: 440px;
    padding: 70px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--yellow);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bc-services-hero-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 25%, rgba(253, 183, 18, .16), transparent 24%),
                radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .12), transparent 25%);
}

.bc-services-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.bc-services-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.bc-services-label span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
}

/* SERVICE ROWS */
.bc-service-row {
    padding: 82px 0;
    background: #fff;
}

.bc-service-row:nth-of-type(odd) {
    background: var(--soft);
}

.bc-service-box {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: stretch;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px rgba(0, 69, 124, .08);
}

.bc-service-image {
    min-height: 470px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.bc-service-image:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 24, 52, .50), rgba(0, 103, 168, .20));
}

.bc-accent-dots {
    position: absolute;
    right: 26px;
    top: 26px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.bc-accent-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
}

.bc-accent-dots span:last-child {
    background: #01a99e;
}

.bc-service-number {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.bc-service-content {
    padding: 52px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bc-mini-label {
    display: inline-flex;
    width: max-content;
    padding: 9px 17px;
    border-radius: 999px;
    background: #fff8d9;
    border: 1px solid rgba(253, 183, 18, .70);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bc-service-content h2 {
    margin: 0 0 18px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--navy);
}

.bc-service-content p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.76;
}

.bc-service-content ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 18px;
}

.bc-service-content li {
    position: relative;
    padding-left: 24px;
    color: #26394f;
    font-size: 14px;
    line-height: 1.5;
}

.bc-service-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(253, 183, 18, .16);
}

.bc-service-action {
    width: max-content;
    text-align: center;
}

.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 50px;
    padding: 0 26px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
    white-space: nowrap;
}

.bc-btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(253, 183, 18, .22);
}

.bc-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:1050px) {
    .bc-service-box {
        grid-template-columns: 1fr;
    }

    .bc-service-image {
        min-height: 350px;
    }
}

@media(max-width:720px) {
    .bc-services-hero-wrap {
        min-height: 360px;
        padding: 55px 18px;
    }

    .bc-services-label {
        font-size: clamp(30px, 11vw, 46px);
        padding: 14px 24px;
    }

    .bc-btn {
        min-width: 118px;
        min-height: 46px;
        padding: 0 18px;
        font-size: 13px;
    }
}

@media(max-width:640px) {
    .bc-service-row {
        padding: 64px 0;
    }

    .bc-wrap {
        padding: 0 16px;
    }

    .bc-service-box {
        border-radius: 24px;
    }

    .bc-service-content {
        padding: 30px 24px;
    }

    .bc-service-content ul {
        grid-template-columns: 1fr;
    }

    .bc-service-image {
        min-height: 285px;
    }

    .bc-service-action {
        width: 100%;
    }
}
