/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Logo Column */
.footer-logo-col {
    grid-column: span 1;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.footer-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #34B0DC;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2a8eb3;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Links Columns */
.footer-links-col {
    grid-column: span 1;
}

.footer-links-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #343a40;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #34B0DC;
}

/* Newsletter Column */
.footer-newsletter-col {
    grid-column: span 1;
}

.footer-newsletter-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #343a40;
    font-weight: 600;
}

.footer-newsletter-col p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #34B0DC;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #34B0DC;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2a8eb3;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-methods img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-logo-col {
        grid-column: span 3;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo-col {
        grid-column: span 2;
    }
    
    .footer-newsletter-col {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links-col, 
    .footer-logo-col,
    .footer-newsletter-col {
        grid-column: span 1;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
} 