/* Import variables */
@import url("variables.css");

/* ===============================================
   CER-RD - FOOTER / PIE
   Estilos premium del footer
   =============================================== */

/* === SECCIÓN INICIATIVA === */
footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #0a1929 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--cer-space-6);
}

/* Título de iniciativa */
.titulo-pie {
    color: var(--cer-secondary-blue);
    font-size: var(--cer-text-2xl);
    font-weight: var(--cer-font-semibold);
    margin-bottom: var(--cer-space-8);
    text-align: center;
}

/* === FOOTER PRINCIPAL === */
.footer-premium {
    background: linear-gradient(135deg, #0a1929 0%, #1e3a8a 50%, #0a1929 100%);
    width: 100%;
    color: var(--cer-text-primary);
    position: relative;
    overflow: hidden;
    padding: var(--cer-space-16) 0 0;
    border-top: 2px solid rgba(96, 213, 248, 0.3);
    box-shadow: 0 -2px 20px rgba(14, 165, 233, 0.2);
}

.footer-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(14, 165, 233, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(96, 213, 248, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}

.footer-container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--cer-space-6);
    position: relative;
    z-index: 2;
}

.footer-content-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--cer-space-12);
    margin-bottom: var(--cer-space-12);
    align-items: start;
}

/* === LOGO Y REDES SOCIALES === */
.footer-brand-premium {
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-6);
    align-items: flex-start;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.4s ease, transform 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 20px rgba(96, 213, 248, 0.8))
        drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
    transform: scale(1.05);
}

.footer-social-section {
    margin-top: var(--cer-space-2);
}

.footer-social-links {
    display: flex;
    gap: var(--cer-space-3);
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--cer-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cer-text-secondary);
    text-decoration: none;
    transition: var(--cer-transition-base);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity var(--cer-transition-base);
}

.footer-social-link i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: var(--cer-transition-base);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(96, 213, 248, 0.15);
    border-color: rgba(96, 213, 248, 0.4);
    color: #60d5f8;
    box-shadow: 0 4px 15px rgba(96, 213, 248, 0.3);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover i {
    color: #60d5f8;
    text-shadow: 0 0 10px rgba(96, 213, 248, 0.5);
}

/* === COLUMNAS === */
.footer-column-premium {
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-4);
}

.footer-column-collaboration {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.footer-column-premium h4 {
    font-size: var(--cer-text-lg);
    font-weight: var(--cer-font-semibold);
    color: var(--cer-text-primary);
    margin-bottom: var(--cer-space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-bottom: var(--cer-space-2);
    position: relative;
}

.footer-column-premium h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 165, 233, 0.6),
        rgba(96, 213, 248, 0.9),
        rgba(14, 165, 233, 0.6),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(96, 213, 248, 0.4);
}

.footer-column-premium ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-2);
}

.footer-column-premium ul li a {
    color: var(--cer-text-secondary);
    text-decoration: none;
    font-size: var(--cer-text-sm);
    padding: var(--cer-space-1) 0;
    transition: var(--cer-transition-base);
    position: relative;
    display: inline-block;
}

.footer-column-premium ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width var(--cer-transition-base);
}

.footer-column-premium ul li a:hover {
    color: var(--cer-text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.footer-column-premium ul li a:hover::before {
    width: 30px;
}

/* === FOOTER BOTTOM === */
.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--cer-space-6) 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--cer-space-4);
}

.footer-copyright {
    font-size: var(--cer-text-sm);
    color: var(--cer-text-muted);
    margin: 0;
}

.footer-terms {
    display: flex;
    gap: var(--cer-space-4);
    align-items: center;
}

.footer-collaboration-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--cer-space-2);
    margin-top: 0;
}

.collaboration-title {
    font-size: var(--cer-text-md);
    color: var(--cer-text-muted);
    margin: 0;
    text-align: right;
}

.collaboration-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.collaboration-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.4s ease, transform 0.3s ease;
}

.collaboration-logo:hover {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 20px rgba(96, 213, 248, 0.8))
        drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
    transform: scale(1.05);
}

.terms-link {
    color: var(--cer-text-muted);
    text-decoration: none;
    font-size: var(--cer-text-sm);
    transition: var(--cer-transition-base);
}

.terms-link:hover {
    color: var(--cer-text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.separator {
    color: var(--cer-text-muted);
    font-size: var(--cer-text-sm);
}

/* Efecto de fondo con gradientes sutiles */
.pie-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(14, 165, 233, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(96, 213, 248, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}

/* Grid del footer - layout mejorado */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--cer-space-12);
    margin-bottom: var(--cer-space-12);
    position: relative;
    z-index: 2;
}

/* === COLUMNA PRINCIPAL (LOGO Y SOCIAL) === */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-4);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--cer-space-4);
}

.logo-cer-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.4s ease, transform 0.3s ease;
}

.logo-cer-footer:hover {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 20px rgba(96, 213, 248, 0.8))
        drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
    transform: scale(1.05);
}

.footer-description {
    font-size: var(--cer-text-base);
    line-height: 1.6;
    color: var(--cer-text-secondary);
    max-width: 400px;
    margin-bottom: var(--cer-space-6);
}

/* === REDES SOCIALES === */
.footer-social-section {
    margin-top: var(--cer-space-4);
}

.footer-social-links,
.d-flex.align-items-center.gap-3 {
    display: flex;
    gap: var(--cer-space-3);
    flex-wrap: wrap;
}

.footer-social-link,
.d-flex.align-items-center.gap-3 a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--cer-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cer-text-secondary);
    text-decoration: none;
    transition: var(--cer-transition-base);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before,
.d-flex.align-items-center.gap-3 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity var(--cer-transition-base);
}

.footer-social-link i,
.d-flex.align-items-center.gap-3 a i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: var(--cer-transition-base);
}

.footer-social-link:hover,
.d-flex.align-items-center.gap-3 a:hover {
    transform: translateY(-2px);
    background: rgba(96, 213, 248, 0.15);
    border-color: rgba(96, 213, 248, 0.4);
    color: #60d5f8;
    box-shadow: 0 4px 15px rgba(96, 213, 248, 0.3);
}

.footer-social-link:hover::before,
.d-flex.align-items-center.gap-3 a:hover::before {
    opacity: 1;
}

.footer-social-link:hover i,
.d-flex.align-items-center.gap-3 a:hover i {
    color: #60d5f8;
    text-shadow: 0 0 10px rgba(96, 213, 248, 0.5);
}

/* === COLUMNAS DE ENLACES === */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-4);
}

.footer-column h4 {
    font-size: var(--cer-text-lg);
    font-weight: var(--cer-font-semibold);
    color: var(--cer-text-primary);
    margin-bottom: var(--cer-space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-2);
}

.footer-column ul li a {
    color: var(--cer-text-secondary);
    text-decoration: none;
    font-size: var(--cer-text-sm);
    padding: var(--cer-space-1) 0;
    transition: var(--cer-transition-base);
    position: relative;
    display: inline-block;
}

.footer-column ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width var(--cer-transition-base);
}

.footer-column ul li a:hover {
    color: var(--cer-text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    width: 30px;
}

/* === NEWSLETTER === */
.newsletter-description {
    font-size: var(--cer-text-sm);
    color: var(--cer-text-secondary);
    margin-bottom: var(--cer-space-4);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--cer-space-3);
}

.newsletter-input {
    padding: var(--cer-space-3);
    border-radius: var(--cer-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cer-text-primary);
    font-size: var(--cer-text-sm);
    transition: var(--cer-transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: var(--cer-text-muted);
}

.newsletter-button {
    padding: var(--cer-space-3) var(--cer-space-4);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--cer-radius-md);
    color: var(--cer-text-primary);
    font-weight: var(--cer-font-semibold);
    cursor: pointer;
    transition: var(--cer-transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--cer-space-2);
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* === SECCIÓN INFERIOR === */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--cer-space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--cer-space-4);
    position: relative;
    z-index: 2;
}

.footer-copyright,
.text-12 {
    font-size: var(--cer-text-xs);
    color: var(--cer-text-muted);
}

.footer-terms {
    display: flex;
    gap: var(--cer-space-6);
    align-items: center;
}

.terms-link,
.footer-terms a {
    color: var(--cer-text-muted);
    text-decoration: none;
    font-size: var(--cer-text-xs);
    transition: var(--cer-transition-base);
}

.terms-link:hover,
.footer-terms a:hover {
    color: var(--cer-text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.separator {
    color: var(--cer-text-muted);
}

/* === UTILIDADES === */
.text-14 {
    font-size: 14px;
}

.text-12 {
    font-size: 12px;
}

.text-white {
    color: var(--cer-text-primary) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-content-premium {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--cer-space-8);
    }
}

@media (max-width: 768px) {
    .footer-premium {
        padding: var(--cer-space-12) 0 0;
    }

    .footer-container-premium {
        padding: 0 var(--cer-space-4);
    }

    .footer-content-premium {
        grid-template-columns: 1fr;
        gap: var(--cer-space-8);
        text-align: center;
    }

    .footer-brand-premium {
        align-items: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-column-premium {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left-section {
        align-items: center;
    }

    .footer-collaboration-section {
        align-items: center;
    }

    .collaboration-title {
        text-align: center;
    }

    .footer-column-premium h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--cer-space-6);
    }

    .footer-column-collaboration {
        align-items: center;
    }

    .footer-collaboration-section {
        align-items: center;
        margin-top: var(--cer-space-4);
    }

    .collaboration-title {
        text-align: center;
    }

    .footer-terms {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-content-premium {
        gap: var(--cer-space-6);
    }

    .footer-social-links {
        gap: var(--cer-space-2);
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-social-link i {
        font-size: 1rem;
    }

    .footer-terms {
        gap: var(--cer-space-3);
        flex-direction: column;
    }

    .separator {
        display: none;
    }

    .footer-logo-image {
        height: 50px;
        width: auto;
    }
}

/* === ANIMACIONES === */
@keyframes logoGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* === INITIATIVE SECTION WRAPPER === */
.initiative-section-wrapper {
    background: transparent;
    position: relative;
}

/* === INITIATIVE SECTION === */
.initiative-section-footer {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(14, 165, 233, 0.03) 20%,
        rgba(96, 213, 248, 0.05) 50%,
        rgba(14, 165, 233, 0.03) 80%,
        transparent 100%
    );
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.initiative-section-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            ellipse at 30% 40%,
            rgba(14, 165, 233, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 60%,
            rgba(96, 213, 248, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
}

.initiative-container-footer {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.initiative-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.6), 0 2px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    letter-spacing: 0.05em;
    position: relative;
    font-family: "Inter", sans-serif;
}

.initiative-title::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 165, 233, 0.6),
        rgba(96, 213, 248, 0.8),
        rgba(14, 165, 233, 0.6),
        transparent
    );
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.initiative-title::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(96, 213, 248, 0.6),
        rgba(14, 165, 233, 0.8),
        rgba(96, 213, 248, 0.6),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(96, 213, 248, 0.4);
}

.institution-highlight {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding: 2px 8px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.15);
    border-radius: 4px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.institution-highlight.leader {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(14, 165, 233, 0.6);
}

.institution-highlight.collaborator {
    background: rgba(96, 213, 248, 0.15);
    border-color: rgba(96, 213, 248, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(96, 213, 248, 0.5);
}

.institution-highlight.supporter {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(59, 130, 246, 0.5);
}

.initiative-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.logo-container::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.15) 0%,
        rgba(96, 213, 248, 0.08) 40%,
        rgba(59, 130, 246, 0.04) 70%,
        transparent 90%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    z-index: 1;
    opacity: 0.5;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo-container::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(96, 213, 248, 0.08) 50%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
    z-index: 2;
    opacity: 0.3;
}

.logo-item .logo-image {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 12px rgba(14, 165, 233, 0.3))
        drop-shadow(0 0 24px rgba(96, 213, 248, 0.2))
        drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    height: 150px;
    max-width: 250px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-container::before {
    opacity: 0.7;
    filter: blur(25px);
    transform: scale(1.15);
}

.logo-item:hover .logo-container::after {
    opacity: 0.5;
    filter: blur(15px);
    transform: scale(1.08);
}

.logo-item:hover .logo-image {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 18px rgba(14, 165, 233, 0.5))
        drop-shadow(0 0 36px rgba(96, 213, 248, 0.3))
        drop-shadow(0 0 54px rgba(59, 130, 246, 0.2))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transform: scale(1.03);
}

/* === RESPONSIVE INITIATIVE === */
@media (max-width: 768px) {
    .initiative-section-footer {
        padding: 40px 25px;
    }

    .initiative-title {
        font-size: 1.1rem;
        white-space: normal;
        margin-bottom: 40px;
    }

    .initiative-logos {
        flex-direction: column;
        gap: 40px;
    }

    .logo-item .logo-image {
        height: 130px;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .initiative-section-footer {
        padding: 35px 20px;
    }

    .initiative-title {
        font-size: 1rem;
    }

    .initiative-logos {
        gap: 30px;
        padding: 0 20px;
    }

    .logo-item .logo-image {
        height: 110px;
        max-width: 150px;
    }
}

/* === INITIATIVE SECTION === */
.initiative-section-footer {
    background: transparent;
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.initiative-container-footer {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.initiative-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.6), 0 2px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    letter-spacing: 0.05em;
    position: relative;
    font-family: "Inter", sans-serif;
}

.initiative-title::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 165, 233, 0.6),
        rgba(96, 213, 248, 0.8),
        rgba(14, 165, 233, 0.6),
        transparent
    );
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.initiative-title::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(96, 213, 248, 0.6),
        rgba(14, 165, 233, 0.8),
        rgba(96, 213, 248, 0.6),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(96, 213, 248, 0.4);
}

.institution-highlight {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding: 2px 8px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.15);
    border-radius: 4px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.institution-highlight.leader {
    background: rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(14, 165, 233, 0.6);
}

.institution-highlight.collaborator {
    background: rgba(96, 213, 248, 0.15);
    border-color: rgba(96, 213, 248, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(96, 213, 248, 0.5);
}

.institution-highlight.supporter {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(59, 130, 246, 0.5);
}

.initiative-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.logo-container::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.15) 0%,
        rgba(96, 213, 248, 0.08) 40%,
        rgba(59, 130, 246, 0.04) 70%,
        transparent 90%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    z-index: 1;
    opacity: 0.5;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo-container::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(96, 213, 248, 0.08) 50%,
        transparent 80%
    );
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
    z-index: 2;
    opacity: 0.3;
}

.logo-item .logo-image {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 12px rgba(14, 165, 233, 0.3))
        drop-shadow(0 0 24px rgba(96, 213, 248, 0.2))
        drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    height: 120px;
    max-width: 250px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-container::before {
    opacity: 0.7;
    filter: blur(25px);
    transform: scale(1.15);
}

.logo-item:hover .logo-container::after {
    opacity: 0.5;
    filter: blur(15px);
    transform: scale(1.08);
}

.logo-item:hover .logo-image {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 18px rgba(14, 165, 233, 0.5))
        drop-shadow(0 0 36px rgba(96, 213, 248, 0.3))
        drop-shadow(0 0 54px rgba(59, 130, 246, 0.2))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transform: scale(1.03);
}

/* === RESPONSIVE INITIATIVE === */
@media (max-width: 768px) {
    .initiative-section-footer {
        padding: 40px 25px;
    }

    .initiative-title {
        font-size: 1.1rem;
        white-space: normal;
        margin-bottom: 40px;
    }

    .initiative-logos {
        flex-direction: column;
        gap: 40px;
    }

    .logo-item .logo-image {
        height: 130px;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .initiative-section-footer {
        padding: 35px 20px;
    }

    .initiative-title {
        font-size: 1rem;
    }

    .initiative-logos {
        gap: 30px;
        padding: 0 20px;
    }

    .logo-item .logo-image {
        height: 110px;
        max-width: 150px;
    }
}

/* === NEW INITIATIVE STRUCTURE === */
.initiative-main-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.initiative-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 40px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-logo-container {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.partner-logo {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 12px rgba(14, 165, 233, 0.3));
    height: 200px;
    max-width: 400px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 18px rgba(96, 213, 248, 0.5));
    transform: scale(1.05);
}

.partner-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.partner-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.partner-social a,
.support-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.partner-social a:hover,
.support-social a:hover {
    background: rgba(96, 213, 248, 0.15);
    border-color: rgba(96, 213, 248, 0.4);
    color: #60d5f8;
    transform: translateY(-2px);
}

.partner-phone {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Support Section */
.initiative-support-section {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.initiative-support-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.support-logo-container {
    position: relative;
    display: inline-block;
}

.support-logo {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 12px rgba(14, 165, 233, 0.3));
    height: 180px;
    max-width: 360px;
    transition: all 0.3s ease;
}

.support-logo:hover {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 18px rgba(96, 213, 248, 0.5));
    transform: scale(1.05);
}

.support-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.support-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Responsive for new structure */
@media (max-width: 768px) {
    .initiative-partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .partner-logo {
        height: 110px;
        max-width: 220px;
    }

    .support-logo {
        height: 95px;
        max-width: 190px;
    }

    .partner-social,
    .support-social {
        gap: 12px;
    }

    .partner-social a,
    .support-social a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .partner-phone {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .initiative-main-title {
        font-size: 1.1rem;
    }

    .initiative-support-title {
        font-size: 1rem;
    }

    .partner-logo {
        height: 90px;
        max-width: 180px;
    }

    .support-logo {
        height: 75px;
        max-width: 150px;
    }
}

/* === PREVENT HOVER DURING SCROLL ON TOUCH DEVICES === */
body.is-scrolling * {
    pointer-events: none !important;
}
