/* =========================================
   BRIGHT ANGEL - ABOUT PAGE UI
   ========================================= */

/* --- 1. Inner Page Hero --- */
.about-hero {
    /* 150px top padding perfectly clears your fixed header */
    padding: 150px 20px 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-bottom: 1px solid #cbd5e1;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.about-hero p.hero-subtitle {
    color: #004aad;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

/* --- 2. Company Overview --- */
.about-overview {
    padding: 80px 0;
    background: #ffffff;
}

.about-poster-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-poster-wrapper img:hover {
    transform: translateY(-5px);
}

.about-overview-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-overview-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- 3. Expertise Section --- */
.expertise-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.expertise-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.08);
    border-color: #004aad;
}

.expertise-card p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.expertise-card span.highlight {
    color: #e63946; /* Matching your original red emphasis */
    font-weight: 600;
}

/* --- 4. Mission & Vision Section --- */
.mv-section {
    padding: 80px 0;
    background: #ffffff;
}

.mv-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.mv-card span.highlight {
    color: #e63946;
    font-weight: 600;
}

/* --- 5. Global Presence Timeline --- */
.timeline-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

/* The vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #004aad;
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* The timeline dots */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #004aad;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.15);
    z-index: 2;
}

.timeline-date {
    display: inline-block;
    background: #004aad;
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.08);
    border-color: #004aad;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.timeline-content p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-content span.highlight {
    color: #e63946;
    font-weight: 600;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .about-hero { padding: 130px 20px 60px 20px; }
    .about-hero h1 { font-size: 2.4rem; }
    .about-overview-text h2 { font-size: 1.8rem; margin-top: 30px; text-align: center; }
    .timeline-container { padding-left: 30px; }
    .timeline-item::before { left: -26px; }
    .timeline-container::before { left: 4px; }
}