/* ===== FOOTER STYLES ===== */
#oppago-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #F8BD13;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 0 15px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: -35px;
}

.footer-logo .tagline {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-btn.tiktok {
    background-color: #000000;
}

.social-btn.tiktok:hover {
    background-color: #25F4EE;
    color: #000;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.3rem;
    color: #F8BD13;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #F8BD13;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #F8BD13;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: #F8BD13;
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #ddd;
}

.contact-info i {
    color: #F8BD13;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info span {
    line-height: 1.6;
}

/* Opening Hours */
.opening-hours {
    list-style: none;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.opening-hours li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.opening-hours .day {
    color: #ddd;
    font-weight: 500;
}

.opening-hours .time {
    color: #aaa;
}

.opening-hours .closed {
    color: #F8BD13;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links-bottom a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #F8BD13;
}

.footer-links-bottom span {
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Responsive Design for MOBILE ONLY */
@media (max-width: 768px) {
    .footer-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    #oppago-footer {
        padding: 40px 0 20px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    .footer-section {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Fix logo on mobile */
    .footer-logo {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo img {
        max-width: 180px;
        width: auto;
        height: auto;
        margin-bottom: -10px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Fix description overflow on mobile */
    .footer-description {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
        margin-bottom: 25px;
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center;
        box-sizing: border-box;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    /* Fix opening hours on mobile */
    .opening-hours {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .opening-hours li {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0 5px 15px;
        box-sizing: border-box;
        gap: 10px;
    }
    
    .opening-hours .day {
        width: 50%;
        flex-shrink: 1;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .opening-hours .time {
        width: 50%;
        text-align: right;
        flex-shrink: 1;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    /* Fix contact info on mobile */
    .contact-info {
        width: 100%;
        padding: 0 5px;
        margin: 0;
    }
    
    .contact-info li {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
        box-sizing: border-box;
        word-break: break-word;
    }
    
    .contact-info span {
        width: calc(100% - 30px);
        line-height: 1.5;
        overflow-wrap: break-word;
    }
    
    /* Fix social buttons on mobile */
    .social-buttons {
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding: 0;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    /* Fix footer links on mobile */
    .footer-links {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        width: 100%;
        text-align: center;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .footer-links a {
        justify-content: center;
        padding: 5px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure headings don't overflow */
    .footer-heading {
        font-size: 1.2rem;
        text-align: center;
        padding: 0 10px 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Extra safety for very small screens */
    @media (max-width: 380px) {
        .footer-container {
            padding: 0 10px;
        }
        
        .footer-description {
            font-size: 0.9rem;
            padding: 0;
        }
        
        .opening-hours li {
            flex-direction: column;
            text-align: center;
            gap: 5px;
        }
        
        .opening-hours .day,
        .opening-hours .time {
            width: 100%;
            text-align: center;
        }
        
        .contact-info li {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .contact-info i {
            margin-right: 0;
            margin-bottom: 5px;
        }
        
        .contact-info span {
            width: 100%;
        }
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .copyright {
        font-size: 0.85rem;
        text-align: center;
    }
}