/* ========================================
   MANAGEMENT / FOUNDERS STYLES
======================================== */
/* Management Header */
.management-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #9912E6, #9912E6, #9912E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Tajawal', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Tajawal', sans-serif;
}

/* Founders Filters */
.founders-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    font-family: 'Tajawal', sans-serif !important;
}

/* Founders Grid */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Founder Card */
.founder-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    font-family: 'Tajawal', sans-serif;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.founder-card:hover::before {
    left: 100%;
}

.founder-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(153, 18, 230, 0.4);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

/* Founder Avatar */
.founder-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-avatar img {
    border-color: #9912E6;
    box-shadow: 0 0 30px rgba(153, 18, 230, 0.5);
    transform: scale(1.1);
}

.avatar-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.avatar-status.online {
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.avatar-status.away {
    background: #ffaa00;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.6);
}

.avatar-status.offline {
    background: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.avatar-rank {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9912E6, #9912E6);
    color: #000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(153, 18, 230, 0.5);
}

/* Founder Info */
.founder-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.founder-role {
    color: #9912E6;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-discord {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    background: rgba(88, 101, 242, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
}
/* Founder Contact - نفس ستايل social-links */
.founder-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.founder-contact .contact-btn {
    width: 45px;
    height: 45px;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5865f2;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.founder-contact .contact-btn:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.founder-contact .contact-btn i {
    transition: all 0.3s ease;
}

.founder-contact .contact-btn:hover i {
    transform: scale(1.1);
}

/* أزرار أخرى (رسائل ومكالمة) */
.founder-contact .contact-btn.message {
    background: rgba(67, 181, 129, 0.2);
    border-color: rgba(67, 181, 129, 0.3);
    color: #43b581;
}

.founder-contact .contact-btn.message:hover {
    background: #43b581;
    color: white;
    box-shadow: 0 8px 25px rgba(67, 181, 129, 0.4);
}

.founder-contact .contact-btn.call {
    background: rgba(250, 166, 26, 0.2);
    border-color: rgba(250, 166, 26, 0.3);
    color: #faa61a;
}

.founder-contact .contact-btn.call:hover {
    background: #faa61a;
    color: white;
    box-shadow: 0 8px 25px rgba(250, 166, 26, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
    .founder-contact {
        gap: 0.8rem;
    }
    
    .founder-contact .contact-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .founders-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-contact {
        gap: 0.8rem;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}