/* ╔══════════════════════════════════════════════════════════════════════════════╗
   ║   MISSION AUTO GLASS — PREMIUM ABOUT PAGE ARCHITECTURE                       ║
   ║   Target: Narrative Flow, Authority & Trust Building                         ║
   ║   Version: MAX_CAPACITY_01                                                   ║
   ╚══════════════════════════════════════════════════════════════════════════════╝ */
/* ═══════════════════════════════════════════════════════════════════════════════
   1. GLOBAL PAGE CONFIGURATION
   Establishes a premium, trustworthy baseline distinct from standard pages.
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-about {
    /* A very subtle warmth compared to the cool FAQ page, implies "human" connection */
    background-color: #FDFDFD;
    background-image: linear-gradient(180deg, rgba(24, 48, 117, 0.02) 0%, transparent 100%);
    color: var(--color-neutral-700);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. COMPONENT: BREADCRUMB ELEVATION
   Consistent UI architecture with other premium pages.
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-about .breadcrumb {
    display: flex;
    justify-content: center;
    padding: var(--space-6) 0;
    background: transparent;
}

.page-about .breadcrumb ol {
    background: white;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0,0,0,0.04);
    font-size: var(--text-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.page-about .breadcrumb a {
    color: var(--color-brand-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-about .breadcrumb a:hover {
    color: var(--color-brand-red);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. COMPONENT: THE HERO STAGE
   Authoritative, centered, and establishes the "Local Expert" brand.
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-about .section-hero {
    position: relative;
    text-align: center;
    padding: var(--space-20) 0 var(--space-24);
    margin-bottom: var(--space-12);

    /* Premium Gradient: Deep Brand Blue with a subtle angular light source */
    background: linear-gradient(135deg, #0f1e4a 0%, var(--color-brand-blue) 100%);
    color: white;
    box-shadow: 0 20px 40px -10px rgba(15, 30, 74, 0.4);
    overflow: hidden;
}

/* Architectural Texture: Abstract map-like lines implying "Service Area" */
.page-about .section-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.page-about .section-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.page-about .hero-lead {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 65ch;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. SECTION: OUR STORY
   Optimized for narrative reading (narrower measure, higher legibility).
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-story {
    padding: var(--space-12) 0;
}

.section-story .container {
    max-width: 760px;

    /* Optimal reading width */
}

.section-story h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-8);
    position: relative;
    padding-bottom: var(--space-4);
}

/* Decorative divider */
.section-story h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-brand-red);
    border-radius: 2px;
}

.section-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-neutral-700);
    margin-bottom: var(--space-6);

    /* Subtle justify with hyphens for clean blocks */
    text-align: justify;
    hyphens: auto;
}

/* Drop Cap for the first paragraph to signal "Story" */
.section-story p:first-of-type::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 800;
    color: var(--color-brand-blue);
    padding-right: var(--space-2);
    padding-top: var(--space-1);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. SECTION: HOW WE'RE DIFFERENT (THE APPROACH)
   Transforms a simple list into a sophisticated Grid of Feature Cards.
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-approach {
    background-color: var(--color-neutral-50);
    padding: var(--space-16) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-12);
}

/* The Grid System */
.approach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    list-style: none;
    padding: 0;
}

/* The Cards */
.approach-list li {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Card Hover Elevation */
.approach-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(24, 48, 117, 0.2);
}

/* Card Accent Top Bar */
.approach-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-blue-dark));
    opacity: 0.8;
}

.approach-list li:hover::before {
    background: var(--color-brand-red);
    opacity: 1;
}

/* Styling the "Strong" headers inside the list items */
.approach-list li strong {
    display: block;
    font-size: 1.25rem;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

/* The body text of the cards */
.approach-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. SECTION: CREDENTIALS
   Layout designed to look like an official "Trust Document" or Certificate.
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-credentials {
    padding: var(--space-16) 0;
}

.section-credentials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: var(--space-10);
    color: var(--color-brand-blue-dark);
}

.credentials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 900px;
    margin-inline: auto;
    background: white;
    padding: var(--space-8) var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    list-style: none;
}

@media (min-width: 768px) {
    .credentials-list {
        grid-template-columns: 1fr 1fr;

        /* Two columns on tablet+ */
        gap: var(--space-6) var(--space-10);
    }
}

.credentials-list li {
    position: relative;
    padding-left: 3rem;

    /* Space for icon */
    font-size: 1.05rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

/* Custom Check Shield Icon via CSS */
.credentials-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(16, 185, 129, 0.1);

    /* Subtle green bg */
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.credentials-list li strong {
    color: var(--color-brand-blue);
    font-size: 1.15rem;
    margin-bottom: var(--space-1);
}

.credentials-list li a {
    color: var(--color-brand-blue-dark);
    text-decoration: underline;
    text-decoration-color: rgba(24, 48, 117, 0.3);
}

.credentials-list li a:hover {
    color: var(--color-brand-red);
    text-decoration-color: var(--color-brand-red);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. SECTION: COMMUNITY
   A warmer, distinct look to separate "Business" from "Humanity".
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-community {
    background-color: #FFF9F0;

    /* Very light warm beige */
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: var(--space-16) 0;
    text-align: center;
}

.section-community .container {
    max-width: 700px;
}

.section-community h2 {
    color: var(--color-brand-blue-dark);
    font-size: 2rem;
    margin-bottom: var(--space-6);
}

.section-community p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-neutral-800);
    margin-bottom: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. COMPONENT: CTA FOOTER STRIP
   Architecturally stable button layout (No Stretching).
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-cta {
    background: white;
    padding: var(--space-16) 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.section-cta h2 {
    font-size: 2.5rem;
    color: var(--color-brand-blue-dark);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;

    /* Safety for small screens */
}

/* Enforce intrinsic widths to prevent visual stretching */
.page-about .btn,
.page-about .btn-primary,
.page-about .btn-phone {
    flex: 0 0 auto;
    min-width: 200px;
    width: auto !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. RESPONSIVE REFLOW
   Maintains structure on mobile devices.
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-about .section-hero h1 {
        font-size: 2.5rem;
    }

    .section-story p:first-of-type::first-letter {
        font-size: 3rem;

        /* Slightly smaller drop cap */
    }

    .credentials-list {
        padding: var(--space-6);
    }

    /* Stack buttons on mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .page-about .btn {
        width: 100% !important;
    }
}