/* ===== ABOUT STORY ===== */
.about-story {
    padding: var(--section-padding);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(26, 86, 219, 0.1);
    border-left: 3px solid var(--primary-blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 24px;
}

.story-highlight i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.story-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-white);
    font-size: 1rem;
}

.story-visual {
    position: relative;
}

.story-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-img-card {
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.story-img-card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.story-img-card:nth-child(1) i {
    color: #ef4444;
}

.story-img-card:nth-child(2) i {
    color: #0ea5e9;
}

.story-img-card:nth-child(3) i {
    color: #22c55e;
}

.story-img-card:nth-child(4) i {
    color: #f59e0b;
}

.story-img-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.story-img-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0;
}

/* ===== VISION & MISSION ===== */
.vision-section {
    padding: var(--section-padding);
    background: rgba(15, 33, 64, 0.3);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 0 0 3px 3px;
}

.vision-card:nth-child(1)::before {
    background: var(--gradient-blue);
}

.vision-card:nth-child(2)::before {
    background: var(--gradient-gold);
}

.vision-card:nth-child(3)::before {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.vision-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.vision-card:nth-child(1) .vision-card-icon {
    background: rgba(26, 86, 219, 0.12);
    color: var(--primary-blue);
}

.vision-card:nth-child(2) .vision-card-icon {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-gold);
}

.vision-card:nth-child(3) .vision-card-icon {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.vision-card h3 {
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: var(--section-padding);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--accent-teal), var(--accent-gold));
}

.timeline-item {
    padding: 0 0 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-blue);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.3), 0 0 15px rgba(26, 86, 219, 0.2);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: 24px;
}

.timeline-year {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(26, 86, 219, 0.15);
    border-radius: var(--radius-xl);
    color: var(--accent-teal);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== ABOUT BUSINESS OVERVIEW ===== */
.business-overview {
    padding: var(--section-padding);
    background: rgba(15, 33, 64, 0.3);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.overview-card {
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.overview-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overview-card:nth-child(1) .overview-card-icon {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.overview-card:nth-child(2) .overview-card-icon {
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
}

.overview-card:nth-child(3) .overview-card-icon {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.overview-card:nth-child(4) .overview-card-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.overview-card-text h4 {
    margin-bottom: 8px;
}

.overview-card-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.overview-card-text a {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.overview-card-text a:hover {
    gap: 8px;
}

/* ===== LIGHT THEME — ABOUT OVERRIDES ===== */
[data-theme="light"] .story-highlight {
    background: rgba(26, 86, 219, 0.05);
}

[data-theme="light"] .vision-section {
    background: rgba(226, 232, 240, 0.5);
}

[data-theme="light"] .business-overview {
    background: rgba(226, 232, 240, 0.5);
}

[data-theme="light"] .timeline-content {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
}

/* ===== ABOUT RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        left: 0 !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}