:root {
    --footer-bg: linear-gradient(to bottom,
            #F3CE5E 0%,
            #F3CE5E 40%,
            #8B5E34 100%);
    --footer-text: #1A1A1A;
    --footer-heading: #004B49;
    --footer-link: #8B5E34;
    --footer-link-hover: #004B49;
    --footer-border: #8B5E34;
    --social-whatsapp: #25D366;
    --social-facebook: #3b5998;
    --social-instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 20px 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 200px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: var(--footer-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-col p,
.footer-col ul,
.footer-col li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
}

/* Sosyal ikonlar */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #EAE9FF;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
}

.social-icon.whatsapp {
    background-color: var(--social-whatsapp);
}

.social-icon.instagram {
    background: var(--social-instagram);
}

.social-icon.facebook {
    background-color: var(--social-facebook);
}

/* Footer alt yazı */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 75px;
    font-size: 14px;
    color: #333;
    border-top: 2px solid var(--footer-border);
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: -10px;
}

.footer-bottom a {
    color: #8BA4A4;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #D4A373;
}

.footer-bottom-left,
.footer-bottom-right {
    margin: 5px 0;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .social-icons a {
        margin-right: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
}