/**
 * ============================================================================
 * ABOUT PAGE STYLES (Tier 3 - Page Specific)
 * ============================================================================
 * Styles specific to /v1/home/about.php
 * Path: /v1/home/assets/css/about.css
 * ============================================================================
 */

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    margin: 40px 0;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
    color: white;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================================================
   ABOUT SECTIONS
   ======================================================================== */

.about-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    margin: 80px 0;
}

.about-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================================
   WHO WE ARE CARDS
   ======================================================================== */

.who-we-are-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================================================
   MISSION & VISION
   ======================================================================== */

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    background: #f8f9fa;
}

.vision-card {
    border-left-color: #764ba2;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-card h3 i,
.vision-card h3 i {
    font-size: 2rem;
    color: #667eea;
}

.vision-card h3 i {
    color: #764ba2;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ========================================================================
   WHY FEES BENEFITS
   ======================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================================================
   HOW IT WORKS PROCESS
   ======================================================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.step {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================================================
   CORE VALUES
   ======================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card:nth-child(2) {
    border-top-color: #764ba2;
}

.value-card:nth-child(3) {
    border-top-color: #f093fb;
}

.value-card:nth-child(4) {
    border-top-color: #4facfe;
}

.value-card:nth-child(5) {
    border-top-color: #00f2fe;
}

.value-card:nth-child(6) {
    border-top-color: #43e97b;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================================================
   CTA SECTION
   ======================================================================== */

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    font-size: 1rem;
    padding: 15px 40px;
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .about-section {
        margin: 50px 0;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .who-we-are-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .about-card {
        padding: 25px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .step h4 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.85rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta {
        padding: 40px 20px;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .about-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .values-grid {
        gap: 15px;
    }

    .value-card {
        padding: 20px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }
}
