/* ============================================
   ABOUT PAGE STYLES - Production Ready
   ============================================ */

/* Hero Stats Section */
.hero-stats {
    background: #FFFFFF;
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(7, 12, 52, 0.08);
    padding: 2.5rem 2rem;
}

.stat-block {
    text-align: center;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(42, 53, 130, 0.2), transparent);
}

.stat-value {
    font-family: 'Prata', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #EB670E;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #070C34;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-subtext {
    font-size: 0.85rem;
    color: #2A3582;
    margin-top: 0.25rem;
}

/* Company Overview Section */
.company-overview {
    padding: 5rem 0;
    background: #F4EEEA;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content {
    position: relative;
}

.overline {
    font-family: 'FigTree', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #EB670E;
    margin-bottom: 1rem;
    display: block;
}

.overview-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #070C34;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.overview-text {
    font-size: 1.125rem;
    color: #2A3582;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.overview-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #070C34 0%, #2A3582 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 103, 14, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-item:last-child {
    border-bottom: none;
}

.pillar-marker {
    width: 48px;
    height: 48px;
    background: rgba(235, 103, 14, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB670E;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-content h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pillar-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Mission Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: #FFFFFF;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mv-card.mission {
    background: linear-gradient(135deg, #F4EEEA 0%, #FFFFFF 100%);
    border: 1px solid rgba(235, 103, 14, 0.1);
}

.mv-card.vision {
    background: linear-gradient(135deg, #070C34 0%, #1a1f4e 100%);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(7, 12, 52, 0.15);
}

.mv-icon {
    margin-bottom: 2rem;
}

.mv-card.mission .mv-icon svg {
    color: #EB670E;
}

.mv-card.vision .mv-icon svg {
    color: #EB670E;
}

.mv-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mv-card.mission .mv-title {
    color: #070C34;
}

.mv-card.vision .mv-title {
    color: #FFFFFF;
}

.mv-text {
    font-size: 1.125rem;
    line-height: 1.9;
}

.mv-card.mission .mv-text {
    color: #2A3582;
}

.mv-card.vision .mv-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Certifications Grid */
.certifications-detailed {
    padding: 5rem 0;
    background: #F4EEEA;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cert-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EB670E 0%, #2A3582 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-card:hover {
    box-shadow: 0 20px 40px rgba(7, 12, 52, 0.1);
}

.cert-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(235, 103, 14, 0.1) 0%, rgba(42, 53, 130, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge span {
    font-family: 'Prata', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #EB670E;
}

.cert-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 0.75rem;
}

.cert-detail {
    font-size: 1rem;
    color: #2A3582;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cert-number {
    font-family: 'FigTree', monospace;
    font-size: 0.9rem;
    color: #EB670E;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cert-date {
    font-size: 0.85rem;
    color: rgba(42, 53, 130, 0.7);
    margin-top: 0.5rem;
}

/* Timeline Section */
.journey-timeline {
    padding: 5rem 0;
    background: #FFFFFF;
}

.timeline-vertical {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #EB670E 0%, #2A3582 50%, #EB670E 100%);
    opacity: 0.2;
}

.timeline-node {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
}

.timeline-date {
    width: 120px;
    flex-shrink: 0;
    text-align: right;
}

.timeline-year {
    font-family: 'Prata', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #EB670E;
    line-height: 1.2;
}

.timeline-month {
    font-size: 0.9rem;
    color: #2A3582;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content {
    flex: 1;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(42, 53, 130, 0.08);
}

.timeline-node:last-child .timeline-content {
    border-bottom: none;
}

.timeline-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 1rem;
    color: #2A3582;
    line-height: 1.7;
}

.timeline-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(235, 103, 14, 0.1);
    color: #EB670E;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 1rem;
}

/* Values Section */
.values-redesigned {
    padding: 5rem 0;
    background: linear-gradient(135deg, #070C34 0%, #2A3582 100%);
    position: relative;
    overflow: hidden;
}

.values-redesigned::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 103, 14, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.values-redesigned .section-title {
    color: #FFFFFF;
}

.values-redesigned .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.values-redesigned .section-line {
    background: linear-gradient(90deg, #EB670E, #FFFFFF);
}

.values-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(235, 103, 14, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #EB670E 0%, #d4560c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prata', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(235, 103, 14, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-block:not(:last-child)::after {
        display: none;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-vertical::before {
        left: 80px;
    }
    
    .timeline-date {
        width: 80px;
    }
    
    .timeline-year {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }
    
    .overview-title {
        font-size: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .certs-grid {
        grid-template-columns: 1fr;
    }
    
    .values-carousel {
        grid-template-columns: 1fr;
    }
    
    .timeline-vertical::before {
        display: none;
    }
    
    .timeline-node {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-date {
        width: auto;
        text-align: left;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .timeline-badge {
        display: block;
        margin: 0.5rem 0 0 0;
    }
}