﻿/* About Us Page Sections - Enhanced Styles v2.0 */
/* ============================================= */

:root {
    --primary-color: #D97706;
    --primary-dark: #B45309;
    --primary-light: #34D399;
    --secondary-color: #D97706;
    --dark-color: #1a1a1a;
    --text-dark: #333;
    --text-muted: #666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Edit button styles are centralized in style.css */
/* See: "UNIFIED EDIT BUTTON STYLES" section */

/* Section containers for edit button positioning */
.about-parallax-section,
.about-challenges-section,
.about-team-section,
.about-timeline-section,
.about-testimonials-section,
.about-intro-section,
.about-impact-section,
.about-values-section,
.about-cta-section {
    position: relative;
    overflow: hidden;
}

/* ============================================= */
/* ANIMATION CLASSES */
/* ============================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.fade-up { transform: translateY(40px); }
.animate-on-scroll.fade-down { transform: translateY(-40px); }
.animate-on-scroll.fade-left { transform: translateX(40px); }
.animate-on-scroll.fade-right { transform: translateX(-40px); }
.animate-on-scroll.zoom-in { transform: scale(0.9); }
.animate-on-scroll.flip-in { transform: rotateY(90deg); }
.animate-on-scroll.scale-in { transform: scale(0); }

.animate-on-scroll.animated.fade-up,
.animate-on-scroll.animated.fade-down { transform: translateY(0); }
.animate-on-scroll.animated.fade-left,
.animate-on-scroll.animated.fade-right { transform: translateX(0); }
.animate-on-scroll.animated.zoom-in,
.animate-on-scroll.animated.scale-in { transform: scale(1); }
.animate-on-scroll.animated.flip-in { transform: rotateY(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ============================================= */
/* SECTION COMMON STYLES */
/* ============================================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: rgba(var(--cf-primary-rgb), 0.1);
    border-radius: 30px;
}

.section-eyebrow.light {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.section-header h2,
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Shapes */
.section-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.shape-wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f5f5' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.shape-curve {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,100 Q720,0 1440,100 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.shape-diagonal {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f5f5f5' d='M0,100 L1440,30 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* ============================================= */
/* PARALLAX HERO SECTION */
/* ============================================= */

.parallax-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}

/* Parallax Background Image */
.parallax-section .parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 200%;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

/* Fallback for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .parallax-section .parallax-bg {
        top: 0;
        height: 100%;
        transform: none !important;
    }
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(var(--cf-primary-rgb), 0.2);
    border: 1px solid rgba(var(--cf-primary-rgb), 0.4);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.parallax-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.title-accent {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.parallax-text {
    color: rgba(255,255,255,0.95);
    font-size: 1.35rem;
    line-height: 1.9;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
    max-width: 700px;
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================= */
/* INTRO SECTION */
/* ============================================= */

.about-intro-section {
    padding: 100px 20px 140px;
    background: var(--white);
}

.about-intro-section .section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.intro-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.intro-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 30px;
}

.intro-column p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-column p:last-child {
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.2rem !important;
    color: var(--text-dark) !important;
}

.intro-column strong {
    color: var(--secondary-color);
}

/* ============================================= */
/* IMPACT STATISTICS SECTION */
/* ============================================= */

.about-impact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cf-accent) 0%, #022C22 100%);
    position: relative;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.impact-stat {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.impact-stat:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

/* Only add + suffix on About Us page impact section where no separate suffix element exists */
.about-impact-section .stat-number::after {
    content: '+';
    font-size: 2rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.impact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(var(--cf-primary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--cf-primary-rgb), 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================= */
/* VISION & MISSION SECTION */
/* ============================================= */

.vision-mission-section {
    padding: 100px 20px 140px;
    background: var(--light-bg);
    position: relative;
}

.vision-mission-row {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vision-box, .mission-box {
    flex: 1;
}

.vision-mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.vision-mission-card:hover::before {
    transform: scaleX(1);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon-wrapper {
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(var(--cf-primary-rgb), 0.3);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(var(--cf-primary-rgb), 0.3); }
    50% { box-shadow: 0 10px 40px rgba(var(--cf-primary-rgb), 0.5), 0 0 0 15px rgba(var(--cf-primary-rgb), 0.1); }
}

.card-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--cf-primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.vision-mission-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.vision-mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.vision-points, .mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-points li, .mission-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.vision-points li:last-child, .mission-points li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================= */
/* CORE VALUES SECTION */
/* ============================================= */

.about-values-section {
    padding: 100px 20px;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform var(--transition-normal);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================= */
/* CHALLENGES SECTION */
/* ============================================= */

.challenges-section {
    padding: 100px 20px 140px;
    background: var(--white);
    position: relative;
}

.challenges-grid {
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.challenge-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid #e8e8e8;
    height: 100%;
}

.challenge-card:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.challenge-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.challenge-card:hover .challenge-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(var(--cf-primary-rgb), 0.4);
}

.challenge-icon {
    font-size: 2.2rem;
}

.challenge-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.challenge-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.challenge-stat {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.stat-highlight {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.challenges-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* ============================================= */
/* TEAM SECTION */
/* ============================================= */

.about-team-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    perspective: 1000px;
    height: 420px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-card-front {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.team-card-back {
    transform: rotateY(180deg);
    color: white;
}

.team-photo-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.team-photo-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.team-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.team-back-content {
    padding: 20px;
}

.team-back-content h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.team-card-back p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-social {
    margin-top: 10px;
}

.social-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.social-icon:hover {
    opacity: 1;
}

/* ============================================= */
/* TIMELINE SECTION */
/* ============================================= */

.about-timeline-section {
    padding: 100px 20px;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 30px;
    z-index: 2;
}

.timeline-item.left .timeline-marker {
    right: -12px;
}

.timeline-item.right .timeline-marker {
    left: -12px;
}

.marker-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

.timeline-content {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 25px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    margin: 0 0 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================= */
/* TESTIMONIALS SECTION */
/* ============================================= */

.about-testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #f0f4f8 100%);
}

.testimonials-carousel {
    position: relative;
    max-width: 850px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeSlideIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    border: 1px solid rgba(var(--cf-primary-rgb), 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--cf-primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-quote-icon {
    font-size: 4.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 30px;
    position: relative;
}

.testimonial-rating {
    margin-bottom: 30px;
}

.testimonial-rating .star {
    font-size: 1.4rem;
    margin: 0 4px;
    color: #e0e0e0;
    transition: all var(--transition-fast);
}

.testimonial-rating .star.filled {
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-photo,
.author-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--cf-primary-rgb), 0.25);
}

.author-photo-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Carousel Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Oval/pill-shaped dot indicators */
.testimonial-dots .dot {
    width: 32px;
    height: 10px;
    border-radius: 20px;
    background: rgba(var(--cf-primary-rgb), 0.25);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    padding: 0;
}

.testimonial-dots .dot:hover {
    background: rgba(var(--cf-primary-rgb), 0.5);
    transform: scaleY(1.2);
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    width: 48px;
    box-shadow: 0 2px 8px rgba(var(--cf-primary-rgb), 0.4);
}

/* ============================================= */
/* CTA SECTION */
/* ============================================= */

.about-cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(var(--cf-primary-rgb), 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(var(--cf-primary-rgb), 0.15) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(var(--cf-primary-rgb), 0.2);
    border: 1px solid rgba(var(--cf-primary-rgb), 0.4);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(var(--cf-primary-rgb), 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--cf-primary-rgb), 0.5);
    color: white;
}

.btn-primary svg {
    transition: transform var(--transition-normal);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(var(--cf-primary-rgb), 0.1) 0%, transparent 70%);
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
    background: radial-gradient(circle, rgba(var(--cf-primary-rgb), 0.08) 0%, transparent 70%);
}

/* ============================================= */
/* RESPONSIVE STYLES */
/* ============================================= */

@media (max-width: 1024px) {
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
    
    .parallax-title {
        font-size: 2.2rem;
    }
    
    .parallax-text {
        font-size: 1.1rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    .intro-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .vision-mission-row {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 18px !important;
        right: auto !important;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .team-card {
        height: 380px;
    }
    
    .team-card-front,
    .team-card-back {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .challenges-grid {
        gap: 20px;
    }
    
    .challenge-card {
        padding: 30px 20px;
    }
}

/* Page Content Section (for WordPress content) */
.page-content-section {
    padding: 60px 20px;
    background: white;
}

.page-entry-content {
    max-width: 900px;
    margin: 0 auto;
}
