/* ============================================ */
/* LEADERSHIP SECTION */
/* ============================================ */

.leadership-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

/* ============================================ */
/* LEADERSHIP INTRO */
/* ============================================ */

.leadership-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.leadership-intro p {
    font-size: 1.2rem;
    color: var(--soft-gold);
    line-height: 1.9;
}

/* ============================================ */
/* LEADERSHIP GRID (Founders) */
/* ============================================ */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.leader-card {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(10, 25, 41, 0.8));
    border: 2px solid rgba(25, 118, 210, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--logo-blue);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.4);
}

/* ============================================ */
/* LEADER PROFILE IMAGE */
/* ============================================ */

.leader-profile {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 4px solid var(--gold-accent);
    background: var(--primary-navy);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-profile img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    object-position: center;
    filter: brightness(1.05) contrast(1.1);
    transition: all 0.4s ease;
}

.leader-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    z-index: 1;
}

.leader-card:hover .leader-profile {
    transform: scale(1.08);
    border-color: var(--soft-gold);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(212, 175, 55, 0.6),
        inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.leader-card:hover .leader-profile img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15);
}

/* ============================================ */
/* LEADER CARD TEXT */
/* ============================================ */

.leader-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--logo-blue), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.leader-card .position {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.leader-card p {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.95;
    text-align: left;
}

/* ============================================ */
/* MANAGEMENT TEAM SECTION */
/* ============================================ */

.management-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream);
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================ */
/* MANAGER CARDS */
/* ============================================ */

.manager-card {
    background: rgba(10, 25, 41, 0.6);
    border: 2px solid rgba(25, 118, 210, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.manager-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--logo-blue), var(--gold-accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.manager-card:hover::before {
    transform: scaleY(1);
}

.manager-card:hover {
    background: rgba(10, 25, 41, 0.8);
    border-color: var(--logo-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

.manager-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.manager-card .role {
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 600;
}

.manager-card p {
    font-size: 1.05rem;
    color: var(--soft-gold);
    line-height: 1.8;
}

/* ============================================ */
/* RESPONSIVE LEADERSHIP SECTION */
/* ============================================ */

@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 968px) {
    .leadership-intro p {
        font-size: 1.1rem;
    }
    
    .leader-card {
        padding: 2.5rem 2rem;
    }
    
    .leader-profile {
        width: 180px;
        height: 180px;
    }
    
    .leader-card h3 {
        font-size: 2rem;
    }
    
    .leader-card .position {
        font-size: 1.1rem;
    }
    
    .leader-card p {
        font-size: 1.05rem;
    }
    
    .management-title {
        font-size: 2rem;
    }
    
    .manager-card {
        padding: 2rem;
    }
    
    .manager-card h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .leader-profile {
        width: 160px;
        height: 160px;
    }
    
    .leader-card h3 {
        font-size: 1.8rem;
    }
    
    .leader-card {
        padding: 2rem 1.5rem;
    }
    
    .manager-card {
        padding: 1.8rem 1.5rem;
    }
    
    .manager-card h4 {
        font-size: 1.5rem;
    }
    
    .manager-card .role {
        font-size: 1rem;
    }
}