/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: visible !important;
    overflow-x: visible !important;
    max-width: none !important;
}

.footer-blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

/* Left section - Social media icons */
.footer-left {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

.footer-left a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.footer-left img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}

.footer-left a:hover {
    transform: scale(1.1);
}

.footer-left a:hover img {
    filter: brightness(0) invert(0.8);
}

/* Center section - App store badges */
.footer-center {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-center img {
    height: 40px;
    width: auto;
    transition: transform 0.2s;
}

.footer-center img:hover {
    transform: scale(1.05);
}

/* Right section - FAQ, Contact, Copyright */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-right p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-right a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-right a:hover {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    footer {
        padding: 1rem;
    }
    
    .footer-blocks {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        align-items: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-center {
        gap: 0.5rem;
    }
    
    .footer-center img {
        height: 35px;
    }
}





