/* Governance and Leadership Professional CSS */

/* Hero Section */
.governance-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: floatParticles 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.governance-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: slideInUp 1s ease-out;
}

.governance-hero-title {
    margin: 0 0 32px;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-connector {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #3b82f6;
    margin: 16px 0;
    font-style: italic;
    letter-spacing: 4px;
}

.governance-hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    margin: 0 0 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    animation: fadeInScale 1s ease-out;
    animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.6s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: slideInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Leadership Sections */
.leadership-team,
.strategic-board,
.management-team {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1419 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.leadership-team::before,
.strategic-board::before,
.management-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.strategic-board {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
}

/* Grid Layouts */
.leaders-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.board-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.management-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Leader Cards */
.leader-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
    opacity: 0;
}

.leader-card.animate-in {
    opacity: 1;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.leader-card:hover::before {
    left: 100%;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

/* Executive Cards - Larger */
.executive-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.executive-card .leader-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.executive-card .leader-info {
    padding: 32px;
    flex: 1;
}

/* Board Cards - Medium */
.board-card {
    padding: 24px;
    text-align: center;
}

.board-card .leader-image-container {
    height: 200px;
    width: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

/* Management Cards - Medium */
.management-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.management-card .leader-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.management-card .leader-info {
    padding: 24px;
    flex: 1;
}

/* Image Styling */
.leader-image-container {
    position: relative;
    overflow: hidden;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

/* Text Styling */
.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.leader-title {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.4;
}

.leader-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    margin: 16px auto;
    border-radius: 1px;
}

.board-card .leader-divider,
.management-card .leader-divider {
    margin: 16px auto;
}

.executive-card .leader-divider {
    margin: 16px 0;
}

.leader-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.governance-cta {
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.governance-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin: 0 0 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 16px 32px;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleGlow {
    0% { text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
    100% { text-shadow: 0 4px 30px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.2); }
}

@keyframes floatParticles {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Officers Directory Section */
.officers-directory {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1419 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.officers-directory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.officers-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Officer Cards - Uniform Design */
.officer-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
    opacity: 0;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    cursor: pointer;
}

.officer-card.animate-in {
    opacity: 1;
}

.officer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.officer-card:hover::before {
    left: 100%;
}

.officer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

/* Officer Image Containers - Standardized */
.officer-image-container {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: url('/static/assets/images/Corporate_Blue_Gradient_Background_e006de0f.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    border-radius: 16px 16px 0 0;
}

.officer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.4s ease;
    display: block;
    opacity: 1;
}

.officer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.officer-card:hover .officer-image {
    transform: scale(1.05);
}

.officer-card:hover .officer-overlay {
    opacity: 1;
}

/* Officer Info Section */
.officer-info {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.officer-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.officer-title {
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.4;
}

.officer-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    margin: 16px 0;
    border-radius: 1px;
}

.officer-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Responsive Design - Officers Directory */
@media (max-width: 1024px) {
    .officers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 800px;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .governance-hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-connector {
        font-size: 1.5rem;
        margin: 12px 0;
    }
    
    .governance-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .leadership-team,
    .strategic-board,
    .management-team,
    .governance-cta {
        padding: 80px 0;
    }
    
    .officers-grid,
    .leaders-grid,
    .board-grid,
    .management-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .officers-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .board-card .leader-image-container {
        width: 150px;
        height: 150px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .officers-directory .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .officers-grid {
        grid-template-columns: 1fr !important;
        max-width: 100%;
        gap: 20px;
    }
    
    .officer-card {
        min-height: 420px;
    }
    
    .officer-image-container {
        height: 250px;
    }
    
    .officer-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .governance-hero-subtitle {
        font-size: 1rem;
    }
    
    .officers-directory .max-w-7xl {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .officer-card {
        min-height: 400px;
    }
    
    .officer-image-container {
        height: 220px;
    }
    
    .officer-info {
        padding: 20px;
    }
    
    .officer-name {
        font-size: 1.2rem;
    }
    
    .officer-title {
        font-size: 0.9rem;
    }
    
    .executive-card,
    .management-card {
        min-height: auto;
    }
    
    .executive-card .leader-image-container,
    .management-card .leader-image-container {
        height: 180px;
    }
    
    .board-card .leader-image-container {
        width: 120px;
        height: 120px;
    }
    
    .leader-name {
        font-size: 1.2rem;
    }
    
    .leader-title {
        font-size: 0.9rem;
    }
}

/* Officer Profile Pages */
.officer-profile-hero {
    background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.profile-hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.profile-image-section {
    text-align: center;
}

.profile-image-container {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: url('/static/assets/images/Corporate_Blue_Gradient_Background_e006de0f.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.profile-info-section {
    color: white;
}

.profile-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.profile-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.profile-title {
    font-size: 1.3rem;
    color: #3b82f6;
    font-weight: 500;
    margin: 0 0 24px;
    line-height: 1.4;
}

.profile-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    margin: 24px 0;
    border-radius: 2px;
}

.profile-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 40px;
}

.profile-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.profile-stats .stat-item {
    text-align: left;
}

.profile-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
}

.profile-stats .stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Officer Details Section */
.officer-details {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1419 100%);
    padding: 120px 0;
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.details-content {
    color: white;
}

.details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 40px 0 16px;
}

.details-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 32px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.details-list li {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 12px;
    padding-left: 24px;
    position: relative;
}

.details-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 0.8rem;
}

.details-sidebar {
    position: relative;
}

.contact-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: sticky;
    top: 40px;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px;
}

.contact-info {
    margin: 0 0 32px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.contact-value {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
    text-align: right;
}

.contact-btn {
    display: block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Back to Directory Section */
.back-to-directory {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
}

.back-content {
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #3b82f6;
    padding: 16px 32px;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Profile Pages */
@media (max-width: 1024px) {
    .profile-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .profile-image-container {
        width: 300px;
        height: 300px;
    }
    
    .profile-name {
        font-size: 3rem;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .officer-profile-hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .profile-stats .stat-item {
        text-align: center;
    }
    
    .details-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 32px 24px;
    }
    
    .officer-details {
        padding: 80px 0;
    }
    
    .back-to-directory {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .profile-image-container {
        width: 200px;
        height: 200px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .profile-description {
        font-size: 1rem;
    }
    
    .details-title {
        font-size: 1.8rem;
    }
    
    .details-subtitle {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .contact-value {
        text-align: left;
    }
}

/* ========== MOBILE RESPONSIVE - LEADERSHIP GRID ========== */
@media (max-width: 767px) {
    /* HERO - PROPER SIZE */
    .leadership-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 4rem 1.5rem 3rem 1.5rem !important;
        display: block !important;
    }

    .leadership-hero .container {
        padding: 0 !important;
    }

    .leadership-hero .hero-content {
        text-align: left !important;
        padding-left: 1cm !important;
        padding-right: 1rem !important;
    }

    .leadership-hero .hero-text {
        text-align: left !important;
    }

    .hero-badge {
        margin-bottom: 1.2rem !important;
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
        display: inline-block !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.2rem !important;
        text-align: left !important;
    }

    .title-line {
        display: block !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.8rem !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .hero-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
        padding: 0 !important;
        align-items: flex-start !important;
    }

    .hero-actions .btn {
        width: 90% !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
        text-align: center !important;
    }

    .scroll-indicator {
        display: none !important;
    }

    /* LEADERSHIP SECTION - BIGGER */
    .leadership-section {
        padding: 2.5rem 0 !important;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem !important;
        padding: 0 1.2rem !important;
        text-align: left !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
        text-align: left !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    /* Leadership Grid - 2.5cm GAP BETWEEN CARDS */
    .leadership-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5cm !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .leadership-card {
        width: 100% !important;
        border-radius: 12px !important;
    }

    .leadership-image-container {
        height: 250px !important;
    }

    .leadership-info {
        padding: 1.2rem !important;
    }

    .leadership-name {
        font-size: 1.2rem !important;
    }

    .leadership-title {
        font-size: 0.9rem !important;
    }

    .leadership-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .leadership-divider {
        margin: 0.6rem 0 !important;
    }

    /* Featured Officer */
    .featured-officer {
        padding: 0 1rem !important;
        margin-bottom: 2.5cm !important;
    }

    .featured-officer-card {
        border-radius: 12px !important;
    }

    .featured-officer-content {
        grid-template-columns: 1fr !important;
    }

    .featured-officer-image-container {
        height: auto !important;
    }

    .featured-officer-image {
        max-width: 100% !important;
        max-height: 300px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .featured-officer-info {
        padding: 1.5rem !important;
        text-align: left !important;
    }

    .featured-officer-name {
        font-size: 1.5rem !important;
    }

    .featured-officer-title {
        font-size: 0.9rem !important;
    }
}

/* Dark theme scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}