/* Footer Styles - 3E Makina */

footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-info-item i {
    margin-top: 5px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    display: block;
}

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

.footer-contact .contact-item span {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.footer-contact .contact-item svg {
    width: 100%;
    height: 100%;
    fill: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Products Scrolling Banner */
.products-scroll-banner {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    overflow: hidden;
    white-space: nowrap;
}

.scroll-items {
    display: inline-flex;
    animation: scroll-banner 60s linear infinite;
    gap: 40px;
    will-change: transform;
}

.scroll-items:hover {
    animation-play-state: paused;
}

.scroll-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: transparent;
    border-radius: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
}

.scroll-item:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.scroll-item::before {
    content: "•";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-company-name {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 20px 0 40px; /* Soldan 20px ekstra margin */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a svg {
        width: 20px;
        height: 20px;
    }
    
    .products-scroll-banner {
        padding: 12px 0;
    }
    
    .scroll-item {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .scroll-items {
        gap: 30px;
        animation-duration: 50s;
    }
}

@media (max-width: 480px) {
    .products-scroll-banner {
        padding: 10px 0;
    }
    
    .scroll-item {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .scroll-items {
        gap: 25px;
        animation-duration: 40s;
    }
}

