/* Footer Section */
.footer-section {
    background: #1a202c;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.footer-container {
    position: relative;
    z-index: 10;
}

/* Main Footer Content */
.footer-content {
    padding: 4rem 0 5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

/* Company Info */
.company-info {
    max-width: 400px;
}

.company-header {
    margin-bottom: 1.5rem;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.company-subtitle {
    font-size: 1.1rem;
    color: #cbd5e0;
    font-weight: 600;
}

.company-description {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1rem;
}

/* Footer Links */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-link i {
    font-size: 0.8rem;
    color: var(--primary-orange);
}

/* Contact Info */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details p {
    color: #cbd5e0;
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--white);
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid #2d3748;
    padding: 1.5rem 0;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-link {
    color: #718096;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .company-info {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}