/* Footer Styles */
.footer {
    background-color: #384a74;
    padding: 40px 0 20px;
    color: #fff;
    position: relative;
}

.footer-logo {
    max-width: 110px;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-brand-text {
    color: #8591A8;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-heading {
    color: #8591A8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    font-family: 'Afacad', sans-serif;
    padding-bottom: 8px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer-contact-icon {
    color: #00b050;
    font-size: 14px;
    margin-right: 12px;
    margin-top: 3px;
}

.footer-contact-text {
    color: #8591A8;
    font-size: 13px;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #8591A8;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

/* Okları kaldırıyoruz */
.footer-links a:before {
    display: none;
}

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

.footer-social {
    margin-top: 15px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: transparent;
    color: #fff;
    margin-right: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 15px;
}

.footer-social-link:hover {
    background-color: transparent;
    color: #00b050;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 30px;
}

.footer-copyright {
    color: #8591A8;
    font-size: 12px;
    text-align: left;
}

.footer-dev {
    text-align: right;
}

.footer-dev a {
    color: #8591A8;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-dev a:hover {
    color: #00b050;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-heading {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 15px;
    }
    
    .footer-bottom {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0 15px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .footer-contact-icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .footer-dev {
        text-align: center;
        margin-top: 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
} 