/* Sabit iletişim paneli — sağ alt köşe, kare aç/kapa, varsayılan açık */
.site-fab {
    --site-fab-toggle: 56px;
    --site-fab-width: 80px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9990;
    pointer-events: none;
}
.site-fab__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}
.site-fab__wrap > * {
    pointer-events: auto;
}
.site-fab__panel {
    width: var(--site-fab-width);
    max-height: 560px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.22s ease;
}
.site-fab--open .site-fab__panel {
    overflow: visible;
}
.site-fab--collapsed .site-fab__panel {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}
.site-fab__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: var(--site-fab-width);
    padding: 12px 0 6px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-right: none;
    border-bottom: none;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}
.site-fab__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--site-fab-toggle);
    height: var(--site-fab-toggle);
    min-width: var(--site-fab-toggle);
    min-height: var(--site-fab-toggle);
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: #192273;
    color: #fff;
    cursor: pointer;
    box-shadow: -4px 0 20px rgba(25, 34, 115, 0.22);
    transition: background 0.2s ease;
}
.site-fab__toggle:hover {
    background: #151d65;
}
.site-fab__toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -3px;
}
.site-fab__toggle .site-fab__toggle-ico {
    font-size: 20px;
    line-height: 1;
}
.site-fab--open .site-fab__toggle-ico--closed {
    display: none;
}
.site-fab--collapsed .site-fab__toggle-ico--open {
    display: none;
}
/* Font Awesome — panel içinde ikonların görünmesi */
.site-fab .fa-solid {
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.site-fab .fa-brands {
    font-family: "Font Awesome 7 Brands", "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}
.site-fab .fa-solid,
.site-fab .fa-brands {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.site-fab .fa-solid::before,
.site-fab .fa-brands::before {
    display: inline-block;
}
.site-fab__title {
    margin: 0 0 6px;
    padding: 0 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #888;
    line-height: 1.2;
}
.site-fab__title--social {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #ececec;
}
.site-fab__group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0 8px;
}
.site-fab__group--social {
    flex-direction: column;
    gap: 6px;
    padding: 0 8px 4px;
}
.site-fab__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    min-height: 48px;
    padding: 6px 4px;
    border: 1px solid #e4e4e4;
    background: #fafafa;
    color: #333 !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.site-fab__group--social .site-fab__btn {
    min-height: 44px;
    height: auto;
    padding: 0;
}
.site-fab__btn:hover {
    border-color: #192273;
    background: #fff;
    color: #192273 !important;
    box-shadow: 0 4px 12px rgba(25, 34, 115, 0.12);
}
.site-fab__icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    width: 1.25em;
    text-align: center;
}
.site-fab__group--social .site-fab__icon {
    font-size: 17px;
}
.site-fab__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-fab__btn--tel {
    background: #192273;
    border-color: #192273;
    color: #fff !important;
}
.site-fab__btn--tel:hover {
    background: #151d65;
    border-color: #151d65;
    color: #fff !important;
}
.site-fab__btn--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff !important;
}
.site-fab__btn--wa:hover {
    background: #1fb855;
    border-color: #1fb855;
    color: #fff !important;
}
.site-fab__btn--ig:hover,
.site-fab__btn--yt:hover,
.site-fab__btn--in:hover,
.site-fab__btn--x:hover {
    color: #192273 !important;
}
body:has(.site-fab--collapsed) .progress-wrap.active-progress {
    right: 64px;
    bottom: 14px;
}
body:has(.site-fab--open) .progress-wrap.active-progress {
    right: 88px;
    bottom: calc(var(--site-fab-toggle) + 320px);
}
@media (max-width: 767.98px) {
    .site-fab {
        --site-fab-toggle: 52px;
        --site-fab-width: 76px;
    }
    .site-fab__btn {
        min-height: 44px;
        font-size: 9px;
    }
    .site-fab__group--social .site-fab__btn {
        min-height: 40px;
    }
    body:has(.site-fab--open) .progress-wrap.active-progress {
        bottom: calc(var(--site-fab-toggle) + 300px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .site-fab__panel,
    .site-fab__btn,
    .site-fab__toggle {
        transition: none;
    }
}
