/* ========== FOOTER ========== */
footer {
    background-color: #000;
    color: #fff;
    /* margin-top: 100px; */
}

/* Üst CTA */
.footer-cta {
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 1px solid #111;
}

.footer-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-cta p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

/* CTA Buton */
.footer-cta .btn-red {
    background-color: #e63946;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-cta .btn-red:hover {
    background-color: #ff4c4c;
}

/* Ana Footer Alanı */
.footer-main {
    padding: 80px 20px 60px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* Logo alanı */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Paragraf */
.footer-col p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sosyal Medya */
.footer-social a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s;

}

.footer-social a:hover {
    color: #e63946;
}

/* Başlık */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Linkler */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #e63946;
}

/* İletişim simgeleri */
.footer-col ul.contact li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col ul.contact i {
    color: #e63946;
    margin-right: 8px;
}

/* Alt Telif Alanı */
.footer-bottom {
    border-top: 1px solid #111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #999;
    text-align: center;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-cta h2 {
        font-size: 26px;
    }

    .footer-cta {
        padding: 60px 20px 40px;
    }

    .footer-container {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}