/* About Page Styles */

/* Layout override — full-bleed sections */
.page-template-page-about .site-main {
    padding-top: 0;
    padding-bottom: 0;
}

.page-template-page-about .breadcrumb {
    margin-bottom: 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    text-align: center;
    padding: 80px 20px;
}

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

.about-hero p {
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .about-hero {
        padding: 100px 20px;
    }
    .about-hero h1 {
        font-size: 2.4rem;
    }
}

/* ── Founder Intro ────────────────────────────────────────────────────── */
.about-founder {
    padding: 50px 0;
}

.about-founder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-founder-photo img {
    width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-founder-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-founder-text p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-founder-stats {
    font-weight: 600;
    color: #222;
    font-size: 0.9rem;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 767px) {
    .about-founder-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-founder-text h2 {
        font-size: 1.6rem;
    }
}

/* ── Feature Card (What Is RestoParts / Backed by RestoMod) ───────────── */
.about-feature-section {
    padding: 50px 0;
}

.about-feature-section--alt {
    background: #f8f9fb;
}

.about-feature-card {
    background: #f8f9fb;
    border: 1px solid #dde2ea;
    border-radius: 12px;
    padding: 30px;
}

.about-feature-section--alt .about-feature-card {
    background: #fff;
}

.about-feature-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-feature-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-feature-card ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-feature-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.about-feature-card .btn {
    margin-top: 10px;
}

/* ── How It Works ─────────────────────────────────────────────────────── */
.about-how {
    padding: 50px 0;
}

.about-how .section-title {
    margin-bottom: 30px;
}

.about-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-step-card {
    background: #f8f9fb;
    border: 1px solid #dde2ea;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.about-step-icon {
    width: 46px;
    height: 46px;
    background: #111;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.about-step-icon svg {
    display: block;
}

.about-step-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-step-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .about-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Why Choose (dark section) ────────────────────────────────────────── */
.about-values {
    background: #1e293b;
    padding: 50px 0;
}

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

.about-values .section-title::after {
    background: #60a5fa;
}

/* ── CTA Banner ───────────────────────────────────────────────────────── */
.about-cta {
    background: var(--color-primary);
    padding: 50px 0;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.about-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-cta-white {
    background: #fff;
    color: var(--color-primary);
    font-weight: 600;
    border: none;
}

.about-cta-buttons .btn-cta-white:hover {
    background: #f0f0f0;
    color: var(--color-primary);
    text-decoration: none;
}

.about-cta-buttons .btn-cta-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.about-cta-buttons .btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}
