/* ============================================
   ABOUT PAGE - GREENFAJ SOLUTIONS
   ============================================ */

/* Hero Section with Video */
.page-hero.video-hero {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 10%;
}

.page-hero.video-hero .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero.video-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-hero.video-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero.video-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero.video-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Our Story Section */
.about-story {
    padding: 5rem 10%;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stat {
    text-align: center;
}

.story-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.story-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 10%;
    background-color: var(--bg-soft);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission.card,
.vision.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mission.card:hover,
.vision.card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.mission h2,
.vision h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission p,
.vision p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Core Values Section */
.values {
    padding: 5rem 10%;
    background-color: var(--white);
    text-align: center;
}

.values .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.values-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-soft);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CEO Section */
.ceo-section {
    padding: 5rem 10%;
    background-color: var(--bg-soft);
}

.ceo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-content .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ceo-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.ceo-content h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ceo-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ceo-quote {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ceo-quote i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

.ceo-quote p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1rem;
}

.ceo-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.ceo-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ceo-contact-link:hover {
    color: var(--accent-gold);
}

.ceo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ceo-image:hover img {
    transform: scale(1.03);
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ceo-badge i {
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 10%;
    background-color: var(--white);
    text-align: center;
}

.team-section .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-green);
}

.team-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-expertise {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-social a {
    width: 28px;
    height: 28px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.75rem;
}

.team-social a:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

/* ========== INDUSTRY ADVOCACY SECTION ========== */
.advocacy-section {
    padding: 5rem 10%;
    background: linear-gradient(135deg, var(--bg-soft), var(--white));
    text-align: center;
}

.advocacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.advocacy-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.advocacy-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.advocacy-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.advocacy-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* ========== TRAINING & DEVELOPMENT SECTION WITH VIDEO BACKGROUND ========== */
.training-section {
    position: relative;
    padding: 5rem 10%;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}

.training-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.training-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 42, 0.45);
    z-index: 1;
}

.training-section .container {
    position: relative;
    z-index: 2;
}

.training-content {
    max-width: 900px;
    margin: 0 auto;
}

.training-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.training-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.training-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .mv-grid,
    .ceo-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-story,
    .mission-vision,
    .values,
    .ceo-section,
    .team-section,
    .advocacy-section,
    .training-section {
        padding: 3rem 5%;
    }
    
    .page-hero.video-hero {
        min-height: 300px;
        padding: 2rem 5%;
    }
    
    .page-hero.video-hero h1 {
        font-size: 1.8rem;
    }
    
    .ceo-content {
        order: 2;
        text-align: center;
    }
    
    .ceo-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ceo-contact {
        justify-content: center;
    }
    
    .story-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-text h2,
    .values h2,
    .team-section h2,
    .ceo-content h2,
    .advocacy-section h2,
    .training-section h2 {
        font-size: 1.5rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission.card,
    .vision.card {
        padding: 1.5rem;
    }
    
    .mission h2,
    .vision h2 {
        font-size: 1.3rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .ceo-quote p {
        font-size: 0.9rem;
    }
    
    .advocacy-stats,
    .training-features {
        gap: 1rem;
    }
    
    .stat-item i,
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .stat-item span,
    .feature-item span {
        font-size: 0.7rem;
    }
    
    .training-section {
        min-height: 400px;
    }
}