/* ============================================
   ABOUT / OUR STORY PAGE STYLES
   ============================================ */

.nav-links a.active {
    color: var(--blue);
    background: rgba(46,109,180,0.06);
}

/* === ABOUT HERO === */
.about-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff9f0 50%, #fff0f0 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-hero-text .section-tag {
    margin-bottom: 8px;
}

.about-hero-text h1 {
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.about-tagline {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-hero-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-image .photo-placeholder {
    min-height: 360px;
}


/* === OUR STORY === */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.story-inner h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.story-inner p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}


/* === WHO WE SERVE === */
.about-serve {
    padding: 80px 0;
    background: var(--bg-light);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.serve-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.serve-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.serve-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy);
}


/* === OUR APPROACH === */
.about-approach {
    padding: 100px 0;
    background: var(--white);
}

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

.approach-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.approach-icon-svg {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
}

.approach-icon-svg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* === RESPONSIVE === */
@media (max-width: 968px) {
    .about-hero-grid { grid-template-columns: 1fr; }
    .about-hero-text h1 { font-size: 2.2rem; }
    .about-hero-image { min-height: 280px; max-width: 500px; margin: 0 auto; }
    .serve-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .approach-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .story-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-hero { padding: 60px 0 40px; }
    .about-hero-text h1 { font-size: 1.8rem; }
    .about-tagline { font-size: 1.1rem; }
}
