@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

/* Enhanced Footer Styles */
footer, .pkp_structure_footer_wrapper {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    color: #333;
    position: relative;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #008080;
}

.pkp_structure_footer {
    padding: 25px 0 0px;
    margin: 0 auto;
    width: 100%;
}

footer .container, .pkp_structure_footer_wrapper .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

/* Footer Logo Section */
footer .footer-logo {
    flex: 1 1 20%;
    padding: 15px 10px;
    text-align: center;
    
    img {
        max-width: 200px;
        height: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
    }
    
    &:hover img {
        transform: scale(1.05);
    }
}

/* Footer Links Section */
footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 60%;
    gap: 15px;

    > div {
    flex: 1 1 30%;
        padding: 0 10px;
        margin-bottom: 20px;
}

    h4 {
        color: #008080;
    font-weight: 600;
        margin-bottom: 15px;
    position: relative;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        
        &::after {
    content: '';
    display: block;
            width: 40px;
    height: 2px;
            background: linear-gradient(90deg, #008080, #20b2aa);
            margin-top: 5px;
            border-radius: 1px;
        }
    }
    
    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        
        li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 15px;
            
            &::before {
                content: '›';
                position: absolute;
                left: 0;
                color: #008080;
    font-weight: bold;
}

            a {
                color: #555;
                text-decoration: none;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                display: inline-block;
                
                &:hover {
                    color: #008080;
                    transform: translateX(5px);
                    font-weight: 500;
                }
            }
        }
    }
}

/* Social Media Icons */
footer .social-icons {
    flex: 1 1 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    
    nav {
    display: flex;
        gap: 12px;
        flex-wrap: wrap;
    justify-content: center;
}

    a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #008080, #20b2aa);
        color: white;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 128, 128, 0.2);
        
        &:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 128, 128, 0.4);
            background: linear-gradient(135deg, #20b2aa, #008080);
        }
    }
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #008080, #20b2aa);
    color: white;
    padding: 15px 0;
    margin-top: 5px;
    
    .container {
    max-width: 1440px;
    margin: 0 auto;
        padding: 0 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

.copyright-section {
    text-align: center;

.copyright-statement {
        margin: 0 0 8px 0;
        font-size: 0.9rem;
        font-weight: 500;
    }
}

.powered-by {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
    
    a {
        color: #e0f7f7;
        text-decoration: none;
        font-weight: 500;
        
        &:hover {
            text-decoration: underline;
    color: white;
        }
    }
}

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

.legal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    
    a {
        color: #e0f7f7;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 5px 10px;
        border-radius: 4px;
        
        &:hover {
    color: white;
            background: rgba(255, 255, 255, 0.1);
            text-decoration: underline;
        }
    }
}

.privacy-policy {
    color: #e0f7f7;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    
    &:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}
}

/* ========================================
   RESPONSIVE DESIGN - 4 BREAKPOINT SECTIONS
   ======================================== */

/* ========================================
   SECTION 1: MOBILE (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
    /* Footer Structure */
    .pkp_structure_footer {
        padding: 5px 0 0px;
    }

    footer .container, .pkp_structure_footer_wrapper .container {
        padding: 0 5px;
    }

    /* Footer Content */
    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    /* Footer Logo */
    footer .footer-logo {
        margin-bottom: 15px;
        order: -1;
        padding: 10px 5px;
        
        img {
            max-width: 140px;
        }
    }

    /* Footer Links */
    footer .footer-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        
        > div {
            text-align: center;
            padding: 0 5px;
        }
        
        h4 {
            font-size: 1rem;
            margin-bottom: 12px;
        }
        
        ul {
            li {
                padding-left: 0;
                margin-bottom: 8px;
                width: 100%;
                text-align: center;
                
                &::before {
                    display: none;
                }
                
                a {
                    display: block;
                    padding: 8px 15px;
                    background: rgba(0, 128, 128, 0.05);
                    border-radius: 6px;
                    transition: all 0.3s ease;
        width: 100%;
                    max-width: 250px;
                    margin: 0 auto;
                    
                    &:hover {
                        background: rgba(0, 128, 128, 0.1);
                        transform: translateY(-2px);
                        box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
                    }
                }
            }
        }
    }

    /* Social Icons */
    footer .social-icons {
        margin-top: 20px;
        justify-content: center;
        
        nav {
        flex-direction: row;
            gap: 15px;
        }
        
        a {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }

    /* Footer Bottom */
    .footer-bottom {
        padding: 15px 0;
        
        .container {
            flex-direction: column;
        gap: 10px;
            text-align: center;
        }
    }

    .legal-nav {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        
        a {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            min-width: 120px;
            text-align: center;
        }
    }
}

/* ========================================
   SECTION 2: TABLET (768px - 1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    .pkp_structure_footer {
        padding: 15px 0 0px;
    }

    footer .container, .pkp_structure_footer_wrapper .container {
        padding: 0 10px;
    }

    footer .footer-logo {
        padding: 10px 5px;
        
        img {
            max-width: 180px;
        }
    }

    footer .footer-links {
        gap: 20px;
        
        > div {
            padding: 0 8px;
        }
        
        h4 {
            font-size: 1.05rem;
        }
    }

    footer .social-icons {
        a {
            width: 38px;
            height: 38px;
            font-size: 0.95rem;
        }
    }

    .footer-bottom {
        .container {
            padding: 0 10px;
        }
    }
}

/* ========================================
   SECTION 3: DESKTOP (1024px - 1280px)
   ======================================== */
@media (min-width: 1024px) and (max-width: 1280px) {
    .pkp_structure_footer {
        padding: 20px 0 0px;
    }

    footer .container, .pkp_structure_footer_wrapper .container {
        padding: 0 15px;
    }

    footer .footer-logo {
        img {
            max-width: 200px;
        }
    }

    footer .footer-links {
        h4 {
            font-size: 1.1rem;
        }
    }

    footer .social-icons {
        a {
            width: 40px;
            height: 40px;
        font-size: 1rem;
        }
    }
}

/* ========================================
   SECTION 4: LARGE DESKTOP (1281px+)
   ======================================== */
@media (min-width: 1281px) {
    .pkp_structure_footer {
        padding: 25px 0 0px;
    }

    footer .container, .pkp_structure_footer_wrapper .container {
        padding: 0 20px;
    }

    footer .footer-logo {
        padding: 20px 15px;
        
        img {
            max-width: 250px;
        }
    }

    footer .footer-links {
        gap: 25px;
        
        h4 {
            font-size: 1.2rem;
        }
    }

    footer .social-icons {
        gap: 15px;
        
        a {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }

    .footer-bottom {
        padding: 20px 0;
        
        .container {
            padding: 0 20px;
        }
    }
}