/* ============================================
   STORE NVIY — About Us Page
   ============================================ */

/* ---- Hero ---- */
.about-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 50vh;
    min-height: 380px;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 24px;
}

.about-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background: rgba(228, 30, 49, 0.85);
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

.about-hero-content p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto;
}

/* ---- Shared ---- */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-section {
    padding: 80px 0;
}

.about-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #e41e31;
    margin-bottom: 8px;
}

.about-section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

/* ---- Two Column Grid ---- */
.about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.about-text-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

.about-image-block {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Stats ---- */
.about-stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 24px 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 49, 0.15);
    border-radius: 14px;
    font-size: 22px;
    color: #ff4757;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ---- Values ---- */
.about-values-section {
    background: #f8f9fb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: transparent;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228,30,49,0.08), rgba(255,71,87,0.08));
    border-radius: 12px;
    color: #e41e31;
    font-size: 20px;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

/* ---- Steps ---- */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(228,30,49,0.12);
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -2px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    color: #ddd;
    font-size: 14px;
    flex-shrink: 0;
}

/* ---- CTA ---- */
.about-cta {
    padding: 80px 0;
}

.about-cta-inner {
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 60px 40px;
    color: #fff;
}

.about-cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.about-cta-inner p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
}

.about-cta-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(4px);
}

.about-cta-btn-primary {
    background: #e41e31;
    color: #fff;
    border-color: #e41e31;
}

.about-cta-btn-primary:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.about-cta-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.about-cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .about-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-block {
        max-height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        flex: 0 0 calc(50% - 12px);
        max-width: none;
    }

    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .about-cta-inner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .about-cta {
        padding: 48px 0;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 260px;
    }

    .about-section {
        padding: 48px 0;
    }

    .about-container {
        padding: 0 16px;
    }

    .step-card {
        flex: 0 0 100%;
    }

    .stat-card {
        padding: 16px 8px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
