/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0d5a26 0%, #117331 25%, #1a8f42 50%, #117331 75%, #0d5a26 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero .hero-subtitle {
    font-size: clamp(10px, 0.85vw, 12px);
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    color: #FFD700;
}

.about-hero .hero-description {
    font-size: clamp(13px, 1vw, 15px);
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.about-section {
    min-height: calc(100vh - 80px);
    background-color: #f5f5f5;
    padding: 60px 20px 80px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.story-content {
    padding-right: 20px;
}

.section-label {
    color: #117331;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #117331;
}

.story-content h2 {
    font-size: clamp(28px, 2.5vw, 36px);
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.story-content p {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #117331;
}

.stat-card h3 {
    font-size: clamp(32px, 3vw, 42px);
    color: #117331;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: clamp(13px, 1vw, 14px);
    color: #666;
    line-height: 1.5;
}

/* Mission, Vision, Values Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mvv-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-card {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffd5d5 100%);
}

.vision-card {
    background: linear-gradient(135deg, #e5f0ff 0%, #d5e5ff 100%);
}

.values-card {
    background: linear-gradient(135deg, #e5ffe5 0%, #d5ffd5 100%);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mission-card .mvv-icon {
    background: #dc3545;
    color: white;
}

.vision-card .mvv-icon {
    background: #2196F3;
    color: white;
}

.values-card .mvv-icon {
    background: #117331;
    color: white;
}

.mvv-card h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: clamp(13px, 1vw, 15px);
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-section .section-label {
    justify-content: center;
    margin-bottom: 15px;
}

.team-section h2 {
    font-size: clamp(28px, 2.5vw, 36px);
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.team-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 0 0 calc(25% - 18.75px);
    min-width: 0;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-avatar span {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
}

.team-card h4 {
    font-size: clamp(15px, 1.2vw, 17px);
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card p {
    font-size: clamp(12px, 0.95vw, 13px);
    color: #999;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #117331;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #117331;
}

.carousel-btn:hover {
    background: #117331;
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 1024px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-card {
        flex: 0 0 calc(33.333% - 16.67px);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mvv-card {
        padding: 35px 25px;
    }
    
    .team-card {
        flex: 0 0 calc(50% - 12.5px);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        flex: 0 0 100%;
    }
    
    .team-carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #117331;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #117331 0%, #0d5a26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.stat-card h3 {
    font-size: clamp(28px, 2.5vw, 36px);
    color: #117331;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-card p {
    font-size: clamp(13px, 1vw, 14px);
    color: #666;
}

/* Core Values */
.values-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.values-section h2 {
    font-size: clamp(24px, 2vw, 28px);
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-card {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #117331;
}

.value-card h4 {
    font-size: clamp(18px, 1.4vw, 20px);
    color: #117331;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: clamp(13px, 1vw, 14px);
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 15px 60px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-content,
    .values-section {
        padding: 30px 25px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 10px 50px;
    }
    
    .about-content,
    .values-section {
        padding: 25px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
}
