/* ═══════════════════════════════════════════
   HOME PAGE – Service Tabs
   ═══════════════════════════════════════════ */

.svc-tabs {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.svc-tabs__bg-wrap {
    position: absolute;
    inset: 0;
}
.svc-tabs__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 6s linear;
    transform: scale(1.04);
}
.svc-tabs__bg.active {
    opacity: 1;
    transform: scale(1);
}
.svc-tabs__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.3) 50%,
        rgba(0,0,0,.15) 100%
    );
}
.svc-tabs__content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(1.5rem, 5vw, 6rem) 6rem;
    color: #fff;
}
.svc-tabs__counter {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,.7);
}
.svc-tabs__cur { font-weight: 600; }
.svc-tabs__sep { margin: 0 0.3em; }
.svc-tabs__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: #fff;
    transition: opacity 0.4s var(--ease);
}
.svc-tabs__link {
    display: inline-block;
}
.svc-tabs .btn-photo {
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.svc-tabs .btn-photo:hover {
    background: #fff;
    border-color: #fff;
    color: var(--c-ink);
}
.svc-tabs__nav {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.2);
}
.svc-tabs__btn {
    flex: 1;
    padding: 1.2rem 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    position: relative;
}
.svc-tabs__btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.svc-tabs__btn.active {
    color: #fff;
}
.svc-tabs__btn.active::after {
    transform: scaleX(1);
}
.svc-tabs__btn:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.05);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .svc-tabs__nav {
        flex-wrap: wrap;
    }
    .svc-tabs__btn {
        flex: 1 1 50%;
    }
}

    .hp-stats {
        flex-direction: column;
        gap: 2rem;
    }
}
