/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* About Hero Section */
.about-hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Trust Badges Row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-badge-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.15);
}

/* Brand Story Section */
.brand-story-section {
    background: white;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.story-content .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.highlight-text {
    padding: 1.5rem;
    background: #FFF5F5;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.story-quote {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #A01729 100%);
    border-radius: 12px;
    color: white;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.story-image-grid img {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Manufacturing Process Section */
.manufacturing-process-section {
    background: #F8F9FA;
}

.process-step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* USP Section */
.usp-section {
    background: white;
}

.usp-card {
    background: white;
    border: 2px solid #F0F0F0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.12);
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #A01729 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.usp-icon i {
    font-size: 1.8rem;
    color: white;
}

.usp-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.usp-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    background: #F8F9FA;
}

.certification-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.cert-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cert-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Who We Serve Section */
.who-we-serve-section {
    background: white;
}

.serve-card {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 2px solid #FFE5E5;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.12);
}

.serve-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.serve-icon i {
    font-size: 1.8rem;
    color: white;
}

.serve-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.serve-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mission, Vision & Values Section */
.mvv-section {
    background: #F8F9FA;
}

.mvv-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.15);
}

.mission-card {
    border-top: 5px solid #4CAF50;
}

.vision-card {
    border-top: 5px solid #2196F3;
}

.values-card {
    border-top: 5px solid var(--primary-red);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-card .mvv-icon {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.mission-card .mvv-icon i {
    color: #4CAF50;
}

.vision-card .mvv-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.vision-card .mvv-icon i {
    color: #2196F3;
}

.values-card .mvv-icon i {
    color: var(--primary-red);
}

.mvv-icon i {
    font-size: 2rem;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mvv-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.values-list li i {
    color: var(--primary-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Founder Section */
.founder-section {
    background: white;
}

.founder-image img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.founder-label {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.founder-message {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 1.5rem;
    background: #FFF5F5;
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.founder-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-signature {
    padding: 1.5rem 0;
    border-top: 2px solid #F0F0F0;
}

/* Bulk Orders CTA Section */
.bulk-orders-cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #A01729 100%);
}

.bulk-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bulk-cta-description {
    font-size: 1.15rem;
    opacity: 0.95;
}

.bulk-cta-buttons .btn {
    min-width: 200px;
    font-weight: 600;
}

.bulk-cta-buttons .btn-light {
    background: white;
    color: var(--primary-red);
    border: none;
}

.bulk-cta-buttons .btn-light:hover {
    background: #F0F0F0;
    color: var(--primary-dark);
}

.bulk-cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-red);
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.final-cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

/* Section Common Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-main-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

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

    .founder-title {
        font-size: 2rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .bulk-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 40px 0 30px;
    }

    .about-main-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .trust-badges-row {
        gap: 1rem;
    }

    .trust-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trust-badge-item span {
        font-size: 0.85rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

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

    .story-content p {
        font-size: 1rem;
    }

    .process-step-card,
    .usp-card,
    .serve-card,
    .certification-card,
    .mvv-card {
        margin-bottom: 1rem;
    }

    .founder-title {
        font-size: 1.75rem;
    }

    .founder-message {
        font-size: 1.1rem;
    }

    .bulk-cta-title {
        font-size: 1.5rem;
    }

    .bulk-cta-buttons .btn {
        width: 100%;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

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

    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 1.5rem;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* 1. Timeline-specific (doesn't exist in web.css) */
.manufacturing-timeline {
    position: relative;
    padding-left: 3rem;
}

.manufacturing-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #FFF5F5;
}

/* 2. Step Number Badge (unique positioning) */
.step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
}

/* 3. MVV Color Variants (unique border colors) */
.mission-card { border-top: 5px solid #4CAF50; }
.vision-card { border-top: 5px solid #2196F3; }
.values-card { border-top: 5px solid var(--primary-red); }

.mission-card .mvv-icon {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.mission-card .mvv-icon i { color: #4CAF50; }

.vision-card .mvv-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.vision-card .mvv-icon i { color: #2196F3; }

/* 4. Values Checklist (unique list style) */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

/* 5. Founder Signature (unique font style) */
.founder-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #F0F0F0;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem;
    color: var(--primary-red);
}
