/* ====================================
   SERVICES TABS — svt (pill style)
   ==================================== */

.svt {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.svt__container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ── Header ── */
.svt__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.svt__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(9, 10, 81, 0.07);
    padding: 6px 18px;
    border-radius: var(--border-radius-full);
    margin-bottom: 12px;
}

.svt__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

/* ── Pill Butonlar ── */
.svt__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-xl);
}

.svt__pill {
    padding: 11px 26px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--border-color);
    background: #fff;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.svt__pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(9, 10, 81, 0.04);
}

.svt__pill--active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(9, 10, 81, 0.25);
}

/* ── Paneller ── */
.svt__panels {
    position: relative;
}

.svt__panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 400px;
    animation: svtFadeUp 0.35s ease;
}

.svt__panel--active {
    display: grid;
}

@keyframes svtFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Sol: İçerik ── */
.svt__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 48px;
    gap: 18px;
}

.svt__content-title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

.svt__content-text {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.svt__content-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: gap 0.2s ease;
}

.svt__content-link:hover {
    gap: 14px;
}

.svt__content-link svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.svt__content-link:hover svg {
    transform: translateX(4px);
}

/* ── Sağ: Görsel ── */
.svt__image {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    min-height: 400px;
}

.svt__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.svt__panel--active .svt__image img {
    transform: scale(1.04);
}

.svt__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9,10,81,0.06), rgba(145,175,201,0.12));
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1023px) {
    .svt__content {
        padding: 40px 36px;
    }
}

@media (max-width: 767px) {
    .svt__panel {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .svt__image {
        min-height: 260px;
        order: -1;
    }

    .svt__image img {
        position: relative;
        height: 260px;
        inset: unset;
    }

    .svt__content {
        padding: 32px 28px;
    }

    .svt__pills {
        gap: 8px;
    }

    .svt__pill {
        padding: 9px 20px;
        font-size: 13px;
    }
}

@media (max-width: 479px) {
    .svt {
        padding: var(--space-xl) 0;
    }

    .svt__content {
        padding: 24px 20px;
    }

    .svt__image {
        min-height: 210px;
    }

    .svt__image img {
        height: 210px;
    }
}
