/* Footer Styles */
.footer {
    background: #111827;
    color: white;
    margin-top: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* First Section */
.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: white; /* CHANGED TO WHITE */
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: white; /* CHANGED TO WHITE */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-link:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
}

.footer-link:hover {
    color: white;
    transform: translateX(8px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

/* Last Section */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
}

/* Social Links - UPDATED */
.social-links {
    display: flex;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #374151;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 10px;
    background: transparent; /* ADDED: Transparent background */
}

/* REMOVED all brand-specific color classes */
/* .social-link.facebook { ... } REMOVED */
/* .social-link.twitter { ... } REMOVED */
/* .social-link.instagram { ... } REMOVED */
/* All other brand-specific classes REMOVED */

/* Hover effects - SIMPLIFIED */
.social-link:hover {
    color: white;
    background: #3b82f6; /* Blue background on hover */
    border-color: #3b82f6; /* Blue border on hover */
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* REMOVED all brand-specific hover effects */
/* .social-link.facebook:hover { ... } REMOVED */
/* .social-link.twitter:hover { ... } REMOVED */
/* All other brand-specific hover effects REMOVED */

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .contact-link {
        font-size: 14px;
    }
    
    .contact-icon {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .contact-link {
        font-size: 14px;
    }
    
    .contact-icon {
        font-size: 14px;
    }
    
    .social-link {
        margin: 0 6px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .copyright {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .copyright {
        text-align: left;
    }
}