/** ================================
 *  🔹 RESET ALANI
 *  ================================ */

:root {
    --focus-outline: 3px solid Highlight;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}

/* HTML ve BODY */
html, body {
    height: 100%;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* BODY genel font ayarları */
body {
    font-family: var(--sb-font-body-family);
    font-weight: var(--sb-font-body-weight);
    font-style: var(--sb-font-body-style);
    font-size: var(--sb-font-body-size);
    line-height: var(--sb-font-body-line-height);
    letter-spacing: var(--sb-font-body-letter-spacing);
    color: var(--sb-font-body-color);
}

/* Başlık stilleri */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sb-font-heading-family);
    font-weight: var(--sb-font-heading-weight);
    font-style: var(--sb-font-heading-style);
    line-height: var(--sb-font-heading-line-height);
    letter-spacing: var(--sb-font-heading-letter-spacing);
    color: var(--sb-font-heading-color);
}

/** ================================
 *  🔹 GENEL STİLLER
 *  ================================ */

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;

    &:hover {
        color: var(--sb-general-color);
    }
}

img, picture, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button, input, select, textarea {
    font: inherit;
    margin: 0;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    appearance: none;
}

.w-3-rem {
    width: 3rem;
}

/** ================================
 *  🔹 FOCUS / ACCESSIBILITY
 *  ================================ */

:focus {
    outline: none;
    outline-offset: 2px;
}

.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: none !important; /* Bootstrap gölgesini kapat */
    outline: none; /* erişilebilir outline kalsın */
}

/** Placeholder / Disabled */
::placeholder {
    opacity: 1;
    color: #9aa0a6;
}

:disabled {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

/** ================================
 *  🔹 BUTTONLAR
 *  ================================ */

.btn-rs-1 {
    background: var(--sb-general-color);
    color: #fff;
    border: 0;
    font-weight: 600;
    text-transform: uppercase;
    &:hover {
        background: #222;
        color: #fff;
    }
}

.copy-right-logo {
    filter: brightness(0) invert(1);
}

/** ================================
 *  🔹 HEADER BAŞLANGIÇ
 *  ================================ */

.rs-top-bg {
    background: linear-gradient(166deg, #fff 20%, #e7decd 100%);
}

/* Menü yapısı */
#sb_nav {
    .nav-item {
        border-right: 1px solid #eee;
        padding: 0.3rem 1rem;

        &:last-child {
            border-right: none;
        }

        .nav-link {
            font-family: var(--sb-font-main-menu-family);
            font-weight: var(--sb-font-main-menu-weight);
            font-style: var(--sb-font-main-menu-style);
            font-size: var(--sb-font-main-menu-size);
            line-height: var(--sb-font-main-menu-line-height);
            letter-spacing: var(--sb-font-main-menu-letter-spacing);
            text-transform: var(--sb-font-main-menu-transform);
            color: var(--sb-font-main-menu-color);
            transition: all 0.3s ease;

            &:hover {
                color: #d4af37;
            }
        }
    }

    /* Dropdown stilleri */

    .dropdown {
        &:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            background: #fff;
            padding: 0;
            top: 45px;

            .nav-item {
                padding: 0px;
            }

            .nav-link {
                font-family: var(--sb-font-sub-menu-family);
                font-weight: var(--sb-font-sub-menu-weight);
                font-style: var(--sb-font-sub-menu-style);
                font-size: var(--sb-font-sub-menu-size);
                line-height: var(--sb-font-sub-menu-line-height);
                letter-spacing: var(--sb-font-sub-menu-letter-spacing);
                text-transform: var(--sb-font-sub-menu-transform);
                color: var(--sb-font-sub-menu-color);

                &:hover {
                    background: var(--sb-general-color);
                    color: #fff !important;
                }
            }
        }
    }
}

/** 🔹 HEADER BİTİŞ **/

/** ================================
 *  🔹 SLIDER BÖLÜMÜ BAŞLANGIÇ
 *  ================================ */

#banner-slider {
    position: relative;
    .swiper-slide {
        display: flex;
        align-items: center;
        overflow: hidden;
        img {
            position: relative;
            z-index: 0;
        }

        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: rgba(184, 134, 11, 0.8);
            background-size: 600% 100%;
            z-index: 1;
        }
    }

    .sb-slider-content {
        z-index: 2;
        padding-left: 4rem;
        .sb-slider-slogan {
            font-family: var(--sb-font-slogan-family);
            font-weight: var(--sb-font-slogan-weight);
            font-style: var(--sb-font-slogan-style);
            font-size: var(--sb-font-slogan-size);
            line-height: var(--sb-font-slogan-line-height);
            letter-spacing: var(--sb-font-slogan-letter-spacing);
            color: var(--sb-font-slogan-color);
            background-color: #fff;
            text-align: center;
            padding: 0.25rem 2rem;
            border-radius: 15px 0;
            width: max-content;
        }

        .sb-slider-desc {
            color: #fff;
        }

    }

    .sb-w-slider {
        width: 35%;
    }

    .sb-slider-title {
        font-size: clamp(1.6rem, 5vw, 3rem);
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1;

        @media (max-width: 991px) {
            font-size: 2.2rem;
        }
        @media (max-width: 767px) {
            font-size: 1.6rem;
        }
    }

    .swiper-pagination-bullet {
        background-color: #fff;
        opacity: 1;
        width: 1rem;
        border-radius: 5px;

        & -active {
            background-color: var(--sb-general-color);
            width: 4rem;
        }
    }
}

/* Animasyon */
@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/** 🔹 SLIDER BÖLÜMÜ BİTİŞ **/

/** ================================
 *  🔹 BREADCRUMB
 *  ================================ */

.breadcrumb {
    .breadcrumb-item + .breadcrumb-item::before {
        content: "\f285";
        font-family: "bootstrap-icons";
        font-size: 0.8rem;
        color: #fff;
        position: relative;
        top: 3px;
    }
}

/** ================================
 *  🔹 NAVBAR DROPDOWN (GENEL .navbar-nav)
 *  ================================ */

.navbar-nav {
    .dropdown-toggle {
        &::after {
            content: "\F282";
            font-family: bootstrap-icons !important;
            border: 0;
            vertical-align: middle;
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }
    }

    .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Hover ile açılan menü */

    .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        background: #fff;
        border-radius: 0;
        padding: 0;
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
        top: 45px;
        left: 0;

        .nav-link {
            font-family: var(--sb-font-sub-menu-family);
            font-weight: var(--sb-font-sub-menu-weight);
            font-style: var(--sb-font-sub-menu-style);
            font-size: var(--sb-font-sub-menu-size);
            line-height: var(--sb-font-sub-menu-line-height);
            letter-spacing: var(--sb-font-sub-menu-letter-spacing);
            text-transform: var(--sb-font-sub-menu-transform);
            color: var(--sb-font-sub-menu-color);
            padding: 7px 10px;
            border-bottom: 1px solid #eee;
            transition: all 0.2s ease;

            &:hover {
                background: var(--sb-general-color);
                color: #fff !important;
                font-weight: 700;
            }
        }
    }
}

/** ================================
 *  🔹 UTILITIES
 *  ================================ */

/* Gold gradient */
.rs-bg-g-1 {
    background: var(--sb-general-color);
}

/* Site brand gradient */
.sb-bg-g-1 {
    background: var(--sb-general-color);
}

/* Metin için altın gradyan */
.text-rs-1 {
    background: var(--sb-general-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#service-list .card-header img {
    z-index: 99;
    position: relative;
    border: 1px solid #fff;
}

.card-header {
    border:0px !important;
}

#service-list .card-header:after {
    content: '';
    left: 0;
    right: 0;
    top: 0;
    background: var(--sb-general-color);
    position: absolute;
    height: 75%;
    width: 100%;
}

#service-list .card-title {
    text-align: center;
}

#service-list .card .card-header img {
    object-fit: cover;
}

#service-list .card:hover {
    background: var(--sb-general-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

#service-list .card:hover .card-title {
    -webkit-text-fill-color: #fff;
}

#social_media a:hover {
    background: var(--sb-general-color);
}

#social_media a:hover i {
    color: #fff;
}

.offcanvas {
    z-index: 99999 !important;
}


.bg-danger, .btn-danger {
    background: var(--sb-general-color) !important;
    border: transparent !important;
}


.heading-wrap {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
}

.heading-wrap h1 {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(180deg, transparent 60%, var(--sb-general-color) 60%);
    display: inline;
    padding: 0 15px;
}

.heading-wrap p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    max-width: 870px;
    margin: 0 auto;
    margin-top: 12px;
}

.card-footer p {
    margin-bottom: 0px;
}

.card-footer, .card-header, .card-body {
    border: none;
}

.bg-theme-1 {
    background-color: var(--sb-general-color);
    color: #fff;
    font-weight: 700;
}

.bg-theme-2 {
    background-color: var(--sb-second-color);
}

.bg-theme-1:hover {
   opacity: .7;
    background-color: var(--sb-second-color);
    color: #fff;
}.sb_header_3, .sb_header_2{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.sb_header_2 {
    padding: .65rem 2rem;
}
.sb_header_3 {
    width: 100%;
    position: absolute;
    z-index: 99;
    padding: 1rem 2rem;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.63) 70%,
            rgba(0, 0, 0, 0) 100%
    );
}

.sb_header_3 .nav-item {
    border-right: 1px solid transparent !important;
}

.sb_header_3 #social_media a {
    color: #ddd;
}

.sb_header_3 #sb_nav .nav-link {
    color: #fff;
}

.sb_header_3 .nav-item {
    border-right: transparent;
}

header ul li {
    list-style: none;
}.sb-footer-1 {
    background: #333;
}

/*FOOTER 2 KODLARI*/
.mega-footer {
    background: var(--sb-footer-background-color);
    font-size: 1rem;
    border-top: 1px solid var(--sb-footer-background-color);
}

.footer-left {
    background: var(--sb-footer-left-background-color);
    padding: 60px 50px;
}

.footer-right {
    padding: 60px 70px;
    background-image: url(../images/pattern.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #333;
}

.footer-right h6 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--sb-footer-title-text-color);
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

.footer-menu h6 {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    padding-left: 15px;
}

.footer-menu h6:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--sb-general-color);
}

.store-item {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    border-left: 5px solid var(--sb-general-color);
}

.store-item:hover {
   background-color: var(--sb-general-color);
    border-left: 5px solid var(--sb-second-color);
}

.store-item:hover img {
    filter: brightness(0) invert(1);
}

.store-item img {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}#banner-slider .swiper-pagination-bullet-active {
    background-color: var(--sb-general-color);
    opacity: 1;
    width: 3rem;
    border-radius: 5px;
}

.sb-dot-slider .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.sb-dot-slider .swiper-pagination-bullet-active {
    background-color: var(--sb-general-color);
    opacity: 1;
    width: 3rem;
    border-radius: 5px;
}

.swiper-slide {
    position: relative;
}

.sb-post-slider-content:after {
    background: linear-gradient(0deg, #000, rgba(0, 0, 0, .9) 20%, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
}

.swiper-slide h3 {
    position: absolute;
    left: 20px;
    bottom: 30px;
    font-size: 2rem;
    z-index: 99;
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 32px;
    height: 32px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}


.sb-numeric-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sb-numeric-slider .swiper-pagination-bullet {
    width: 100%;
    border-radius: 0px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    background-color: #000000;
    border-right: 1px solid #23262D;
    border-top: 1px solid #23262D;
    letter-spacing: -1px;
    font-weight: 600;
    margin: 0px !important;
    color: #fff;
    opacity: 1;
}

.sb-numeric-slider .swiper-pagination-bullet-active {
    background: var(--sb-general-color);
}

.sb-numeric-slider .swiper-pagination-bullet:last-child {
    border-right: 0px;
}

.sb-numeric-slider .swiper-horizontal > .sb-numeric-slider .swiper-pagination-bullets .sb-numeric-slider .swiper-pagination-bullet,
.sb-numeric-slider .sb-numeric-slider .swiper-pagination-horizontal.swiper-pagination-bullets .sb-numeric-slider .swiper-pagination-bullet {
    margin: 0px;
}

/*THUMB SLİDER*/
.sb-main-slider .swiper-wrapper {
    height: 500px;
}

.sb-thumb-slider {
    padding-bottom: 0px;
    padding-top: 20px;
}

.sb-thumb-slider {
    padding: 10px;
    background-color: #000;
    border-top: 1px dashed #333;
}

.sb-thumb-slider .swiper-slide img, .sb-thumb-slider .swiper-slide {
    height: 3rem;
    width: 100%;
    opacity: 0.4;
    border-radius: 2px;
    cursor: pointer;
    background-color: #23262D;
    object-fit: cover;
}

.sb-thumb-slider .swiper-slide {
    opacity: 1;
    border-radius: 8px;
}

.sb-thumb-slider .swiper-slide-thumb-active img {
    opacity: 1;
    border: 2px solid var(--sb-general-color);

}
.sb-faq {
    padding: clamp(20px, 5vw, 80px);
    position: relative;
    border-radius: 20px;
    background-color: #F6F4E8;
}

.sb-faq .image img {
    border-radius: 20px;
}

.sb-faq .title {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--sb-general-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body p {
    margin-bottom: 0px;
}.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -100px);
    opacity: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 14px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.support-container {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support-trigger {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    z-index: 1000;
}

.support-trigger:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #2563eb, #4338ca);
}

.support-trigger:active {
    transform: scale(0.95);
}

.trigger-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6, #3b82f6);
    background-size: 200% 200%;
    filter: blur(14px);
    opacity: 0.6;
    animation: glow-anim 8s linear infinite;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.support-trigger:hover .trigger-glow {
    opacity: 1;
}

.support-trigger i {
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: absolute;
}

.support-trigger .icon-open {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.support-trigger .icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    font-size: 28px;
}

.support-container.active .support-trigger .icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.support-container.active .support-trigger .icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.trigger-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    border: 2px solid #0f172a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

.support-widget {
    position: absolute;
    bottom: 88px;
    right: 0;
    width: 360px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.support-container.active .support-widget {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.widget-header {
    position: relative;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.header-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.avatar-container {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    padding: 2px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.online-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: #10b981;
    border: 2px solid #0f172a;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.header-info {
    display: flex;
    flex-direction: column;
}

.header-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.header-subtitle {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1;
}

.header-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    width: fit-content;
}

.online-dot-small {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #34d399;
}

.widget-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: -8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.channel-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

.channel-btn.whatsapp::before {
    background-color: #10b981;
}

.channel-btn.phone::before {
    background-color: #2563eb;
}

.channel-btn.mail::before {
    background-color: #8b5cf6;
}

.channel-btn:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.channel-btn.whatsapp:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(13, 148, 136, 0.15));
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.channel-btn.phone:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(79, 70, 229, 0.15));
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.channel-btn.mail:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.15));
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.channel-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.channel-btn.whatsapp .channel-icon {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.channel-btn.phone .channel-icon {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.channel-btn.mail .channel-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.channel-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.channel-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.channel-sub {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1;
}

.channel-arrow {
    color: #94a3b8;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.channel-btn:hover .channel-arrow {
    transform: translateX(4px);
    color: #ffffff;
}

.widget-footer {
    padding: 8px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
}

.footer-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-weight: 600;
}

.footer-secure i {
    color: #10b981;
    font-size: 13px;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes glow-anim {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}/* XS: Extra small (varsayılan) */
@media (max-width: 575.98px) {
    /* 0 - 575px arası */
}

/* SM: Small */
@media (min-width: 276px) and (max-width: 767.98px) {

    .sb-slider-desc {
        display: none;
    }

    .sb-slider-btn {
        justify-content: center;
        margin-top: 1rem;
    }

    header #social_media {
        display: none !important;
    }

    .sb_header_2, .sb_header_3, .footer-left {
        padding: 1rem;
    }

    .footer-right {
        padding: 3rem 1rem;
    }

    /*** SLİDER **  */
    #banner-slider .sb-w-slider {
        width: 100%;
        padding: 1.3rem;
        bottom: 10px;
        text-align: center;
    }

    /*** SLİDER END **  */
    .btn {
        padding: 5px 7px;
        font-size: .775rem;
        letter-spacing: .5px;
    }

    #floating_contact, #floating_contact .contact_btn {
        width: 100%;
        border-radius: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
    }

    #floating_contact .contact_btn {
        height: 65px;
    }

    #contact_form_panel.active {
        right: 0px;
        left: 0px;
        width: 100%;
        bottom: 75px;
    }

    #service-list .card .card-header img {
        height: 8rem;
    }

    #service-list .card-title {
        font-size: 1rem;
    }

    #banner-slider {
        & .swiper-slide {
            img {
                object-fit: cover;
                height: 22rem;
            }
        }
    }

    .footer-menu {
        margin-bottom: 1.5rem;
    }

    .left {
        text-align: center;
    }

    .p-4 {
        padding: 1rem !important;
    }

    p {
        font-size: .85rem !important;
        line-height: 1.3;
    }
}

/* MD: Medium */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* 768px - 991px arası */
    #service-list .card .card-header img {
        height: 10rem;
    }

    #banner-slider .sb-w-slider {
        width: 75%;
    }
}

/* LG: Large */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* 992px - 1199px arası */
    #service-list .card .card-header img {
        height: 12rem;
    }
}

/* XL: Extra large */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* 1200px - 1399px arası */
    #service-list .card .card-header img {
        height: 15rem;
    }

    #banner-slider .sb-w-slider {
        width: 70%;
        text-align: center;
    }
}

/* XXL: Extra extra large */
@media (min-width: 1400px) {
    /* 1400px ve üzeri */
    #service-list .card .card-header img {
        height: 18rem;
    }
}
