.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    width: 100%;
}

.footer-widget h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #FF3600;
}

/* Logo & About Section */
.footer-about .footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-about .footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-about p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Links Section */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: #FF3600;
    padding-left: 5px;
}

.footer-links ul li a i {
    font-size: 12px;
}

/* Contact Info Section */
.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 54, 0, 0.1);
    color: #FF3600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.footer-contact .contact-item .info-text {
    flex-grow: 1;
}

.footer-contact .contact-item .info-text span {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-contact .contact-item .info-text p {
    color: #aaaaaa;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background: #111111;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    color: #777777;
    font-size: 14px;
    margin: 0;
}

.footer-bottom .copyright span {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom .developer {
    color: #777777;
    font-size: 14px;
}

.footer-bottom .developer a {
    color: #FF3600;
    text-decoration: none;
    font-weight: 600;
}

/* Reponsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Kolon Yapısı */
        gap: 30px;
        text-align: center;
    }

    /* Hakkımızda ve İletişim kısımları mobilde tam genişlik kalsın */
    .footer-about,
    .footer-contact {
        grid-column: span 2;
    }

    .footer-widget h4 {
        margin-bottom: 20px;
    }

    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        justify-content: center;
        /* Link ikonlarını ve metni ortala */
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .footer-contact h4,
    .footer-contact .contact-item:nth-of-type(1) {
        grid-column: span 2;
    }

    .footer-contact .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}