/* ============================================
   BEVELLA MACRAME - FOOTER COMPONENT
   Premium kurumsal footer
   ============================================ */

.footer {
    background: var(--color-primary);
    color: var(--text-light);
}

/* === ÜST FOOTER === */
.footer__top {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
}

/* === MARKA BÖLÜMÜ === */
.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.footer__logo img {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer__description {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Sosyal medya */
.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    border-color: var(--color-secondary);
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    stroke: var(--text-light);
    color: var(--text-light);
}

/* === LİNK SÜTUNLARI === */
.footer__column h4 {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__link:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.footer__link:hover svg {
    opacity: 1;
}

/* === İLETİŞİM BİLGİLERİ === */
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer__contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-secondary);
    fill: none;
    stroke-width: 2;
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__contact-label {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__contact-value {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.9);
}

.footer__contact-value a {
    color: inherit;
    transition: color var(--transition-base);
}

.footer__contact-value a:hover {
    color: var(--color-secondary);
}

/* === ALT FOOTER === */
.footer__bottom {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer__copyright {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__legal-link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-base);
}

.footer__legal-link:hover {
    color: var(--color-secondary);
}

/* === RESPONSİVE === */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        grid-column: span 1;
    }

    .footer__column {
        padding: var(--space-lg) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__column:last-child {
        border-bottom: none;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__bottom-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
}
