/* ===================================================================
 * LEADERSHIP SECTION - EXECUTIVE PROFILE PANEL
 * Horizontal premium card with high-end obsidian aesthetic
 * ===================================================================
 */

.leadership-section {
    position: relative;
    padding: 120px 24px 100px;
    background: var(--c-bg, #181822);
    overflow: hidden;
}

.leadership-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Header */
.leadership-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(122, 76, 255, 0.1);
    border: 1px solid rgba(122, 76, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #7A4CFF;
    margin-bottom: 20px;
}

.leadership-section .section-badge i {
    color: #FFD700;
}

.leadership-section .section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--c-text-high, #FFFFFF);
    margin-bottom: 16px;
    line-height: 1.2;
}

.leadership-section .section-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--c-text-secondary, rgba(255, 255, 255, 0.6));
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================================================
 * EXECUTIVE PROFILE CARD - HORIZONTAL LAYOUT
 * ===================================================================
 */

.executive-profile-card {
    display: flex;
    background: #0a0a0a;
    border: 1px solid rgba(122, 76, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(122, 76, 255, 0.05);
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.executive-profile-card:hover {
    box-shadow: 0 0 50px rgba(122, 76, 255, 0.15);
    border-color: rgba(122, 76, 255, 0.4);
}

/* Left Side - Photo Section (35%) */
.profile-photo-section {
    position: relative;
    flex: 0 0 35%;
    min-height: 500px;
    overflow: hidden;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gradient overlay on photo */
.photo-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(10, 10, 10, 0.3) 70%,
        rgba(10, 10, 10, 0.8) 100%
    );
    pointer-events: none;
}

/* Right Side - Content Section (65%) */
.profile-content-section {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Profile Header */
.profile-header {
    margin-bottom: 28px;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
    color: #7A4CFF;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Profile Bio */
.profile-bio {
    margin-bottom: 32px;
}

.profile-bio p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Core Competencies */
.core-competencies {
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.competency-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.competency-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(122, 76, 255, 0.08);
    border: 1px solid rgba(122, 76, 255, 0.2);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(122, 76, 255, 0.15);
    border-color: rgba(122, 76, 255, 0.4);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.pill i {
    font-size: 12px;
    color: #7A4CFF;
}

/* Profile Social Links */
.profile-social {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(122, 76, 255, 0.15);
    border-color: rgba(122, 76, 255, 0.4);
    color: #7A4CFF;
    transform: translateY(-3px);
}

/* ===================================================================
 * TRUST BADGE
 * ===================================================================
 */

.leadership-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(122, 76, 255, 0.05);
    border: 1px solid rgba(122, 76, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.leadership-badge i {
    font-size: 16px;
    color: #7A4CFF;
}

/* ===================================================================
 * RESPONSIVE DESIGN
 * ===================================================================
 */

/* Tablet */
@media (max-width: 1024px) {
    .leadership-section {
        padding: 80px 24px 60px;
    }

    .leadership-section .section-title {
        font-size: 40px;
    }

    .profile-photo-section {
        min-height: 450px;
    }

    .profile-content-section {
        padding: 40px 35px;
    }

    .profile-name {
        font-size: 32px;
    }

    .profile-title {
        font-size: 18px;
    }
}

/* Mobile - Stack Vertically */
@media (max-width: 768px) {
    .leadership-section {
        padding: 60px 20px 40px;
    }

    .leadership-section .section-header {
        margin-bottom: 40px;
    }

    .leadership-section .section-title {
        font-size: 32px;
    }

    .leadership-section .section-subtitle {
        font-size: 16px;
    }

    .executive-profile-card {
        flex-direction: column;
    }

    .profile-photo-section {
        flex: 0 0 auto;
        min-height: 350px;
        max-height: 350px;
    }

    .photo-gradient {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(10, 10, 10, 0.3) 70%,
            rgba(10, 10, 10, 0.9) 100%
        );
    }

    .profile-content-section {
        padding: 35px 28px;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-title {
        font-size: 17px;
    }

    .profile-bio p {
        font-size: 15px;
    }

    .competency-pills {
        gap: 8px;
    }

    .pill {
        padding: 8px 14px;
        font-size: 13px;
    }

    .leadership-badge {
        font-size: 13px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .leadership-section .section-title {
        font-size: 26px;
    }

    .profile-photo-section {
        min-height: 300px;
        max-height: 300px;
    }

    .profile-content-section {
        padding: 28px 22px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 16px;
    }

    .profile-bio p {
        font-size: 14px;
    }

    .competency-pills {
        flex-direction: column;
    }

    .pill {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
