/* Footer Styles - Aksa Acoustic */
.main-footer {
    background: #021f7d;
    color: #ffffff;
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content - Sol ve Sağ Bölüm */
.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    align-items: flex-start;
    width: 100%;
}

/* Sol Taraf - Logo ve Açıklama */
.footer-left {
    flex: 0 0 350px;
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 0;
    display: block;
}

.company-description {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    text-align: justify;
    margin: 0;
}

/* Sağ Taraf - 3 Sütun */
.footer-right {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
    gap: 20px;
    align-items: start;
    margin-top: 10px;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffe000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffe000;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-locations-container {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
}

.contact-location {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #ffe000;
    margin-bottom: 0;
    min-height: 200px;
}

.location-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffe000;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    margin-right: 8px;
    font-size: 12px;
    width: 16px;
    flex-shrink: 0;
    display: inline-block;
}

.contact-item span:last-child {
    color: #ffffff;
    flex: 1;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffe000;
    text-decoration: underline;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link.facebook {
    background-color: #3b5998;
    color: #ffffff;
}

.social-link.twitter {
    background-color: #1da1f2;
    color: #ffffff;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-link.linkedin {
    background-color: #0077b5;
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    width: 100%;
}

.footer-bottom a {
    color: #ffe000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        max-width: 100%;
        text-align: center;
    }
    
    .company-description {
        text-align: left;
    }
    
    .footer-right {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-section {
        text-align: left;
    }
    
    .contact-locations-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .company-description {
        font-size: 10px;
        text-align: left;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom p {
        font-size: 9px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-left {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-social {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.footer-bottom {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Hover Effects */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #ffe000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-item {
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 1px 0;
    border-radius: 2px;
}

.contact-item:hover span:last-child {
    color: #ffe000;
}


/* Contact location hover effect */
.contact-location {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.contact-location:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}
