/* =========================================
   CENTERED PREMIUM FOOTER
   ========================================= */

.footer-wrappr-centered {
    background: linear-gradient(135deg, #5AAC4E 0%, #3d8a35 100%);
    position: relative;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    overflow: hidden;
}

/* Abstract Background Shapes */
.footer-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, #ffffff 0%, transparent 20%);
    pointer-events: none;
}

.footer-centered-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* 1. Logo */
/* 1. Logo */
.footer-logo-center {
    display: inline-block;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-center img {
    height: 60px;
    /* Adjusted height */
    /* Removed white filter to show original colors */
    display: block;
}

.footer-logo-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 2. Tagline */
.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 3. Social Media */
.footer-social-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: white;
    color: #5AAC4E;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 4. Navigation */
.footer-nav-center {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-nav-center a {
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-nav-center a:hover::after {
    width: 100%;
}

.footer-nav-center a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Divider */
.footer-divider-center {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin-bottom: 25px;
}

/* 5. Bottom & Credits */
.footer-bottom-center p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 5px 0;
    line-height: 1.5;
}

.credits a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.credits a:hover {
    border-bottom-style: solid;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-nav-center {
        gap: 15px 20px;
        flex-direction: column;
    }

    .footer-bg-layer {
        display: none;
        /* Simplify on mobile */
    }
}