/* Chairman Page Premium Styles */
.chairman-hero {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(8, 145, 178, 0.9) 100%),
        url('../images/ui/hero-bg-3.jpg') center/cover no-repeat fixed;
    padding: 140px 0 180px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chairman-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.chairman-hero .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 4rem;
    border-radius: 30px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chairman-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.chairman-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.profile-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 118, 110, 0.15);
    position: sticky;
    top: 120px;
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(15, 118, 110, 0.25);
}

.profile-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.profile-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(15, 118, 110, 0.9));
}

.profile-info {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    color: white;
}

.profile-info h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.profile-info .title {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.profile-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.profile-social a:hover {
    background: white;
    color: #0f766e;
    transform: translateY(-3px);
}

/* Bio Section */
.bio-section {
    padding-left: 2rem;
}

.bio-intro {
    margin-bottom: 3rem;
}

.bio-intro h2 {
    font-size: 2.5rem;
    color: #115e59;
    margin-bottom: 0.5rem;
}

.bio-intro .role {
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 2rem;
}

.bio-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-left: 5px solid #0f766e;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.quote-box p {
    font-style: italic;
    font-size: 1.15rem;
    color: #115e59;
    margin: 0;
}

.quote-box .author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #0f766e;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 118, 110, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0f766e 0%, #14b8a6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 50px rgba(15, 118, 110, 0.15);
}

.achievement-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.achievement-icon i {
    font-size: 1.4rem;
    color: #0f766e;
    transition: color 0.3s ease;
}

.achievement-card:hover .achievement-icon i {
    color: white;
}

.achievement-content h4 {
    color: #115e59;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.4);
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-card h2 {
    font-size: 2rem;
    color: #115e59;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    transform: translateX(5px);
}

.contact-link i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-link span {
    color: #1e293b;
    font-weight: 500;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-card {
        max-width: 400px;
        margin: 0 auto;
        position: static;
    }

    .bio-section {
        padding-left: 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .chairman-hero h1 {
        font-size: 2.5rem;
    }
}

/* Custom Wave Fill for Chairman Page */
.chairman-hero .wave-bottom .shape-fill {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .chairman-hero .glass-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }
}