.page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 22, 11, .6) 0%,
            rgba(8, 22, 11, .3) 50%,
            rgba(8, 22, 11, .8) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-inline: 1.5rem;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    font-size: .8rem;
    color: var(--clr-on-surface-var);
}

.page-hero__breadcrumb a {
    color: var(--clr-primary);
    transition: opacity .2s;
}

.page-hero__breadcrumb a:hover {
    opacity: .75;
}

.page-hero__title {
    font-family: var(--ff-headline);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.page-hero__title span {
    color: var(--clr-primary);
}

.page-hero__desc {
    margin-top: 1rem;
    color: var(--clr-on-surface-var);
    font-size: .97rem;
    max-width: 36rem;
    margin-inline: auto;
    line-height: 1.7;
}

/* ── Main section ── */
.bolge-section {
    padding: 6rem 3rem 7rem;
    background: var(--clr-surface);
}

.bolge-section__inner {
    max-width: 1100px;
    margin-inline: auto;
}

/* intro strip */
.bolge-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(242, 202, 80, .1);
}

.bolge-intro__count {
    font-family: var(--ff-headline);
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.bolge-intro__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--clr-on-surface-var);
    margin-top: .3rem;
}

.bolge-intro__text {
    max-width: 480px;
    font-size: .92rem;
    color: var(--clr-on-surface-var);
    line-height: 1.8;
}

/* ── Grid ── */
.bolge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}

.bolge-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1.1rem 1.4rem;
    background: var(--clr-surface-container);
    border: 1px solid rgba(242, 202, 80, .07);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}

.bolge-card:hover {
    background: var(--clr-surface-high);
    border-color: rgba(242, 202, 80, .22);
    transform: translateY(-2px);
}

.bolge-card__left {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.bolge-card__num {
    font-family: var(--ff-headline);
    font-size: .7rem;
    font-weight: 700;
    color: rgba(212, 175, 55, .3);
    min-width: 1.4rem;
}

.bolge-card__dot {
    width: .45rem;
    height: .45rem;
    border-radius: 50%;
    background: var(--clr-primary-container);
    flex-shrink: 0;
    opacity: .55;
    transition: opacity .25s, transform .25s;
}

.bolge-card:hover .bolge-card__dot {
    opacity: 1;
    transform: scale(1.3);
}

.bolge-card__name {
    font-family: var(--ff-headline);
    font-size: .92rem;
    font-weight: 600;
    color: var(--clr-on-surface);
    transition: color .25s;
}

.bolge-card:hover .bolge-card__name {
    color: var(--clr-primary);
}

.bolge-card__arrow {
    color: rgba(212, 175, 55, .25);
    font-size: 1rem;
    transition: color .25s, transform .25s;
}

.bolge-card:hover .bolge-card__arrow {
    color: var(--clr-primary-container);
    transform: translateX(3px);
}

/* ── CTA strip ── */
.bolge-cta {
    margin-top: 4rem;
    padding: 4.5rem 3rem;
    background: var(--clr-surface-container);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(242, 202, 80, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.bolge-cta__text h3 {
    font-family: var(--ff-headline);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-on-surface);
    margin-bottom: .4rem;
}

.bolge-cta__text p {
    font-size: 1rem;
    color: var(--clr-on-surface-var);
    line-height: 1.6;
}

.bolge-cta__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bolge-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bolge-section {
        padding: 4rem 1.5rem 5rem;
    }

    .bolge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bolge-cta {
        padding: 3.5rem 1.5rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .bolge-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Service Details ── */
.service-details {
    margin-top: 1rem;
    display: none;
}

.service-details__header {
    margin-bottom: 2.5rem;
}

.service-details__header button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.service-item {
    background: var(--clr-surface-container);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(242, 202, 80, .1);
    margin-bottom: 2rem;
}

.service-item__title {
    font-family: var(--ff-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: -.01em;
}

.service-item__desc {
    font-size: 1.05rem;
    color: var(--clr-on-surface-var);
    line-height: 1.8;
}