/* Leadership Page Specific Styles */

/* Leadership Hero Section */
.leadership-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.leadership-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leadership-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.leadership-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.leadership-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.team-card:hover::before {
    height: 6px;
}

.team-image {
    width: 120px;
    height: 120px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--primary);
    border: 3px solid var(--primary-light);
    transition: var(--transition);
}

.team-card:hover .team-image {
    transform: scale(1.05);
    border-color: var(--primary);
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.team-expertise span {
    background: rgba(26,95,56,0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.team-card:hover .team-expertise span {
    background: rgba(26,95,56,0.2);
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.team-contact a {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.team-contact a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Advisory Team Section */
.advisory-team {
    padding: 80px 0;
    background: var(--gray-light);
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.advisor-card {
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.advisor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.advisor-image {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--secondary);
    border: 3px solid var(--secondary-light);
    transition: var(--transition);
}

.advisor-card:hover .advisor-image {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.advisor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.advisor-role {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.advisor-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 18px;
}

.advisor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.advisor-expertise span {
    background: rgba(44,90,160,0.1);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.advisor-card:hover .advisor-expertise span {
    background: rgba(44,90,160,0.2);
}

/* Team Stats Section */
.team-stats {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stats-grid .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stats-grid .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stats-grid .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stats-grid .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content h2::after {
    background: white;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .advisory-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .leadership-hero h1 {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .advisory-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-hero {
        padding: 140px 0 80px;
    }
    
    .leadership-hero h1 {
        font-size: 2.5rem;
    }
    
    .leadership-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .advisory-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card, .advisor-card {
        padding: 30px 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .leadership-hero h1 {
        font-size: 2.2rem;
    }
    
    .team-card, .advisor-card {
        padding: 25px 20px;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .advisor-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card, .advisor-card, .stats-grid .stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

.advisor-card:nth-child(1) { animation-delay: 0.1s; }
.advisor-card:nth-child(2) { animation-delay: 0.15s; }
.advisor-card:nth-child(3) { animation-delay: 0.2s; }
.advisor-card:nth-child(4) { animation-delay: 0.25s; }
.advisor-card:nth-child(5) { animation-delay: 0.3s; }
.advisor-card:nth-child(6) { animation-delay: 0.35s; }
.advisor-card:nth-child(7) { animation-delay: 0.4s; }
.advisor-card:nth-child(8) { animation-delay: 0.45s; }
.advisor-card:nth-child(9) { animation-delay: 0.5s; }