/* Logo Strip Styles */
.logo-strip {
    padding: 2rem 0;
    background: var(--mbdi-white);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.logo-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 1rem;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-strip {
        padding: 1.5rem 0;
    }

    .logo-strip-container {
        gap: 3rem;
    }

    .partner-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-strip-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .partner-logo {
        width: 60px;
        height: 60px;
    }
}

/* Footer Base Styles */
.footer {
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 4rem 2rem 2rem;
    position: relative;
}

/* Container Layout */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section Titles */
.footer-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--mbdi-yellow);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: var(--mbdi-yellow);
    padding-left: 0.5rem;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFFFFF;
}

.contact-icon {
    color: var(--mbdi-yellow);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social-link {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.2);
    color: var(--mbdi-blue-light);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFF;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        gap: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        width: 100px;
        height: 100px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-social-links {
        gap: 25px;
        justify-content: center;
        align-items: center;
    }
    
    .footer-social-link {
        font-size: 22px;
    }

    .footer-title {
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 80px;
        height: 80px;
    }
} 