/* ============================================
   PAGES.CSS - LIGHT PROFESSIONAL THEME
   Mobile Responsive About Page
   ============================================ */

/* ============================================
   PAGE HERO SECTION
   ============================================ */

   .page-hero {
    margin-top: 70px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 28px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.badge-item:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.badge-item i {
    color: var(--primary-color);
}

.badge-item:hover i {
    color: white;
}

/* ============================================
   ABOUT STORY SECTION
   ============================================ */

.about-story {
    padding: 60px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    display: none;
}

.story-content {
    padding: 20px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.lead-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.mission-points {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.point-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-sm);
}

.point-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-weight: 700;
}

.point-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SHOWCASE
   ============================================ */

.features-showcase {
    padding: 60px 0;
    background: var(--background-alt);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 36px;
    color: white;
    z-index: 2;
    position: relative;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 16px;
    z-index: 1;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-list i {
    color: var(--success-color);
    font-size: 12px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-box {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 2s ease-out;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-md);
    margin: 5px auto;
}

.icon-circle {
    display: none;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.value-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--surface-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 60px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 14px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--accent-color);
    font-size: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-large {
    padding: 14px 36px;
    font-size: 17px;
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--success-color);
}

.cta-shapes {
    display: none;
}

.hero-shapes {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .page-title {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .story-grid {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    /* Page Hero */
    .page-hero {
        padding: 60px 0 40px;
        margin-top: 64px;
    }
    
    .page-title {
        font-size: 30px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .hero-badges {
        gap: 8px;
    }
    
    .badge-item {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Story Section */
    .about-story {
        padding: 40px 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .story-content p {
        font-size: 15px;
    }
    
    .mission-points {
        margin-top: 24px;
        gap: 16px;
    }
    
    .point-item {
        padding: 16px;
    }
    
    .point-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }
    
    .point-text h4 {
        font-size: 16px;
    }
    
    /* Showcase Section */
    .features-showcase {
        padding: 40px 0;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-card {
        padding: 24px;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-box {
        padding: 24px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Values Section */
    .values-section {
        padding: 40px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 24px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content > p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 26px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* ============================================
   ANIMATIONS - Kept Simple for Performance
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}