/* css/style.css - Footer stilleri */

/* MAV力 FOOTER ST力LLER力 */
footer {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

footer h5 {
    color: #ffd700 !important;
    font-weight: bold;
    margin-bottom: 20px;
}

footer .social-links .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    transition: all 0.3s;
}

footer .social-links .btn:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #0066cc;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

footer ul li a:hover {
    opacity: 1;
    color: #ffd700;
    padding-left: 5px;
}

footer .contact-info .d-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

footer .contact-info i {
    color: #ffd700;
    font-size: 1.1rem;
}

footer .map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    margin-top: 30px;
}

footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    footer .col-md-4 {
        margin-bottom: 30px;
    }
    /* ===== YENİ FOOTER STİLLERİ ===== */
footer {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: white;
    padding: 70px 0 20px;
    margin-top: 80px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Footer dalga efekti */
footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066cc" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h5 {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ffd700;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: #ffd700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: #ffd700;
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    color: #0066cc !important;
}

.contact-icon i {
    color: #ffd700 !important;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-text {
    flex: 1;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #ffd700;
    color: #0066cc;
    transform: translateY(-3px);
}

.newsletter-box {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-box h6 {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffd700;
}

.newsletter-btn {
    padding: 12px 20px;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #0066cc;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
    margin-top: 30px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    filter: grayscale(30%);
    transition: all 0.3s;
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.copyright a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-widget { text-align: center; }
    .footer-widget h5::after { left: 50%; transform: translateX(-50%); }
    .contact-item { justify-content: center; }
    .social-links { justify-content: center; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { width: 100%; }
}