/* Footer Tasarımı */
.footer {
    background-color: var(--secondary); /* index.css'ten gelen koyu lacivert renk */
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary); /* İnce çizgi efekti */
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px; /* Hover anında sağa kayma efekti */
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
}

.social-icons a:hover {
    background: var(--primary);
    padding-left: 15px; /* linklerdeki genel kaymayı eziyoruz */
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}