/* *****************************************************
   CUSTOM STYLESHEET – FINAL / STABLE
***************************************************** */

/* =====================================================
   SIX SERVICES
===================================================== */

#six-services {
    padding: 90px 0;
    background: #ffffff;
}

.six-section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.six-section-subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 55px;
}

.six-services-grid > div {
    margin-bottom: 40px;
}

.six-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 55px 50px;
    min-height: 240px;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.six-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.six-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 28px;
}

.bg-blue   { background: #3bc9f5; }
.bg-green  { background: #6fe3a1; }
.bg-purple { background: #c7b6f7; }
.bg-orange { background: #ffd166; }

/* =====================================================
   SIX FEATURES – STABLE LAYOUT
===================================================== */

#six-features {
    padding: 100px 0;
    background: #ffffff;
}

.six-section-divider {
    width: 250px;
    height: 2px;
    background: #dbe5ff;
    margin: 15px auto 60px;
}

/* WRAP – HER ŞEY AYNI HİZADA */
.six-features-wrap {
    display: flex;
    align-items: center;
}

/* LEFT CONTENT */
.six-feature-content {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    max-width: 520px;
    margin: 0 auto;
    transition: opacity .25s ease, transform .25s ease;
}

.six-feature-content.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.six-feature-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.six-feature-icon-title i {
    font-size: 28px;
    color: #2d7cff;
    margin-right: 15px;
}

/* =====================================================
   RIGHT SIDE – CENTER + VERTICAL BUTTONS
===================================================== */

.six-feature-orbit {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
}

/* CENTER IMAGE */
.six-feature-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    background: #f4f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.six-feature-center img {
    max-width: 90px;
}

/* FEATURE ITEMS – BASE */
.six-feature-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #555;
    font-size: 13px;
}

.six-feature-item i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #7c8db5;
    color: #fff;
    font-size: 18px;
    text-align: center;
    transition: background .25s ease, transform .25s ease;
}

.six-feature-item:hover i {
    transform: scale(1.08);
}

.six-feature-item.active i {
    background: #2d7cff;
}

/* =====================================================
   SAĞ TARAF – DİKEY HİZALI BUTONLAR
   🔥 SADE – NET – AYARLANABİLİR
===================================================== */

.pos-1 { transform: translate(140px, -120px); }
.pos-2 { transform: translate(140px,  -60px); }
.pos-3 { transform: translate(140px,    0px); }
.pos-4 { transform: translate(140px,   60px); }
.pos-5 { transform: translate(140px,  120px); }

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .six-features-wrap {
        display: block;
    }

    .six-feature-orbit {
        width: 100%;
        height: auto;
        text-align: center;
        margin-top: 50px;
    }

    .six-feature-center {
        position: relative;
        transform: none;
        margin: 0 auto 30px;
    }

    .six-feature-item {
        position: relative;
        transform: none !important;
        display: inline-flex;
        margin: 10px;
    }
}
/* =====================================================
   PARTNER SLIDER – FIXED SIZE + RENKLİ
===================================================== */

#partner-slider {
    padding: 60px 0;
    overflow: hidden;
}

.partner-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 70px;
    animation: partnerScroll 30s linear infinite;
}

/* Hover olunca akış dursun */
.partner-track-wrapper:hover .partner-track {
    animation-play-state: paused;
}

/* LOGO ITEM */
.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO IMAGE – ASIL KONTROL BURADA */
.partner-item img {
    max-height: 48px;        /* 🔥 BURASI BOYUT */
    max-width: 140px;
    width: auto;
    height: auto;

    filter: none !important;
    opacity: 1 !important;

    transition: transform .3s ease, filter .3s ease;
}

/* Hover büyütme */
.partner-item:hover img {
    transform: scale(1.15);
}

/* Animasyon */
@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* =====================================================
   PARTNER SLIDER TITLE – SAME AS "TÜM ÖZELLİKLER"
===================================================== */

.partner-title {
    font-size: 30px;          /* Tüm Özellikler ile aynı */
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

/* Alt çizgi */
.partner-title::after {
    content: "";
    display: block;
    width: 250px;             /* çizgi uzunluğu */
    height: 2px;
    background: #dbe5ff;
    margin: 15px auto 0;
}

/* Alt açıklama */
.partner-subtitle {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-top: 15px;
    margin-bottom: 45px;
}

/* =====================================================
   SIX CTA TEXT – HERO DESCRIPTION
===================================================== */

#six-cta .six-cta-text {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 20px;        /* 🔥 YAZI BOYUTU */
    line-height: 1.85;      /* 🔥 OKUNABİLİRLİK */
    color: #333;
    font-weight: 400;
}

/* =====================================================
   FOOTER – MODERN DARK (FINAL)
===================================================== */

#site-footer {
    background: linear-gradient(180deg, #0b1e32 0%, #081726 100%);
    padding: 80px 0;
    color: #cfd8e3;
    font-size: 14px;

    /* FULL WIDTH */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* GRID ALIGNMENT */
#site-footer .row {
    align-items: flex-start;
}

/* TITLES */
#site-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* TEXT */
#site-footer p {
    color: #cfd8e3;
    line-height: 1.8;
    max-width: 320px;
}

/* =====================================================
   CONTACT
===================================================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cfd8e3;
}

.footer-contact i {
    color: #ffffff;
    margin-top: 4px;
}

/* =====================================================
   LINKS
===================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* =====================================================
   SOCIAL
===================================================== */

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all .25s ease;
}

.footer-social a:hover {
    background: #2d7cff;
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER BOTTOM – COPYRIGHT
===================================================== */

.footer-bottom {
    background: #050f1a;
    padding: 16px 0;
    font-size: 13px;
    color: #9fb3c8;
    text-align: center;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    #site-footer {
        padding: 60px 0;
    }

    .footer-social {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 30px;
    }

    #site-footer p {
        max-width: 100%;
    }
}
/* ================================
   FOOTER BOTTOM GAP FIX (WHMCS)
================================ */

/* Sayfanın en altındaki boşluğu öldür */
html, body {
    margin: 0;
    padding: 0;
}

/* WHMCS ana içerik alt boşluğu */
#main-body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Footer sonrası hayali boşluk */
#site-footer {
    margin-bottom: 0 !important;
}

/* Footer alt bar sonrası ekstra alan varsa */
.footer-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 25px;
}

/* Bazı temalarda bu da yapar */
.main-content,
#content-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
