/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: #F9F6F1;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
}

.hero p {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}
.section:first-child {
    margin-top: 80px;
}
.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #b5a480;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(181, 164, 128, 0.15);
}

    .section-content p {
        font-size: 1.15rem;
        color: #4a5568;
        margin-bottom: 20px;
        text-align: justify;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe5d9 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(181, 164, 128, 0.3);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: #b5a480;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    color: #b5a480;
    margin-bottom: 15px;
}

.value-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #b5a480;
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(181, 164, 128, 0.15);
}

.timeline-year {
    font-size: 1.8rem;
    color: #b5a480;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #b5a480;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #faf8f5;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem;
    color: #F9F6F1;
}

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .cta-section p {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
        line-height: 1.8;
    }

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #9B8570;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-intro h2,
    .pillars-title,
    .commitment-title,
    .impact-title,
    .cta-section h2 {
        font-size: 2rem;
        color: white
    }

    .pillars-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
