/* ============================================================
   PARS OFFICIAL FOOTER - INDUSTRIAL DESIGN
   ============================================================ */
footer {
    background-color: var(--primary-black);
    color: #cecece;
    padding: 5rem 5% 2.5rem 5%;
    margin-top: var(--section-margin);
    border-top: 0.25rem solid var(--primary-orange);
    position: relative;
    z-index: 10;
}

footer .footer-container {
    display: grid;
    /* Masaüstü: Branding geniş, diğerleri dengeli */
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 87.5rem;
    /* 1400px */
    margin: 0 auto;
}

/* --- BRANDING --- */
footer .footer-container .footer-column .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

footer .footer-container .footer-column .footer-logo .p-square {
    background-color: var(--primary-orange);
    color: var(--primary-white);
    font-weight: 900;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
}

footer .footer-container .footer-column .footer-logo .brand-text {
    color: var(--primary-white);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

footer .footer-container .footer-column .footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 250px;
    color: #999;
}

/* --- HEADINGS --- */
footer .footer-container .footer-column h3 {
    color: var(--primary-white);
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    position: relative;
}

footer .footer-container .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

/* --- LINKS & ELEMENTS --- */
/* --- 1. LİSTE İÇİNDEKİ LİNK TASARIMI (.footer-links a) --- */
footer .footer-container .footer-column .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-container .footer-column .footer-links li {
    margin-bottom: 0.75rem;
}

footer .footer-container .footer-column .footer-links a {
    text-decoration: none;
    color: #999;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

footer .footer-container .footer-column .footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
    text-decoration: none;
}

/* --- 2. BAĞIMSIZ LİNK TASARIMI (.footer-link) --- */
footer .footer-container .footer-column .footer-link {
    text-decoration: none;
    color: #999;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

footer .footer-container .footer-column .footer-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
    text-decoration: none;
}

footer .footer-container .footer-column p {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.8rem;
}

footer .footer-container .footer-column .footer-link .footer-icon {
    color: var(--primary-orange);
    margin-right: 0.6rem;
    font-size: 0.8rem;
}

/* --- COPYRIGHT --- */
footer .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.8rem;
    border-top: 0.06rem solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

footer .footer-bottom p {
    font-size: 0.75rem;
    color: #666;
    display: block;
    /* Flex'i burada bozduk ki merkezlensin */
}

/* ============================================================
   RESPONSIVE FINE-TUNING (İnce Ayarlar)
   ============================================================ */

/* Tablet (iPad vb.) */
@media (max-width: 1024px) {
    footer .footer-container {
        grid-template-columns: 1fr 1fr;
        /* 2 sütuna düş */
        gap: 3rem;
    }
}

/* Mobil (Telefonlar) */
@media (max-width: 768px) {
    footer {
        padding: 4rem 10% 2rem 10%;
        text-align: center;
    }

    footer .footer-container {
        grid-template-columns: 1fr;
        /* Tek sütun */
        gap: 2.5rem;
    }

    footer .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
        /* Çizgiyi ortala */
    }

    footer .footer-tagline {
        max-width: 100%;
    }

    footer .footer-column p {
        justify-content: center;
        /* İkonlu yazıları ortala */
    }
}