/* Footer Component Styles */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    opacity: 0.3;
    z-index: 1;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #ffffff;
    opacity: 1;
}

.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: #ffffff;
    clip-path: polygon(
        0% 100%,
        5% 80%,
        10% 85%,
        15% 70%,
        20% 90%,
        25% 75%,
        30% 85%,
        35% 60%,
        40% 80%,
        45% 70%,
        50% 90%,
        55% 65%,
        60% 85%,
        65% 75%,
        70% 95%,
        75% 70%,
        80% 80%,
        85% 60%,
        90% 85%,
        95% 75%,
        100% 90%,
        100% 100%
    );
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fbbf24;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.social-link svg {
    fill: currentColor;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-item svg {
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span,
.contact-item a {
    color: #000000;
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: #1e3a8a;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cert-item {
    width: 80px;
    height: 50px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #1e3a8a;
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.copyright {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.copyright p {
    color: #000000;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 30px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .certifications {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding-top: 20px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .certifications {
        gap: 10px;
    }
    
    .cert-item {
        width: 70px;
        height: 45px;
    }
}

