/* Footer Styles */
.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    display: none;
}

.footer-section ul li:hover {
    padding-left: 8px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-footer .social-icons a {
    background-color: #2c2c54;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.footer-section i {
    margin-right: 0.5rem;
    color: #7c3aed;
    width: 20px;
    text-align: center;
}

.footer-section a i {
    margin-right: 0;
}

.footer-section a[href^="mailto:"],
.footer-section a[href^="tel:"] {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    background-color: #0f172a;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        padding: 0 1.5rem 2.5rem;
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
/* Add these styles to your existing footer styles */
.contact-column {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-icons {
    justify-content: flex-end;
    margin-left: auto;
}

/* Adjust the logo column to take more space */
.logo-column {
    flex: 2;
    max-width: 500px;
}

/* Ensure social icons stay in one line */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}
