/* =========================================== */
/* Footer */
/* =========================================== */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 50px 40px;
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
}

.footer-col h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.contact-info i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary);
}

.address-group {
    display: flex;
    flex-direction: column;
}

.address-group strong {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.address-group span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.3);
    border-color: white;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Container for footer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.copyright p {
    margin-bottom: 10px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 30px 40px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 50px 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info li {
        align-items: flex-start;
    }
    
    .address-group strong {
        font-size: 0.85rem;
    }
    
    .address-group span {
        font-size: 0.85rem;
    }
}