/* Footer Stilleri */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section:first-child {
    text-align: left;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3) {
    text-align: left;
    padding-left: 2rem;
}

.footer-section h3 {
    color: #009ee3;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section p i {
    margin-right: 10px;
    color: #009ee3;
    width: 16px;
}

/* Footer Logo Stilleri */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-logo-img {
        height: 60px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .footer-section:first-child p {
        text-align: center;
        margin: 0 auto;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-social a:nth-child(2):hover {
    color: #C13584;
}

.footer-social a.disabled {
    cursor: default;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}
