/* ============================================
   SERVICE HERO SECTION
   Centralized component for all service pages
   Uses design tokens from variables.css
   ============================================ */

/* ===== BASE STYLES ===== */
.service-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* ===== GRID LAYOUT ===== */
.service-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-hero__content {
    color: #fff;
    text-align: left;
}

/* ===== BREADCRUMB ===== */
.service-hero__breadcrumb {
    margin-bottom: 24px;
    font-size: 14px;
}

.service-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.service-hero__breadcrumb a:hover {
    color: #fff;
}

.service-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

.service-hero__breadcrumb .current {
    color: var(--color-primary, #d4488e);
    margin: 0;
}

/* ===== TITLE ===== */
.service-hero__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-hero__title .title-line-1 {
    display: block;
    color: #fff;
}

.service-hero__title .title-line-2 {
    display: block;
    color: var(--color-primary, #d4488e);
    font-size: 0.85em;
}

/* ===== DESCRIPTION ===== */
.service-hero__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 540px;
}

/* ===== BUTTONS ===== */
.service-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-hero .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #fff !important;
    background: transparent !important;
}

.service-hero .btn-outline-light:hover {
    background: #fff !important;
    color: var(--color-bg-dark, #1a1a2e) !important;
}

/* ===== STATS ===== */
.service-hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hero__stats .stat-item {
    text-align: left;
}

.service-hero__stats .stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary, #d4488e);
    line-height: 1.2;
}

.service-hero__stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ===== IMAGE ===== */
.service-hero__image {
    position: relative;
}

.service-hero__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* ===== BADGE ===== */
.service-hero__badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-hero__badge .badge-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-primary, #d4488e), #e91e8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero__badge .badge-text strong {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary, #1a1a2e);
    font-size: 1rem;
}

.service-hero__badge .badge-text span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .service-hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-hero__content {
        text-align: center;
        order: 2;
    }

    .service-hero__image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .service-hero__title {
        font-size: 2.2rem;
    }

    .service-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero__buttons {
        justify-content: center;
    }

    .service-hero__stats {
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .service-hero__stats .stat-item {
        text-align: center;
    }

    .service-hero__badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 24px auto 0;
        display: inline-flex;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 640px) {
    .service-hero {
        padding: 100px 0 80px;
    }

    .service-hero__title {
        font-size: 1.8rem;
    }

    .service-hero__stats {
        gap: 20px;
    }

    .service-hero__stats .stat-value {
        font-size: 1.8rem;
    }
}