/* ========================================
   ABOUT US PAGE SPECIFIC STYLES
   ======================================== */

/* PAGE HERO */
.page-hero {
    margin-top: 80px;
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero {
    background-image: url('https://images.unsplash.com/photo-1485846234645-a62644f84728?w=1920&q=80');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 77, 48, 0.9) 0%,
        rgba(26, 127, 78, 0.7) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-yellow), var(--vibrant-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--bright-green);
    font-weight: 500;
}

/* OUR STORY TIMELINE */
.our-story {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark-green), var(--darker-green));
}

.story-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    display: none;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
    border: 4px solid var(--bright-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(26, 127, 78, 0.5);
    position: relative;
    z-index: 10;
}

.timeline-content {
    flex: 1;
    background: rgba(26, 127, 78, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--bright-yellow);
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--bright-yellow);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* MISSION, VISION & VALUES */
.mission-values {
    padding: var(--section-padding) 0;
    background: var(--darker-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.value-card {
    background: rgba(26, 127, 78, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--bright-yellow);
    box-shadow: 0 20px 60px rgba(255, 217, 61, 0.3);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--bright-yellow), var(--vibrant-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--bright-yellow);
    margin-bottom: 20px;
}

.value-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CORE PRINCIPLES */
.core-principles {
    background: rgba(13, 77, 48, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 30px;
    padding: 60px;
}

.principles-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--bright-yellow);
    text-align: center;
    margin-bottom: 50px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.principle-item {
    text-align: center;
    padding: 25px;
    background: rgba(26, 127, 78, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.principle-item:hover {
    transform: translateY(-5px);
    border-color: var(--bright-yellow);
}

.principle-item i {
    font-size: 2rem;
    color: var(--bright-green);
    margin-bottom: 15px;
    display: block;
}

.principle-item h4 {
    color: var(--bright-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.principle-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* LEADERSHIP SECTION */
.leadership {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--darker-green), var(--dark-green));
}

.leader-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    background: rgba(26, 127, 78, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 30px;
    padding: 50px;
}

.leader-image {
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--bright-yellow);
}

.leader-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--bright-yellow), var(--vibrant-red));
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.leader-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.leader-name {
    font-family: var(--font-serif);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--bright-yellow), var(--vibrant-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-title {
    font-size: 1.3rem;
    color: var(--bright-green);
    font-weight: 600;
}

.leader-bio p,
.leader-philanthropy p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.leader-bio ul,
.leader-philanthropy ul {
    list-style: none;
    padding-left: 0;
}

.leader-bio li,
.leader-philanthropy li {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.leader-bio li::before,
.leader-philanthropy li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--bright-yellow);
    font-size: 1.2rem;
}

.leader-philanthropy {
    background: rgba(13, 77, 48, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.leader-philanthropy h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--bright-yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.leader-philanthropy h4 i {
    color: var(--vibrant-red);
}

.leader-quote {
    background: linear-gradient(135deg, rgba(26, 127, 78, 0.4), rgba(230, 57, 70, 0.2));
    border-left: 4px solid var(--bright-yellow);
    border-radius: 15px;
    padding: 30px 40px;
    position: relative;
}

.leader-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--bright-yellow);
    opacity: 0.5;
}

.leader-quote p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 15px;
    padding-left: 40px;
}

.leader-quote cite {
    display: block;
    text-align: right;
    color: var(--bright-yellow);
    font-weight: 600;
    font-style: normal;
}

/* AWARDS & RECOGNITION */
.awards-section {
    padding: var(--section-padding) 0;
    background: var(--dark-green);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    background: rgba(26, 127, 78, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.award-item:hover {
    transform: translateY(-10px);
    border-color: var(--bright-yellow);
    box-shadow: 0 20px 60px rgba(255, 217, 61, 0.3);
}

.award-item i {
    font-size: 3rem;
    color: var(--bright-yellow);
    margin-bottom: 20px;
    display: block;
}

.award-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.award-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA SECTION */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-green), var(--dark-green));
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--bright-yellow), var(--vibrant-red), var(--bright-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--bright-yellow), #ffeb3b);
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--vibrant-red), #ff6b6b);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}