/* =============== SERVICE PAGE =============== */

.service_page .page,
.insights_page .page,
.faq_page .page,
.contact_page .page {
    background-color: #030303;
    padding-top: 0;
}

/* --- Section Labels --- */
.sec_label {
    width: fit-content;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: var(--ft12);
    font-weight: var(--semi-bold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section_title {
    font-size: var(--ft32);
    letter-spacing: -0.1px;
    font-weight: var(--semi-bold);
    color: var(--white);
    margin-bottom: 40px;
}

/* =============== 1. HERO SECTION =============== */
.service_hero {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 80% 80%, rgba(235, 73, 11, 0.15) 0%, rgba(3, 3, 3, 1) 70%),
        radial-gradient(ellipse at 20% 20%, rgba(152, 34, 34, 0.1) 0%, rgba(3, 3, 3, 1) 60%);
}

.space_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/business-people-casual-meeting.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero_content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

/* --- Breadcrumb --- */
.service_breadcrumb {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin-bottom: 24px;
    font-size: var(--ft16);
    width: fit-content !important;
}

.service_breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.service_breadcrumb a:hover {
    color: var(--white);
}

.bc_sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.hero_title {
    font-size: var(--ft40);
    letter-spacing: -0.1px;
    font-weight: var(--semi-bold);
    line-height: 1.2;
    background: linear-gradient(120deg, #ffffff 30%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero_sub {
    font-size: var(--ft20);
    color: var(--gray-300);
    font-weight: var(--medium);
    max-width: 600px;
    line-height: 1.6;
    word-break: keep-all;
}

/* =============== RESPONSIVE =============== */
@media all and (max-width: 1200px) {
    .hero_title {
        font-size: 2.8rem;
    }
}

@media all and (max-width: 768px) {
    .hero_title {
        font-size: 2.22rem;
        margin-bottom: 24px;
    }

    .hero_sub {
        font-size: var(--ft17);
        line-height: 1.6;
    }

    .service_hero {
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
        min-height: 50vh;
    }
}
