/* =============================================================================
   About Page Styles
   ============================================================================= */

:root {
    --about-primary: #DC143C;
    --about-primary-dark: #b01030;
    --about-primary-light: #fef2f4;
    --about-text: #1f2937;
    --about-text-muted: #6b7280;
    --about-bg: #ffffff;
    --about-card-bg: #ffffff;
    --about-border: #f3f4f6;
}

/* Page Container */
.about-page {
    background: var(--about-bg);
    min-height: 100vh;
}

/* Breadcrumb */
.about-breadcrumb {
    background: var(--about-card-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--about-border);
}

.about-breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

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

.about-breadcrumb a:hover {
    color: var(--about-primary);
}

.about-breadcrumb .separator {
    margin: 0 0.5rem;
    color: #d1d5db;
}

.about-breadcrumb .current {
    color: var(--about-text);
    font-weight: 500;
}

/* Container */
.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =============================================================================
   Hero Banner
   ============================================================================= */

.about-hero {
    background: linear-gradient(135deg, #7f0000 0%, #b01030 50%, #DC143C 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.about-hero__inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.about-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-family-heading);
    line-height: 1.2;
}

.about-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

/* =============================================================================
   Stats Strip
   ============================================================================= */

.about-stats {
    background: var(--about-card-bg);
    border-bottom: 1px solid var(--about-border);
    padding: 0;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid var(--about-border);
}

.about-stats__item {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--about-border);
}

.about-stats__item:last-child {
    border-right: none;
}

.about-stats__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--about-primary);
    font-family: var(--font-family-heading);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.about-stats__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--about-text-muted);
    font-weight: 500;
}

/* =============================================================================
   Our Story Section
   ============================================================================= */

.about-story {
    padding: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--about-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.about-story__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 1.25rem;
    font-family: var(--font-family-heading);
    line-height: 1.3;
}

.about-story__lead {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--about-text);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-story__content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--about-text-muted);
    margin-bottom: 1rem;
}

.about-story__highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story__highlight-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fef7f8;
    border-radius: 1rem;
    border: 1px solid #fde8ec;
}

.about-story__highlight-card svg {
    width: 24px;
    height: 24px;
    color: var(--about-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.about-story__highlight-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.375rem;
}

.about-story__highlight-card p {
    font-size: 0.875rem;
    color: var(--about-text-muted);
    line-height: 1.6;
}

/* =============================================================================
   Commitment / Quote Section
   ============================================================================= */

.about-commitment {
    padding: 2rem 0 4rem;
}

.about-commitment__quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--about-text);
    line-height: 1.75;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: #fef2f2;
    border-radius: 1.5rem;
    position: relative;
}

/* =============================================================================
   Section Titles (shared)
   ============================================================================= */

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.section-title.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--about-text-muted);
    margin-bottom: 2.5rem;
}

.section-subtitle.text-center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
   Capabilities / Why Choose Us
   ============================================================================= */

.capabilities-section {
    padding: 4rem 0;
    background: #fef2f2;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.capability-card {
    background: var(--about-card-bg);
    padding: 1.75rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.capability-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon svg {
    width: 28px;
    height: 28px;
    color: #6b7280;
}

.capability-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.875rem;
    color: var(--about-text-muted);
    line-height: 1.6;
}

/* =============================================================================
   Products / Invitations Section
   ============================================================================= */

.products-section {
    padding: 4rem 0;
    background: var(--about-bg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--about-text-muted);
}

.section-intro strong {
    color: var(--about-primary);
    font-weight: 600;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-tag {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #fef2f2;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--about-text);
    transition: all 0.2s ease;
}

.product-tag:hover {
    background: #fce7e7;
}

/* =============================================================================
   How We Work / Philosophy Section
   ============================================================================= */

.philosophy-section {
    padding: 4rem 0;
    background: #fef2f2;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.philosophy-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--about-card-bg);
    border-radius: 1rem;
    transition: transform 0.2s ease;
}

.philosophy-card:hover {
    transform: translateY(-4px);
}

.philosophy-letter {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #6b7280;
    font-family: var(--font-family-heading);
}

.philosophy-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 0.5rem;
}

.philosophy-card p {
    font-size: 0.875rem;
    color: var(--about-text-muted);
    line-height: 1.6;
}

.philosophy-quote {
    text-align: center;
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--about-text);
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--about-card-bg);
    border-radius: 1rem;
}

/* =============================================================================
   CTA Section
   ============================================================================= */

.cta-section {
    padding: 4rem 1.5rem;
    background: var(--about-bg);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: #fef2f2;
    border-radius: 2rem;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 0.75rem;
    font-family: var(--font-family-heading);
}

.cta-content p {
    font-size: 1rem;
    color: var(--about-text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--about-primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-buttons .btn-primary:hover {
    background: var(--about-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.25);
}

.cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--about-card-bg);
    color: var(--about-text);
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--about-border);
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-buttons .btn-secondary:hover {
    border-color: var(--about-primary);
    color: var(--about-primary);
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3.5rem 1.5rem;
    }

    .about-hero__title {
        font-size: 1.875rem;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats__item {
        border-right: none;
        border-bottom: 1px solid var(--about-border);
    }

    .about-stats__item:nth-child(odd) {
        border-right: 1px solid var(--about-border);
    }

    .about-stats__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about-story {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .philosophy-card {
        padding: 1.5rem 1rem;
    }

    .about-commitment__quote {
        font-size: 1.0625rem;
        padding: 2rem 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        gap: 0.5rem;
    }

    .product-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}
