/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--text-light);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.about-hero .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Introduction Section */
.about-intro {
    padding: 80px 0;
    background-color: var(--background-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.intro-text {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-green);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-description:last-child {
    margin-bottom: 0;
}

/* Vision Section */
.about-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.vision-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 15px;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
    position: relative;
    z-index: 1;
}

.vision-card .section-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Mission Section */
.about-mission {
    padding: 80px 0;
    background-color: var(--background-light);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.mission-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 15px;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-align: center;
    border-top: 4px solid var(--primary-green);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(141, 198, 63, 0.3);
}

.mission-card .section-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
}

/* Team Section */
.about-team {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--text-light) 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.about-team .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(141, 198, 63, 0.2);
}

.team-photo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(141, 198, 63, 0.3);
    background: var(--background-light);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(141, 198, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-photo-overlay {
    opacity: 1;
}

.team-photo-overlay i {
    font-size: 4rem;
    color: var(--primary-green);
}

.team-photo-container img[src*="placeholder"] {
    display: none;
}

/* Show placeholder when image fails to load */
.team-photo-container img[style*="display: none"] ~ .team-photo-overlay,
.team-photo-container:has(img[style*="display: none"]) .team-photo-overlay {
    opacity: 1 !important;
}

.team-info {
    text-align: center;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.team-qualifications,
.team-experience {
    margin-bottom: 2rem;
    text-align: right;
}

.qualifications-title,
.experience-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qualifications-title i,
.experience-title i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifications-list li {
    padding: 0.5rem 0;
    padding-right: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.qualifications-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--primary-green);
}

.team-experience p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.team-quote {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-right: 4px solid var(--primary-green);
    margin-top: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    padding-right: 2rem;
    text-align: justify;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .intro-text {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-description,
    .vision-text,
    .mission-text {
        font-size: 1.1rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-photo-container {
        width: 150px;
        height: 150px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .about-intro,
    .about-vision,
    .about-mission,
    .about-team {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-text,
    .vision-card,
    .mission-card {
        padding: 1.5rem;
    }
}

