.elementor-313 .elementor-element.elementor-element-ed33e3a{--display:flex;}.elementor-313 .elementor-element.elementor-element-ed33e3a:not(.elementor-motion-effects-element-type-background), .elementor-313 .elementor-element.elementor-element-ed33e3a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#111827;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-313 .elementor-element.elementor-element-ed33e3a{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-f676156 */:root {
    --bg-footer: #111827;            /* Koyu modern arka plan */
    --bg-footer-bottom: #0f172a;     /* Telif hakkı alanı için daha koyu ton */
    --color-text: #9ca3af;           /* Okunabilir gri metin rengi */
    --color-text-hover: #ffffff;     /* Üzerine gelindiğinde beyaz renk */
    --color-title: #f3f4f6;          /* Başlık renkleri */
    --color-accent: #2563eb;         /* Profesyonel mavi tonu */
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Footer Ana Gövde Yapısı */
.site-footer {
    background-color: var(--bg-footer);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-top: 60px;
    font-size: 15px;
    line-height: 1.6;
    width: 100%; /* Tam genişlik */
}

/* %100 Genişlik Ayarı ve İçeriklerin Dağılımı */
.footer-container {
    width: 100%;
    max-width: 100%; /* Üst sınırı kaldırarak %100 yaptık */
    padding: 0 40px; /* İçeriklerin ekranın en ucuna yapışmaması için güvenli iç boşluk */
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

/* Logo Ayarları */
.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-description {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Sosyal Medya İkon Alanı */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: var(--color-text-hover);
    transform: translateY(-3px);
}

/* Sütun Başlık Tasarımları */
.footer-title {
    color: var(--color-title);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: var(--color-accent);
}

/* Bağlantı Listeleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-text-hover);
    transform: translateX(6px);
}

/* Alt Telif Hakkı Şeridi Tasarımı */
.footer-bottom {
    background-color: var(--bg-footer-bottom);
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom-container {
    width: 100%;
    max-width: 100%; /* Alt şeridi de %100 genişlik yaptık */
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13.5px;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-bottom-links a:hover {
    color: var(--color-text-hover);
}

/* ==========================================================================
   Responsive Tasarım (Mobil ve Tablet Uyumluluğu)
   ========================================================================== */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px; /* Küçük ekranlarda kenar payını biraz azalttık */
    }
    .footer-bottom-container {
        padding: 0 30px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px; /* Mobilde kenar boşluğu */
    }

    .footer-title {
        margin-bottom: 18px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}/* End custom CSS */