.main-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #2C3E50;
}

.footer-logo {
    height: 60px; 
    width: auto;
    margin-bottom: 20px;
    display: block;

    filter: none; 
    background: transparent !important; 
}

.footer-col.about {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.about p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 20px;
}

.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 35px;
    height: 35px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}
.social-links a:hover { background: #2C3E50; transform: translateY(-3px); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.footer-links a:hover { color: #2C3E50; padding-left: 5px; }

.map-container {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
}

.footer-text-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    line-height: 1.2;
    border-left: 3px solid #2C3E50; /* Şık bir dikey çizgi */
    padding-left: 15px;
}

.footer-text-logo .title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    font-weight: 300;
}

.footer-text-logo .name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.footer-text-logo .sub-title {
    font-size: 12px;
    color: #2C3E50; /* Vurgu rengi */
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobil uyum için hizalama */
@media (max-width: 768px) {
    .footer-text-logo {
        align-items: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #2C3E50;
        padding-bottom: 15px;
        display: inline-flex;
    }
}