/* ======================================
   FOOTER CSS
   ====================================== */

/* Genel Renk Değişkenleri */
:root {
    --primary-color: #e60023;
    --secondary-color: #2c3e50;
}

/* ======================================
   FOOTER
   ====================================== */

.footer {
    background-color: var(--secondary-color);
    color: #ecf0f1;
    padding: 50px 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer .contact-info li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* ======================================
   RESPONSIVE - FOOTER
   ====================================== */

@media (max-width: 767px) {
    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer ul {
        margin-bottom: 30px;
    }

    .footer .contact-info li {
        justify-content: center;
    }
}
