/* ============================================
   SEPARATE PAGES STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    font-family: var(--font-heading);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb span:last-child {
    opacity: 0.8;
}

/* About Content Section */
.about-content-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.mission-box {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    border: 2px solid var(--accent-orange);
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-brown);
    max-width: 900px;
    margin: 0 auto;
}

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

.content-block {
    margin-bottom: 4rem;
}

.content-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
    border-radius: 12px;
    border: 2px solid #FFE8D0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

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

/* Values Block */
.values-block {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
    padding: 3rem;
    border-radius: 12px;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

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

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-orange), #FFE8D0);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 45%;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.timeline-content {
    width: 45%;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
    border-radius: 16px;
    margin-top: 4rem;
}

.about-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Button Overrides for better visibility on light background */
.about-cta .btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;  /* Extra rounded */
    transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.about-cta .btn-secondary {
    background-color: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;  /* Extra rounded */
    transition: all 0.3s ease;
}

.about-cta .btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .mission-box {
        padding: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        width: auto;
        text-align: left;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .about-cta h3 {
        font-size: 1.8rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta .btn-primary,
    .about-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   PATHWAYS PAGE STYLES
   ============================================ */

.pathways-content-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.pathways-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pathways-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.pathways-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.pathway-highlights {
    margin: 2rem 0;
}

.pathway-highlights h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.pathway-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: #666;
}

.benefits-section-pathways {
    margin-top: 6rem;
    text-align: center;
}

.benefits-section-pathways h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

.pathway-comparison {
    margin-top: 6rem;
}

.pathway-comparison h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: white;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.comparison-table tbody tr:hover {
    background: var(--off-white);
}

.pathways-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D0 100%);
    border-radius: 16px;
    margin-top: 6rem;
}

.pathways-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.pathways-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Pathways CTA Button Overrides for better visibility and rounded corners */
.pathways-cta .btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;  /* Extra rounded */
    transition: all 0.3s ease;
}

.pathways-cta .btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.pathways-cta .btn-secondary {
    background-color: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;  /* Extra rounded */
    transition: all 0.3s ease;
}

.pathways-cta .btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

/* Pathways CTA Responsive Styles */
@media (max-width: 768px) {
    .pathways-cta {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }
    
    .pathways-cta h3 {
        font-size: 1.8rem;
    }
    
    .pathways-cta p {
        font-size: 1rem;
    }
    
    .pathways-cta .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pathways-cta .btn-primary,
    .pathways-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

