/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #0a3d45 100%);
    color: var(--pure-white);
    padding: 4rem 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.social-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links 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(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bright-cyan-glow);
    transform: translateY(-3px);
}

.nav-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 0.8rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--bright-cyan-glow);
    padding-left: 5px;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--bright-cyan-glow);
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partners-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    filter: brightness(1.5);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   MOBILE RESPONSIVE FOOTER
   ======================================== */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1;
        padding-right: 0;
        text-align: left;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .brand-description {
        text-align: left;
    }
    
    .social-section {
        text-align: left;
    }
    
    .social-section h4 {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .nav-column {
        text-align: left;
    }
    
    .nav-column h4 {
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .partners-section {
        padding: 2rem 0;
    }
    
    .partners-title {
        font-size: 1.1rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 60px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .brand-description {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .nav-column h4 {
        font-size: 1rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .partners-title {
        font-size: 1rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 50px;
        gap: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
