/* Management Team Page Styles */

/* Hero Section */
.team-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.team-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Team Introduction */
.team-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #003366;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Executive Team */
.executive-team {
    padding: 80px 0;
}

.executive-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.executive-profile:last-child {
    margin-bottom: 0;
}

.executive-image {
    height: 100%;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-details {
    padding: 40px;
}

.executive-header {
    margin-bottom: 30px;
}

.executive-header h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 10px;
}

.executive-title {
    font-size: 18px;
    color: #d4af37;
    font-weight: 600;
}

.executive-bio p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.executive-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.highlight-item h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 15px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tags span {
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.executive-cta {
    margin-top: 30px;
}

/* Leadership Philosophy */
.leadership-philosophy {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-content {
    text-align: center;
}

.philosophy-content h2 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
}

.philosophy-icon {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

.philosophy-item h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.philosophy-item p {
    line-height: 1.7;
}

/* Executive Profile Pages */
.executive-profile-page {
    padding: 80px 0;
}

.profile-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-intro h1 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 20px;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 30px;
}

.profile-summary {
    line-height: 1.8;
    margin-bottom: 30px;
}

.profile-contact {
    display: flex;
    gap: 20px;
}

.profile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #003366;
    font-weight: 600;
}

.profile-contact a:hover {
    color: #d4af37;
}

.profile-details {
    margin-bottom: 60px;
}

.profile-details h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.profile-bio {
    line-height: 1.8;
}

.profile-experience h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.experience-item {
    margin-bottom: 40px;
}

.experience-item h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 10px;
}

.company {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.responsibilities {
    padding-left: 20px;
}

.responsibilities li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.profile-achievements {
    margin-bottom: 60px;
}

.profile-achievements h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.achievements-list {
    padding-left: 20px;
}

.achievements-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.profile-expertise h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.expertise-item h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 15px;
}

.expertise-item p {
    line-height: 1.7;
}

/* Team Navigation */
.team-navigation {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-navigation h3 {
    text-align: center;
    font-size: 28px;
    color: #003366;
    margin-bottom: 40px;
}

.team-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-nav-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-nav-item:hover {
    transform: translateY(-10px);
}

.team-nav-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-nav-item span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    padding: 15px 15px 5px;
}

.team-nav-item p {
    color: #666;
    padding: 0 15px 20px;
}

.team-nav-button {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .executive-profile {
        grid-template-columns: 1fr;
    }
    
    .executive-image {
        height: 400px;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .executive-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-hero {
        height: 50vh;
    }
    
    .executive-details {
        padding: 30px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .team-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}