/* ===== PARTNERSHIPS PAGE SPECIFIC STYLES ===== */

/* ===== CATEGORY BOX ===== */
.partner-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.partner-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.partner-category:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.category-info img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.partner-category:hover .category-info img {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

.category-details h2 {
    margin: 0 0 8px 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
}

.category-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.expand-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.partner-category.expanded .expand-icon {
    transform: rotate(180deg);
}

/* ===== PARTNERS GRID ===== */
.partner-list {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
}

.partner-list.visible {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.partner-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
}

.partner-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.partner-card .btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.partner-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .category-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px;
    }
}