/* ==========================================================================
   Footer stilleri
   footer.php'deki inline <style> bloğundan taşınmıştır.
   ========================================================================== */

#footer {
    background: #222b2d;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.footer-column {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.footer-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.footer-menu-list a:hover {
    opacity: 1;
}

.newsletter p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.newsletter p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

.newsletter-desc p {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    padding-right: 0;
}

.newsletter-form .wpcf7-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 15px;
    color: #fff;
    flex: 1;
}

.newsletter-form input[type="submit"] {
    background: #fff;
    color: #222b2d;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
    opacity: 0.9;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social a {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-social img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 20px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-column:not(:last-child) {
        border-right: none;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form .wpcf7-form {
        flex-direction: column;
    }
}