/* Modern Footer - Site ile Uyumlu */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #333;
    padding: 40px 0 25px 0;
    margin: 20px auto 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    z-index: -1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Remove big header */
.footer-header {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 20px;
    padding: 0 40px;
}

.footer-section {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    text-align: center;
}

.footer-section.company {
    background: none;
    border: none;
    padding: 0 20px;
    text-align: center;
}

.footer-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.footer-section h3 i {
    font-size: 18px;
    color: #667eea;
}

.footer-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.footer-section h4::after {
    display: none;
}

.footer-section p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

/* Simple social links */
.social-grid {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 0;
}

.social-item:hover {
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-item span {
    display: none;
}

.social-icon {
    width: auto;
    height: auto;
    font-size: 16px;
    color: inherit;
}

/* Simple navigation */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    transition: all 0.3s ease;
    display: block;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
    transform: translateX(4px);
}

.nav-links a::before {
    display: none;
}

/* Simple contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.contact-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card:hover {
    background: none;
    border: none;
    transform: none;
}

.contact-card i {
    color: #667eea;
    font-size: 14px;
    margin-bottom: 0;
    display: inline;
}

.contact-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* Simple download */
.download-section {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.download-section h4 {
    text-align: center;
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.download-btn i {
    font-size: 16px;
}

.download-btn::before {
    display: none;
}

/* Simple footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links-bottom a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
}

.footer-links-bottom a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0 15px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links-bottom {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .social-grid {
        justify-content: center;
    }
}
