/* =====================================================
   CLC MOTOR PARTS — About Page (About.aspx) Styles
   ===================================================== */

/* ===== PAGE HERO ===== */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    padding: 70px 0;
    text-align: center;
}
.about-hero .page-badge {
    display: inline-block;
    background: rgba(39,174,96,0.25);
    color: #2ecc71;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(39,174,96,0.4);
    margin-bottom: 18px;
}
.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.about-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 80px 0;
    background: #fff;
}
.story-section .section-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.story-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.25;
}
.story-section .story-text {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.85;
}
.story-section .story-text p {
    margin-bottom: 18px;
}
.story-highlight {
    background: linear-gradient(135deg, #f0fff4, #fff);
    border-left: 4px solid #27ae60;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}
.about-img-grid {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
}
.about-img-grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.about-img-grid img:hover {
    transform: scale(1.02);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 60px 0;
}
.stat-box {
    text-align: center;
    padding: 10px 20px;
}
.stat-box .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-box .stat-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.4;
}
.stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.25);
    align-self: stretch;
}

/* ===== MISSION / VALUES ===== */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.values-section .section-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.values-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.values-section .section-subtitle {
    font-size: 0.97rem;
    color: #666;
    max-width: 540px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    height: 100%;
}
.value-card:hover {
    box-shadow: 0 12px 35px rgba(39,174,96,0.1);
    border-color: #c8e6c9;
    transform: translateY(-3px);
}
.value-icon {
    width: 60px;
    height: 60px;
    background: #f0fff4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: #27ae60;
}
.value-card h5 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1rem;
}
.value-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* ===== CTA MINI ===== */
.about-cta {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}
.about-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
}
.about-cta p {
    color: #666;
    font-size: 0.97rem;
    margin-bottom: 30px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.btn-about-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #27ae60;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-about-contact:hover {
    background: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39,174,96,0.35);
    color: white;
    text-decoration: none;
}
.btn-about-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a2e;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ddd;
    transition: all 0.25s;
    margin-left: 12px;
}
.btn-about-home:hover {
    border-color: #27ae60;
    color: #27ae60;
    text-decoration: none;
}

/* =====================================================
   MOBILE RESPONSIVE — About Page
   ===================================================== */

/* Tablet */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero p {
        font-size: 0.95rem;
    }

    .story-section {
        padding: 60px 0;
    }
    .story-section h2 {
        font-size: 1.7rem;
    }

    .stats-section {
        padding: 40px 0;
    }
    .stat-box .stat-number {
        font-size: 2.2rem;
    }
    .stat-sep {
        display: none;
    }

    .values-section {
        padding: 60px 0;
    }
    .values-section .section-title {
        font-size: 1.7rem;
    }

    .about-cta {
        padding: 50px 0;
    }
    .about-cta h3 {
        font-size: 1.5rem;
    }
    .btn-about-home {
        margin-left: 0;
        margin-top: 12px;
    }
    .about-cta > .container > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0;
    }
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .about-hero p {
        font-size: 0.9rem;
    }

    /* Story stacks naturally with Bootstrap col-md-6 */
    .story-section {
        padding: 50px 0;
    }
    .story-section h2 {
        font-size: 1.5rem;
    }
    .story-highlight {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
    .about-img-grid img {
        height: 180px;
    }

    /* Stats wrap into 2x2 grid on small screens */
    .stats-section {
        padding: 36px 0;
    }
    .stat-box {
        flex: 0 0 50%;
        padding: 14px 10px;
    }
    .stat-box .stat-number {
        font-size: 2rem;
    }
    .stat-box .stat-desc {
        font-size: 0.82rem;
    }

    /* Values */
    .values-section {
        padding: 50px 0;
    }
    .values-section .section-title {
        font-size: 1.5rem;
    }
    .value-card {
        padding: 24px 18px;
    }

    /* CTA buttons full-width */
    .about-cta {
        padding: 40px 0;
    }
    .about-cta h3 {
        font-size: 1.4rem;
    }
    .btn-about-contact,
    .btn-about-home {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
    .about-cta > .container > div {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
