/* ══════════════════════════════════════════════════════════
   MÜŞTERİ HİZMETLERİ — customer-service.css
   Raporlama standardı ile uyumlu hale getirilmiştir.
   reporting.css üzerine extend eder.
   ══════════════════════════════════════════════════════════ */

/* ══ HERO — SVG Stage Sarmalı ═══════════════════════════════ */

/* rp-hero-section genel stili reporting.css'den geliyor,
   sadece bu sayfaya özgü sağ sütun stili burada. */

.cs-hero-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    min-height: 440px;
}

/* Tooltip — konum mutlak, stage içinde */
.cs-hero-stage .cs-ig-tooltip {
    position: absolute;
    z-index: 50;
}

/* SVG container tam genişlik */
.cs-hero-stage .cs-ig-svg-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* SVG boyutu */
.cs-hero-stage .cc-main-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    overflow: visible;
    margin: 0 auto;
}

/* ══ İLETİŞİM KANALLARI ════════════════════════════════════ */
.cs-channels-section { background: #f8fbfe; }

.cs-channel-card {
    padding: 36px 26px;
    border-radius: 20px;
    border: 1px solid rgba(13,34,56,0.07);
    background: #fff;
    box-shadow: 0 10px 28px rgba(12,34,56,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12,34,56,0.09);
}

.cs-channel-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(13,110,253,0.22);
}
.cs-channel-card:hover .cs-channel-icon { transform: scale(1.1); }
.cs-channel-icon i { font-size: 1.6rem; color: #fff; }

.cs-channel-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0d2238;
    font-weight: 700;
}
.cs-channel-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
    line-height: 1.4;
}
.cs-channel-email { font-size: 1rem; }

/* ══ EKİP & HİZMETLER ════════════════════════════════════ */
.cs-alt-section { background: #f8fbfe; }

.cs-detail-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(12,34,56,0.09);
    transition: transform 0.4s ease;
}
.cs-detail-img:hover { transform: scale(1.02); }

.cs-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(13,34,56,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.92rem;
    color: #1a2c3d;
}
.cs-alt-section .cs-feature-item { background: #fff; }
.cs-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 14px rgba(12,34,56,0.07);
    border-color: rgba(13,110,253,0.12);
}
.cs-feature-item i { color: #0d6efd; font-size: 1.1rem; flex-shrink: 0; }

/* ══ FAQ ════════════════════════════════════════════════════ */
.cs-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-faq-item {
    border: 1px solid rgba(13,34,56,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: #fff;
}
.cs-faq-item:hover { box-shadow: 0 6px 20px rgba(12,34,56,0.07); }

.cs-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 600;
    color: #0d2238;
    transition: background 0.2s ease, color 0.2s ease;
}
.cs-faq-question:hover {
    background: #f0f6ff;
    color: #0d6efd;
}
.cs-faq-question.active {
    background: #0d6efd;
    color: #fff;
}
.cs-faq-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.cs-faq-question.active .cs-faq-icon { color: #fff; }

.cs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8fbfe;
}
.cs-faq-answer p {
    padding: 16px 22px;
    font-size: 0.93rem;
    line-height: 1.8;
    color: #4a5a6a;
    margin: 0;
}

/* ══ SVG ANİMASYON STİLLERİ — Birebir korundu ════════════ */
.cs-infographic-section { overflow: hidden; }

.cs-ig-outer {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.cs-ig-svg-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cc-main-svg {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    overflow: visible;
    margin: 0 auto;
}

/* Merkez figür — küçükten büyür */
#cc-figure {
    transform-origin: 298px 298px;
    transform: scale(0.25);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity   0.6s ease;
}
#cc-figure.cc-visible { transform: scale(1); opacity: 1; }

/* Figür hover */
#cc-figure { cursor: pointer; }
.cc-figure-hover #cc-figure {
    filter: drop-shadow(0 0 12px rgba(52, 178, 228, 0.35))
            drop-shadow(0 0 24px rgba(52, 178, 228, 0.15));
    transform: scale(1.04);
    transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
                filter    0.35s ease, opacity 0.6s ease;
}

/* Ok segmentleri — yönlerine göre uçarak gelir */
#cc-arc-ur  { transform-origin: 298px 298px; transform: translate(55px, -55px);  opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-ul  { transform-origin: 298px 298px; transform: translate(-55px, -55px); opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-left  { transform-origin: 298px 298px; transform: translate(-75px, 0);    opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-dl  { transform-origin: 298px 298px; transform: translate(-55px, 55px);  opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-down { transform-origin: 298px 298px; transform: translate(0, 75px);      opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-dr  { transform-origin: 298px 298px; transform: translate(55px, 55px);   opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }
#cc-arc-right { transform-origin: 298px 298px; transform: translate(75px, 0);     opacity: 0; transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1), opacity 0.55s ease; }

/* Aktif (görünür) */
#cc-arc-ur.cc-visible,
#cc-arc-ul.cc-visible,
#cc-arc-left.cc-visible,
#cc-arc-dl.cc-visible,
#cc-arc-down.cc-visible,
#cc-arc-dr.cc-visible,
#cc-arc-right.cc-visible {
    transform: translate(0, 0);
    opacity: 1;
}

/* Ok hover parlaması */
.cc-arc-group { cursor: pointer; }
.cc-arc-group:hover {
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(255,255,255,0.2));
    transition: filter 0.2s ease, transform 0.7s cubic-bezier(0.34,1.2,0.64,1),
                opacity 0.55s ease;
}

/* Tooltip */
.cs-ig-tooltip {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34,1.4,0.64,1);
    width: 220px;
}
.cs-ig-tooltip.cs-tt-show { opacity: 1; transform: translateY(0) scale(1); }

.cs-ig-tooltip-inner {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid var(--cs-tt-color, #0d6efd);
}
.cs-ig-tt-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cs-tt-color, #0d6efd);
    margin-bottom: 5px;
}
.cs-ig-tt-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.25;
}
.cs-ig-tt-desc {
    font-size: 0.77rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* ══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .cs-hero-stage { min-height: 380px; padding: 16px 8px; }
    .cs-hero-stage .cc-main-svg { max-width: 400px; }
}

@media (max-width: 767.98px) {
    .cs-channel-card { padding: 28px 20px; }
    /* .cs-ig-tooltip { display: none !important; } */
    .cc-main-svg   { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   CUSTOMER SERVICE — NEW INLINE SVG HERO
   Service 24_7-amico 1.svg
   ══════════════════════════════════════════════════════════ */

.cs-hero-svg-shell {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-svg-shell > svg {
        width: 100%;
        max-width: 620px;
        height: auto;
        display: block;
        overflow: visible;
        margin: 0 auto;
        filter: drop-shadow(0 22px 48px rgba(12, 34, 56, 0.14));
    }

    /* başlangıç durumları */
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-agent,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7 {
        transform-box: fill-box;
        will-change: transform, opacity;
        opacity: 0;
    }

    /* masa sabit taban gibi gelsin */
    .cs-hero-svg-shell #cc-desk {
        transform-origin: center bottom;
        transform: translate3d(0, 42px, 0) scale(0.98);
    }

    /* telefon soldan */
    .cs-hero-svg-shell #cc-phone {
        transform-origin: center center;
        transform: translate3d(-90px, 24px, 0) scale(0.84) rotate(-8deg);
    }

    /* bilgisayar sağdan */
    .cs-hero-svg-shell #cc-computer {
        transform-origin: center center;
        transform: translate3d(95px, 16px, 0) scale(0.84) rotate(6deg);
    }

    /* agent aşağıdan */
    .cs-hero-svg-shell #cc-agent {
        transform-origin: center bottom;
        transform: translate3d(0, 90px, 0) scale(0.84);
    }

    /* chat üstten düşsün */
    .cs-hero-svg-shell #cc-chat {
        transform-origin: center center;
        transform: translate3d(0, -70px, 0) scale(0.82);
    }

    /* ikonlar dışarıdan gelsin */
    .cs-hero-svg-shell #cc-icon-person {
        transform-origin: center center;
        transform: translate3d(-70px, -35px, 0) scale(0.72);
    }

    .cs-hero-svg-shell #cc-icon-wrenc {
        transform-origin: center center;
        transform: translate3d(0, 70px, 0) scale(0.72);
    }

    .cs-hero-svg-shell #cc-icon-24\/7 {
        transform-origin: center center;
        transform: translate3d(75px, -30px, 0) scale(0.72);
    }

    /* tetiklenince */
    .cs-hero-svg-shell.is-active #cc-desk {
        animation: csDeskIn 0.65s cubic-bezier(.22,.84,.24,1) 0.05s forwards;
    }

    .cs-hero-svg-shell.is-active #cc-phone {
        animation: csPhoneIn 0.9s cubic-bezier(.22,.84,.24,1) 0.28s forwards, csFloatA 5.8s ease-in-out 1.5s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-computer {
        animation: csComputerIn 0.9s cubic-bezier(.22,.84,.24,1) 0.46s forwards, csFloatB 6.2s ease-in-out 1.7s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-agent {
        animation: csAgentRise 0.9s cubic-bezier(.22,.84,.24,1) 0.74s forwards, csFloatC 5.7s ease-in-out 1.9s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-chat {
        animation: csChatDrop 0.82s cubic-bezier(.2,1.1,.32,1) 1.02s forwards, csFloatA 5.2s ease-in-out 2.1s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-person {
        animation: csIconInLeft 0.72s cubic-bezier(.22,.84,.24,1) 1.18s forwards, csFloatB 6.4s ease-in-out 2.2s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-wrenc {
        animation: csIconInBottom 0.72s cubic-bezier(.22,.84,.24,1) 1.34s forwards, csFloatC 6.1s ease-in-out 2.35s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-24\/7 {
        animation: csIconInRight 0.72s cubic-bezier(.22,.84,.24,1) 1.5s forwards, csFloatA 6.6s ease-in-out 2.5s infinite;
    }

/* keyframes */
@keyframes csDeskIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 42px, 0) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csPhoneIn {
    0% {
        opacity: 0;
        transform: translate3d(-90px, 24px, 0) scale(0.84) rotate(-8deg);
    }

    70% {
        opacity: 1;
        transform: translate3d(6px, -2px, 0) scale(1.02) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

@keyframes csComputerIn {
    0% {
        opacity: 0;
        transform: translate3d(95px, 16px, 0) scale(0.84) rotate(6deg);
    }

    70% {
        opacity: 1;
        transform: translate3d(-6px, -2px, 0) scale(1.02) rotate(-1deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

@keyframes csAgentRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 90px, 0) scale(0.84);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, -6px, 0) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csChatDrop {
    0% {
        opacity: 0;
        transform: translate3d(0, -70px, 0) scale(0.82);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, 6px, 0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-70px, -35px, 0) scale(0.72);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInBottom {
    0% {
        opacity: 0;
        transform: translate3d(0, 70px, 0) scale(0.72);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInRight {
    0% {
        opacity: 0;
        transform: translate3d(75px, -30px, 0) scale(0.72);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes csFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 7px, 0);
    }
}

@keyframes csFloatC {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

@media (max-width: 991.98px) {
    .cs-hero-svg-shell,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-svg-shell > svg {
        max-width: 460px;
    }
}

@media (max-width: 767.98px) {
    .cs-hero-svg-shell,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-svg-shell > svg {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-agent,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════════════
   CUSTOMER SERVICE — HERO FIX + VISUAL UPGRADE
   bunu dosyanın en altına ekle
   ══════════════════════════════════════════════════════════ */

/* ---------- PAGE ATMOSPHERE ---------- */
.customer-service-page,
.cs-page {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.06), transparent 22%), radial-gradient(circle at 85% 18%, rgba(52, 178, 228, 0.08), transparent 18%), linear-gradient(180deg, #f4f8fc 0%, #eef4f9 100%);
    color: #0d2238;
}

    .customer-service-page .section,
    .cs-page .section {
        position: relative;
    }

    .customer-service-page .container,
    .cs-page .container {
        position: relative;
        z-index: 2;
    }

/* ---------- HERO AREA ---------- */
.cs-hero-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: radial-gradient(circle at 18% 24%, rgba(52, 178, 228, 0.14), transparent 24%), radial-gradient(circle at 82% 20%, rgba(13, 110, 253, 0.10), transparent 20%), linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    border: 1px solid rgba(13, 34, 56, 0.06);
    box-shadow: 0 26px 60px rgba(12, 34, 56, 0.08);
}

    .cs-hero-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(13, 110, 253, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 110, 253, 0.035) 1px, transparent 1px);
        background-size: 34px 34px;
        mask-image: radial-gradient(circle at center, rgba(0,0,0,.95), transparent 82%);
        pointer-events: none;
        z-index: 0;
    }

    .cs-hero-stage::after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        right: -30px;
        bottom: -30px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(52, 178, 228, 0.14) 0%, rgba(52, 178, 228, 0) 72%);
        filter: blur(6px);
        pointer-events: none;
        z-index: 0;
    }

    .cs-hero-stage .cs-ig-svg-container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

.cs-hero-svg-shell {
    position: relative;
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
}

    /* SVG kesin görünsün */
    .cs-hero-svg-shell svg,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-stage svg,
    .cs-hero-stage .cc-main-svg {
        width: 100%;
        max-width: 660px;
        height: auto;
        display: block !important;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        margin: 0 auto;
        filter: drop-shadow(0 24px 52px rgba(12, 34, 56, 0.14));
    }

    /* Eğer JS class basmazsa da svg tamamen kaybolmasın */
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-agent,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7 {
        opacity: 1;
    }

    /* sadece aktif durumda başlangıç transformları uygulansın */
    .cs-hero-svg-shell.is-anim-ready #cc-desk,
    .cs-hero-svg-shell.is-anim-ready #cc-phone,
    .cs-hero-svg-shell.is-anim-ready #cc-computer,
    .cs-hero-svg-shell.is-anim-ready #cc-agent,
    .cs-hero-svg-shell.is-anim-ready #cc-chat,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-person,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-wrenc,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-24\/7 {
        transform-box: fill-box;
        will-change: transform, opacity;
        opacity: 0;
    }

    /* başlangıçlar sadece is-anim-ready varken devreye girsin */
    .cs-hero-svg-shell.is-anim-ready #cc-desk {
        transform-origin: center bottom;
        transform: translate3d(0, 42px, 0) scale(0.98);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-phone {
        transform-origin: center center;
        transform: translate3d(-90px, 24px, 0) scale(0.84) rotate(-8deg);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-computer {
        transform-origin: center center;
        transform: translate3d(95px, 16px, 0) scale(0.84) rotate(6deg);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-agent {
        transform-origin: center bottom;
        transform: translate3d(0, 90px, 0) scale(0.84);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-chat {
        transform-origin: center center;
        transform: translate3d(0, -70px, 0) scale(0.82);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-person {
        transform-origin: center center;
        transform: translate3d(-70px, -35px, 0) scale(0.72);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-wrenc {
        transform-origin: center center;
        transform: translate3d(0, 70px, 0) scale(0.72);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-24\/7 {
        transform-origin: center center;
        transform: translate3d(75px, -30px, 0) scale(0.72);
    }

    /* animasyon tetik */
    .cs-hero-svg-shell.is-active #cc-desk {
        animation: csDeskIn 0.65s cubic-bezier(.22,.84,.24,1) 0.05s forwards;
    }

    .cs-hero-svg-shell.is-active #cc-phone {
        animation: csPhoneIn 0.9s cubic-bezier(.22,.84,.24,1) 0.28s forwards, csFloatA 5.8s ease-in-out 1.5s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-computer {
        animation: csComputerIn 0.9s cubic-bezier(.22,.84,.24,1) 0.46s forwards, csFloatB 6.2s ease-in-out 1.7s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-agent {
        animation: csAgentRise 0.9s cubic-bezier(.22,.84,.24,1) 0.74s forwards, csFloatC 5.7s ease-in-out 1.9s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-chat {
        animation: csChatDrop 0.82s cubic-bezier(.2,1.1,.32,1) 1.02s forwards, csFloatA 5.2s ease-in-out 2.1s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-person {
        animation: csIconInLeft 0.72s cubic-bezier(.22,.84,.24,1) 1.18s forwards, csFloatB 6.4s ease-in-out 2.2s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-wrenc {
        animation: csIconInBottom 0.72s cubic-bezier(.22,.84,.24,1) 1.34s forwards, csFloatC 6.1s ease-in-out 2.35s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-24\/7 {
        animation: csIconInRight 0.72s cubic-bezier(.22,.84,.24,1) 1.5s forwards, csFloatA 6.6s ease-in-out 2.5s infinite;
    }

/* ---------- TYPOGRAPHY / CONTENT ---------- */
.cs-section-kicker,
.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
    color: #0d6efd;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-page h1,
.cs-page h2,
.customer-service-page h1,
.customer-service-page h2 {
    color: #0d2238;
    letter-spacing: -0.03em;
}

.cs-page p,
.customer-service-page p {
    color: #5a6a79;
}

/* ---------- CHANNEL CARDS ---------- */
.cs-channels-section {
    background: transparent;
}

.cs-channel-card {
    position: relative;
    padding: 34px 26px;
    border-radius: 24px;
    border: 1px solid rgba(13,34,56,0.06);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 14px 34px rgba(12,34,56,0.06);
    text-align: center;
    height: 100%;
    overflow: hidden;
}

    .cs-channel-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd 0%, #34B2E4 100%);
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    .cs-channel-card:hover::before {
        opacity: 1;
    }

    .cs-channel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 44px rgba(12,34,56,0.10);
    }

.cs-channel-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0d6efd, #34B2E4);
    margin: 0 auto 20px;
    box-shadow: 0 14px 26px rgba(13,110,253,0.22);
}

.cs-channel-card h4 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.cs-channel-number {
    font-size: 1.18rem;
}

/* ---------- ALT SECTION / TEAM ---------- */
.cs-alt-section {
    background: transparent;
}

.cs-team-panel,
.cs-detail-panel {
    padding: 34px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(13,34,56,0.06);
    box-shadow: 0 18px 40px rgba(12,34,56,0.06);
}

.cs-feature-list {
    gap: 12px;
}

.cs-feature-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(13,34,56,0.07);
    box-shadow: 0 8px 18px rgba(12,34,56,0.04);
    font-size: 0.94rem;
}

    .cs-feature-item:hover {
        transform: translateX(6px);
        box-shadow: 0 12px 24px rgba(12,34,56,0.08);
    }

    .cs-feature-item i {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(13,110,253,0.08);
        color: #0d6efd;
        font-size: 0.92rem;
    }

/* ---------- FAQ ---------- */
.cs-faq-item {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(12,34,56,0.04);
}

.cs-faq-question {
    padding: 20px 22px;
    font-size: 1rem;
}

.cs-faq-answer {
    background: #f8fbfe;
}

    .cs-faq-answer p {
        font-size: 0.95rem;
    }

/* ---------- TOOLTIP POLISH ---------- */
.cs-ig-tooltip {
    width: 240px;
}

.cs-ig-tooltip-inner {
    border-radius: 14px;
    padding: 15px 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.05);
}

.cs-ig-tt-title {
    font-size: 0.95rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
    .cs-hero-stage {
        min-height: 460px;
    }
}

@media (max-width: 991.98px) {
    .cs-hero-stage {
        min-height: 400px;
        padding: 20px 12px;
        border-radius: 28px;
    }

        .cs-hero-svg-shell,
        .cs-hero-svg-shell .cc-main-svg,
        .cs-hero-svg-shell > svg,
        .cs-hero-stage .cc-main-svg {
            max-width: 460px;
        }

    .cs-team-panel,
    .cs-detail-panel {
        padding: 26px 22px;
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    .cs-hero-stage {
        min-height: 320px;
        padding: 16px 10px;
        border-radius: 24px;
    }

        .cs-hero-svg-shell,
        .cs-hero-svg-shell .cc-main-svg,
        .cs-hero-svg-shell > svg,
        .cs-hero-stage .cc-main-svg {
            max-width: 100%;
        }

    .cs-channel-card {
        padding: 28px 20px;
    }

    .cs-ig-tooltip {
        width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-agent,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

անրատорӣ to=container.exec code 天天送եք {
    "cmd":["bash","-lc","python - << 'PY'\nimport xml.etree.ElementTree as ET\npath='/mnt/data/Service 24_7-amico 1.svg'\nroot=ET.parse(path).getroot()\n# strip ns\nfor el in root.iter():\n    if '}' in el.tag:\n        el.tag=el.tag.split('}',1)[1]\nids=[]\nfor el in root.iter():\n    i=el.attrib.get('id')\n    if i:\n        ids.append((el.tag,i))\nprint(ids[:200])\nPY"]
}

/* ══════════════════════════════════════════════════════════
   CUSTOMER SERVICE — TEAM SVG LAYOUT + NEW ANIMATION
   masa -> parçalar -> agent
   ══════════════════════════════════════════════════════════ */

.cs-team-section {
    padding: 36px 0 90px;
}

.cs-team-copy {
    max-width: 560px;
}

    .cs-team-copy h2 {
        margin: 12px 0 18px;
        font-size: clamp(2rem, 3vw, 3.25rem);
        line-height: 1.08;
        font-weight: 800;
        color: #0d2238;
        letter-spacing: -0.03em;
    }

    .cs-team-copy p {
        font-size: 1rem;
        line-height: 1.85;
        color: #516171;
        margin-bottom: 16px;
    }

.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
    color: #0d6efd;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-hero-stage {
    position: relative;
    min-height: 520px;
    padding: 26px 18px;
    border-radius: 34px;
    overflow: hidden;
    background: radial-gradient(circle at 16% 24%, rgba(52, 178, 228, 0.12), transparent 22%), radial-gradient(circle at 86% 18%, rgba(13, 110, 253, 0.10), transparent 18%), linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    border: 1px solid rgba(13, 34, 56, 0.06);
    box-shadow: 0 26px 60px rgba(12, 34, 56, 0.08);
}

    .cs-hero-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(13, 110, 253, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 110, 253, 0.03) 1px, transparent 1px);
        background-size: 34px 34px;
        mask-image: radial-gradient(circle at center, rgba(0,0,0,.95), transparent 84%);
        pointer-events: none;
        z-index: 0;
    }

.cs-ig-svg-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cs-hero-svg-shell {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

    .cs-hero-svg-shell svg,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-stage svg,
    .cs-hero-stage .cc-main-svg {
        width: 100%;
        max-width: 620px;
        height: auto;
        display: block;
        overflow: visible;
        margin: 0 auto;
        filter: drop-shadow(0 24px 50px rgba(12, 34, 56, 0.14));
    }

    /* Varsayılan görünür kalsın ki yine boş ekran görmeyelim */
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7,
    .cs-hero-svg-shell #cc-agent {
        opacity: 1;
        transform-box: fill-box;
        will-change: transform, opacity;
    }

    /* Sadece animasyon hazırsa başlangıç durumları uygulansın */
    .cs-hero-svg-shell.is-anim-ready #cc-desk,
    .cs-hero-svg-shell.is-anim-ready #cc-phone,
    .cs-hero-svg-shell.is-anim-ready #cc-computer,
    .cs-hero-svg-shell.is-anim-ready #cc-chat,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-person,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-wrenc,
    .cs-hero-svg-shell.is-anim-ready #cc-icon-24\/7,
    .cs-hero-svg-shell.is-anim-ready #cc-agent {
        opacity: 0;
    }

    /* 1) MASA */
    .cs-hero-svg-shell.is-anim-ready #cc-desk {
        transform-origin: center bottom;
        transform: translate3d(0, 42px, 0) scale(0.92);
    }

    /* 2) MASA ÜSTÜ PARÇALAR */
    .cs-hero-svg-shell.is-anim-ready #cc-phone {
        transform-origin: center center;
        transform: translate3d(-58px, -12px, 0) scale(0.82) rotate(-6deg);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-computer {
        transform-origin: center center;
        transform: translate3d(70px, -14px, 0) scale(0.82) rotate(5deg);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-chat {
        transform-origin: center center;
        transform: translate3d(0, -54px, 0) scale(0.76);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-person {
        transform-origin: center center;
        transform: translate3d(-62px, -46px, 0) scale(0.7);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-wrenc {
        transform-origin: center center;
        transform: translate3d(28px, 42px, 0) scale(0.7);
    }

    .cs-hero-svg-shell.is-anim-ready #cc-icon-24\/7 {
        transform-origin: center center;
        transform: translate3d(72px, -44px, 0) scale(0.7);
    }

    /* 3) AGENT EN SON YUKARIDAN DÜŞSÜN */
    .cs-hero-svg-shell.is-anim-ready #cc-agent {
        transform-origin: center bottom;
        transform: translate3d(0, -120px, 0) scale(0.84);
    }

    /* AKTİF ANİMASYONLAR */
    .cs-hero-svg-shell.is-active #cc-desk {
        animation: csDeskReveal 0.82s cubic-bezier(.22,.84,.24,1) 0.05s forwards;
    }

    .cs-hero-svg-shell.is-active #cc-phone {
        animation: csPartInLeft 0.7s cubic-bezier(.22,.84,.24,1) 0.64s forwards, csFloatA 5.8s ease-in-out 1.8s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-computer {
        animation: csPartInRight 0.75s cubic-bezier(.22,.84,.24,1) 0.84s forwards, csFloatB 6.2s ease-in-out 2s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-chat {
        animation: csPartDrop 0.68s cubic-bezier(.2,1.08,.32,1) 1.02s forwards, csFloatA 5.4s ease-in-out 2.2s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-person {
        animation: csIconInLeft 0.62s cubic-bezier(.22,.84,.24,1) 1.16s forwards, csFloatB 6.1s ease-in-out 2.35s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-wrenc {
        animation: csIconInBottom 0.62s cubic-bezier(.22,.84,.24,1) 1.3s forwards, csFloatC 5.9s ease-in-out 2.45s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-icon-24\/7 {
        animation: csIconInRight 0.62s cubic-bezier(.22,.84,.24,1) 1.44s forwards, csFloatA 6.4s ease-in-out 2.55s infinite;
    }

    .cs-hero-svg-shell.is-active #cc-agent {
        animation: csAgentDrop 0.92s cubic-bezier(.2,1.18,.32,1) 1.68s forwards, csFloatC 5.8s ease-in-out 2.7s infinite;
    }

/* KEYFRAMES */
@keyframes csDeskReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 42px, 0) scale(0.92);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, -4px, 0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csPartInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-58px, -12px, 0) scale(0.82) rotate(-6deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

@keyframes csPartInRight {
    0% {
        opacity: 0;
        transform: translate3d(70px, -14px, 0) scale(0.82) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0);
    }
}

@keyframes csPartDrop {
    0% {
        opacity: 0;
        transform: translate3d(0, -54px, 0) scale(0.76);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, 6px, 0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csAgentDrop {
    0% {
        opacity: 0;
        transform: translate3d(0, -120px, 0) scale(0.84);
    }

    72% {
        opacity: 1;
        transform: translate3d(0, 10px, 0) scale(1.03);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-62px, -46px, 0) scale(0.7);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInBottom {
    0% {
        opacity: 0;
        transform: translate3d(28px, 42px, 0) scale(0.7);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csIconInRight {
    0% {
        opacity: 0;
        transform: translate3d(72px, -44px, 0) scale(0.7);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes csFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes csFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 6px, 0);
    }
}

@keyframes csFloatC {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -5px, 0);
    }
}

@media (max-width: 991.98px) {
    .cs-team-section {
        padding: 20px 0 72px;
    }

    .cs-hero-stage {
        min-height: 420px;
        border-radius: 28px;
    }

    .cs-hero-svg-shell,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-svg-shell > svg {
        max-width: 500px;
    }
}

@media (max-width: 767.98px) {
    .cs-team-copy h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .cs-hero-stage {
        min-height: 320px;
        padding: 16px 10px;
        border-radius: 24px;
    }

    .cs-hero-svg-shell,
    .cs-hero-svg-shell .cc-main-svg,
    .cs-hero-svg-shell > svg {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-hero-svg-shell #cc-desk,
    .cs-hero-svg-shell #cc-phone,
    .cs-hero-svg-shell #cc-computer,
    .cs-hero-svg-shell #cc-chat,
    .cs-hero-svg-shell #cc-icon-person,
    .cs-hero-svg-shell #cc-icon-wrenc,
    .cs-hero-svg-shell #cc-icon-24\/7,
    .cs-hero-svg-shell #cc-agent {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}