.main-footer-modern {
    background-color: #000;
    padding: 60px 0 30px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Arka plandaki şerit desen efekti */
.footer-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    pointer-events: none;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

/* TÜRSAB Alanı */
.tursab-box img {
    max-width: 280px;
    height: auto;
    border-radius: 8px;
}

/* İletişim Alanı */
.contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f-logo {
    width: 220px;
    margin-bottom: 25px;
}

.contact-links {
    margin-bottom: 25px;
}

.c-item {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.c-item:hover {
    color: var(--color-primary); /* Turuncu vurgun varsa */
}

.copyright {
    font-size: 13px;
    color: #888;
}

/* Adres Alanı */
.address-box {
    text-align: right;
}

.address-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-box address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    max-width: 350px;
    margin-left: auto;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .address-box {
        text-align: center;
    }
    .address-box address {
        margin: 0 auto;
    }
    .tursab-box img {
        max-width: 220px;
    }
}