/**
 * Sade Footer Tasarımı - Görseldeki gibi
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===============================================
   Sade Footer
   =============================================== */
.modern-footer {
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    margin-top: 4rem;
}

/* Üst Footer - Logo, Menü, CTA */
.modern-footer-top {
    padding: 2rem 0;
    border-bottom: 1px solid #F5F5F5;
}

.modern-footer-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.modern-footer-logo {
    flex-shrink: 0;
}

.modern-footer-logo-link {
    text-decoration: none;
}

.modern-footer-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
    line-height: 1;
    transition: opacity 0.15s ease;
}

.modern-footer-logo-text:hover {
    opacity: 0.7;
}

.modern-footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.modern-footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer-menu li {
    margin: 0;
    padding: 0;
}

.modern-footer-menu a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: color 0.15s ease;
}

.modern-footer-menu a:hover {
    color: #000000;
}

.modern-footer-cta {
    flex-shrink: 0;
}

.modern-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #06D6A0;
    color: #FFFFFF;
    border: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.modern-footer-cta-btn:hover {
    background: #05B88A;
}

/* Alt Footer - Hizmetlerimiz */
.modern-footer-bottom {
    padding: 3rem 0;
}

.modern-footer-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-footer-services {
    margin-bottom: 2rem;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.modern-services-column {
    margin: 0;
    padding: 0;
}

.modern-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-services-list li {
    margin-bottom: 0.75rem;
    padding: 0;
}

.modern-services-list a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: color 0.15s ease;
    line-height: 1.5;
}

.modern-services-list a:hover {
    color: #000000;
}

/* Bizi Tanıyın */
.modern-footer-about {
    margin-bottom: 2rem;
}

.modern-footer-about-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
}

.modern-footer-social {
    margin-top: 1.5rem;
}

.modern-social-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-social-list li {
    margin: 0;
    padding: 0;
}

.modern-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 0.875rem;
}

.modern-social-list a:hover {
    background: #F9F9F9;
    border-color: #000000;
}

/* Copyright */
.modern-footer-copyright {
    padding: 1.5rem 0;
    border-top: 1px solid #F5F5F5;
    background: #FAFAFA;
}

.modern-copyright-text {
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #666666;
}

/* Responsive */
@media (max-width: 991px) {
    .modern-footer-top-content {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .modern-footer-nav {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .modern-footer-menu {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .modern-footer-cta {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .modern-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modern-footer-top-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-footer-nav {
        width: 100%;
    }

    .modern-footer-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

