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

.about-hero {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../image/about-banner.webp') center/cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Shared section label / title */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #4a5a50;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.center {
    display: flex;
    justify-content: center;
}

.section-label svg {
    width: 18px;
    height: 18px;
    fill: #4a5a50;
    stroke: none;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* Our Story */
.story {
    background: #fff;
    padding: 100px 0;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.25;
}

.story-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Stats */
.about-stats {
    background: #4a5a50;
    color: #fff;
    padding: 70px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-stat p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Factory Tour */
.factory-tour {
    background: #f5f8f6;
    padding: 100px 0;
}

.factory-tour-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.tour-big {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tour-big img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

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

.factory-cell {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.factory-cell img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.factory-cell span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Services */
.service {
    padding: 100px 0;
}

.service.oem {
    background: #fff;
}

.service.odm {
    background: #fafbfa;
}

.service-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    max-width: 640px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service.odm .steps {
    grid-template-columns: repeat(3, 1fr);
}

.step {
    background: #f5f8f6;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: #4a5a50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
}

.btn-catalog {
    display: inline-block;
    margin-top: 40px;
    background: #f0c84a;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240,200,74,0.35);
}

/* Principle */
.principle {
    background: #fff;
    padding: 100px 0;
}

.principle-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.principle-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.principle-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.principle-lead {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
}

.quality-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.quality-list li h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.quality-list li p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Strength */
.strength {
    background: #f5f8f6;
    padding: 100px 0;
}

.strength-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.strength-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 24px;
}

.strength-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strength-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: #f0c84a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strength-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.strength-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Active nav */
.nav-menu a.active {
    color: #f0c84a;
}

/* Responsive */
@media (max-width: 900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .service.odm .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-inner,
    .principle-inner,
    .strength-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .factory-tour-main {
        grid-template-columns: 1fr;
    }

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

    .steps,
    .service.odm .steps {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .factory-grid {
        grid-template-columns: 1fr;
    }
}
