/* ============================================
   ABOUT PAGE — STYLES
   ============================================ */

/* ---------- Our Story ---------- */
.our-story {
    padding: 100px 0;
}

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

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--lavender), rgba(0, 113, 188, 0.2));
    border-radius: var(--radius-lg);
    z-index: -1;
}

.story-content .section-tag {
    margin-bottom: 16px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.story-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.story-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.story-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ---------- Director ---------- */
.director-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.director-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 850px;
    margin: 0 auto;
}

.director-avatar {
    width: 140px;
    height: 140px;
    min-width: 140px;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.director-info h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.director-title {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.director-info p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.director-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.director-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-purple);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.director-contact a:hover {
    color: var(--primary);
}

/* ---------- Company Details ---------- */
.company-details {
    padding: 100px 0;
}

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

.detail-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--lavender);
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.08), rgba(212, 178, 228, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.detail-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--deep-purple);
}

.detail-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ---------- Mission & Vision ---------- */
.mission-vision {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.mv-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
}

.mv-card.mission {
    background: linear-gradient(160deg, var(--deep-purple), #5e4a9e);
    color: var(--white);
}

.mv-card.vision {
    background: linear-gradient(160deg, var(--primary), #0095e8);
    color: var(--white);
}

.mv-card.values {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.mv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mv-card.mission .mv-icon,
.mv-card.vision .mv-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.mv-card.values .mv-icon {
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1), rgba(212, 178, 228, 0.2));
    color: var(--primary);
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.mv-card.mission h3,
.mv-card.vision h3 {
    color: var(--white);
}

.mv-card.values h3 {
    color: var(--deep-purple);
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .story-layout {
        grid-template-columns: 1fr;
    }

    .story-image img {
        height: 340px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .director-contact {
        justify-content: center;
    }

    .story-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .story-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}