/* Footer Styles */
:root {
    --footer-bg: #0F172A;
    --footer-text: #ffffff;
    --footer-link: #94A3B8;
    --footer-hover: #ffffff;
    --footer-accent: #3B82F6;
}

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-about {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    color: var(--footer-text);
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
}

/* Section Titles */
.footer-title {
    color: var(--footer-text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    font-size: 18px;
    color: var(--footer-accent);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: var(--footer-link);
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--footer-accent);
    margin-right: 12px;
    margin-top: 4px;
    width: 16px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: var(--footer-accent);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--footer-link);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--footer-link);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-hover);
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-media {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
} 