/* ═══════════════════════════════════════════════════════
   About Page Styles
   All classes prefixed with about- to avoid app-style conflicts
   ═══════════════════════════════════════════════════════ */

/* ── Hero Header Card ── */
.about-hero-card {
    background: linear-gradient(135deg, #1a2332 0%, #2a3546 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-hero-inner {
    padding: 48px 40px;
    text-align: center;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(-45deg, #c7933e, #b5832f);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(199, 147, 62, 0.3);
}

.about-hero-icon i {
    color: #fff;
    font-size: 2rem;
}

.about-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Section Cards (Mission, Approach) ── */
.about-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.about-section-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.about-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(-45deg, #c7933e, #b5832f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-section-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.about-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}

.about-section-body {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
}

.about-section-body p:last-child {
    margin-bottom: 0;
}

/* ── Problem Callout Card ── */
.about-callout-card {
    background: #fef9f0;
    border-radius: 12px;
    padding: 36px 40px;
    border-left: 4px solid #c7933e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-callout-card .about-section-icon {
    background: linear-gradient(-45deg, #e8a43a, #d49230);
}

.about-problem-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0e6d3;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-problem-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-problem-icon {
    color: #c7933e;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-problem-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.about-problem-item strong {
    color: #1a2332;
    display: block;
    margin-bottom: 4px;
}

/* ── Approach List ── */
.about-approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-approach-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.about-approach-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-approach-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(199, 147, 62, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-approach-icon i {
    color: #c7933e;
    font-size: 1rem;
}

.about-approach-list li strong {
    color: #1a2332;
}

.about-approach-list li span {
    color: #4a5568;
    font-size: 0.95rem;
}

/* ── Story Card (dark gradient) ── */
.about-story-card {
    background: linear-gradient(135deg, #1a2332 0%, #2a3546 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.about-story-inner {
    padding: 40px;
}

.about-story-card .about-section-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.about-story-card .about-section-icon {
    background: rgba(199, 147, 62, 0.2);
    border: 1px solid rgba(199, 147, 62, 0.4);
}

.about-story-card .about-section-icon i {
    color: #d4a24e;
}

.about-story-card .about-section-title {
    color: #fff;
}

.about-story-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.about-story-body p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-hero-inner {
        padding: 36px 24px;
    }
    .about-hero-title {
        font-size: 1.7rem;
    }
    .about-section-card,
    .about-callout-card {
        padding: 28px 24px;
    }
    .about-story-inner {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .about-hero-inner {
        padding: 28px 16px;
    }
    .about-hero-icon {
        width: 60px;
        height: 60px;
    }
    .about-hero-icon i {
        font-size: 1.5rem;
    }
    .about-hero-title {
        font-size: 1.4rem;
    }
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    .about-section-card,
    .about-callout-card {
        padding: 20px 16px;
    }
    .about-section-title {
        font-size: 1.2rem;
    }
    .about-story-inner {
        padding: 24px 16px;
    }
}

/* ── Dark Mode ── */

/* Section Cards */
body.dark-theme .about-section-card {
    background: #243447;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .about-section-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.dark-theme .about-section-header {
    border-bottom-color: #3a4a5c;
}

body.dark-theme .about-section-title {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-theme .about-section-body {
    color: #8ea4b8;
}

/* Callout Card (Problem) */
body.dark-theme .about-callout-card {
    background: rgba(199, 147, 62, 0.08);
    border-left-color: #d4a24e;
}

body.dark-theme .about-problem-item {
    background: #243447;
    border-color: #3a4a5c;
}

body.dark-theme .about-problem-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-theme .about-problem-item strong {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-theme .about-problem-item p {
    color: #8ea4b8;
}

body.dark-theme .about-problem-icon {
    color: #d4a24e;
}

/* Approach List */
body.dark-theme .about-approach-list li {
    border-bottom-color: #3a4a5c;
}

body.dark-theme .about-approach-list li strong {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-theme .about-approach-list li span {
    color: #8ea4b8;
}

body.dark-theme .about-approach-icon {
    background: rgba(199, 147, 62, 0.15);
}

body.dark-theme .about-approach-icon i {
    color: #d4a24e;
}

/* Hero & Story cards — already dark, just adjust shadows */
body.dark-theme .about-hero-card,
body.dark-theme .about-story-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
