/* FOOTER TASARIMI */
.footer-wrapper {
    background-color: #2b2b2b;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}
.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h1 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-col p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* İkon Barı */
.footer-icon-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}
.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 13px;
    gap: 10px;
    border-right: 1px solid #eee;
}
.icon-item:last-child { border-right: none; }

/* WhatsApp Buton */
.whatsapp-footer-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.wa-btn {
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Alt Bilgi */
.footer-bottom-text {
    text-align: center;
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-icon-bar { grid-template-columns: 1fr; gap: 15px; }
    .icon-item { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 10px; }
}