/* Banner */
.org-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.06) 50%, rgba(5, 150, 105, 0.04) 100%);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(3px);
}

.org-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.org-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: orgFadeInUp 0.8s 0.15s ease-out both;
}

.org-banner-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: orgPulse 2s ease-in-out infinite;
}

.org-banner-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    animation: orgFadeInUp 0.8s 0.25s ease-out both;
}

.org-banner-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: orgFadeInUp 0.8s 0.35s ease-out both;
}

.org-banner-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 24px auto 0;
    animation: orgExpandLine 0.8s 0.5s ease-out both;
}

/* Content */
.org-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Glass Card */
.org-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: orgFadeInUp 0.8s ease-out both;
}

.org-card:hover {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.06);
    transform: translateY(-4px);
}

.org-card:nth-child(1) {
    animation-delay: 0.3s;
}

.org-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Card Layout */
.org-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.org-row.reverse {
    direction: rtl;
}

.org-row.reverse>* {
    direction: ltr;
}

.org-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-radius: 20px;
    /* background: var(--glass-bg); */
    border: 1px solid var(--glass-border);
    padding: 32px;
    transition: all 0.4s ease;
}

.org-logo-wrap:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.org-logo-wrap img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.org-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.org-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.org-link {
    display: inline-block;
    font-size: 15px;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.org-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

/* Social Icons inside card */
.org-socials {
    display: flex;
    gap: 10px;
}

.org-social {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.org-social i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.org-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.org-social.linkedin:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
}

.org-social.linkedin:hover i {
    color: #0a66c2;
}

.org-social.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.08);
}

.org-social.twitter:hover i {
    color: #1da1f2;
}

.org-social.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.08);
}

.org-social.instagram:hover i {
    color: #e4405f;
}

.org-social.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
}

.org-social.facebook:hover i {
    color: #1877f2;
}

.org-social.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
}

.org-social.youtube:hover i {
    color: #ff0000;
}

.org-social.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.08);
}

.org-social.whatsapp:hover i {
    color: #25d366;
}

/* Animations */
@keyframes orgFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orgPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes orgExpandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .org-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .org-row.reverse {
        direction: ltr;
    }

    .org-card {
        padding: 32px 24px;
    }

    .org-logo-wrap {
        min-height: 140px;
    }
}