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

/* ===================== ABOUT HERO ===================== */
.about-hero {
    background: linear-gradient(135deg, #000000 0%, #051508 100%);
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
    margin-bottom: 25px;
}

.about-tagline {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-hero-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 380px;
}

.about-hero-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* Hero Features Panel (right side) */
.hero-features-panel {
    background: linear-gradient(180deg, rgba(15, 35, 15, 0.6) 0%, rgba(5, 21, 8, 0.7) 100%);
    border: 1px solid rgba(184, 215, 74, 0.25);
    border-radius: 16px;
    padding: 25px 22px;
}

.hf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 215, 74, 0.1);
}

.hf-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hf-item:first-child {
    padding-top: 0;
}

.hf-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 18px;
    flex-shrink: 0;
}

.hf-item h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.hf-item p {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}

/* ===================== INNOVATIVE TECH SECTION ===================== */
.innovative-tech {
    background-color: #f4f1eb;
    padding: 50px 0;
}

.section-title-light {
    text-align: center;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leaf-decor-light {
    color: var(--primary-green-dark);
    margin: 0 12px;
    font-size: 18px;
}

.tech-desc-light {
    text-align: center;
    color: #555;
    font-size: 13px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.tech-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
}

.tech-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.tech-step-num {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
    border: 3px solid #f4f1eb;
}

.tech-step-img {
    width: 100%;
    max-width: 140px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid var(--primary-green);
    padding: 3px;
    background-color: #fff;
}

.tech-step h5 {
    color: var(--primary-green-dark);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.tech-step p {
    color: #555;
    font-size: 10px;
    line-height: 1.4;
    margin: 0;
}

.tech-step-arrow {
    color: var(--primary-green);
    font-size: 14px;
    padding-top: 50px;
    flex-shrink: 0;
}

/* ===================== OUR FACILITY ===================== */
.our-facility {
    background-color: #f4f1eb;
    padding: 30px 0 0;
}

.facility-content {
    padding: 40px 35px;
}

.facility-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.facility-desc {
    color: #333;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
}

.facility-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 12px;
    flex-shrink: 0;
}

.facility-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* ===================== STATS ===================== */
.about-stats {
    background: linear-gradient(135deg, #0a1f0a 0%, #051508 100%);
    padding: 35px 0;
    border-top: 1px solid rgba(184, 215, 74, 0.1);
    border-bottom: 1px solid rgba(184, 215, 74, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
}

.stat-item .stat-icon {
    width: 55px;
    height: 55px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 22px;
    flex-shrink: 0;
    background: transparent;
}

.about-stats .stat-number {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
    text-align: left;
}

.about-stats .stat-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-align: left;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.4;
    margin: 0;
}

/* ===================== MVV SECTION ===================== */
.mvv-section {
    background-color: #f4f1eb;
    padding: 40px 0;
}

.mvv-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
}

.mvv-icon {
    width: 55px;
    height: 55px;
    color: var(--primary-green-dark);
    font-size: 38px;
    flex-shrink: 0;
}

.mvv-title {
    color: var(--primary-green-dark);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mvv-item > div > p,
.mvv-item p {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-list li {
    color: #555;
    font-size: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mvv-list li i {
    color: var(--primary-green);
    font-size: 14px;
}

/* ===================== CERTIFIED & PLANET SECTION ===================== */
.certified-section {
    background-color: var(--dark-bg);
}

.certified-quality {
    background: linear-gradient(180deg, #0a1f0a 0%, #051508 100%);
    color: #ffffff;
    padding: 40px 30px;
}

.certified-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.certified-quality p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cert-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-logo {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-logo span {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.cert-iso {
    color: #0a1f0a !important;
}

.cert-haccp {
    color: var(--primary-green-dark) !important;
    font-size: 12px !important;
}

.cert-fda {
    color: var(--primary-green-dark) !important;
}

.cert-logo small {
    color: #555;
    font-size: 7px;
    font-weight: 600;
    margin-top: 2px;
}

.certified-products {
    background-color: var(--dark-bg);
    padding: 30px 20px;
}

.certified-products img {
    max-width: 100%;
}

.good-planet {
    background: linear-gradient(180deg, #051508 0%, #0a1f0a 100%);
    color: #ffffff;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.good-planet::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 215, 74, 0.1), transparent);
    pointer-events: none;
}

.planet-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.planet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planet-list li {
    color: #ffffff;
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.planet-list li i {
    color: var(--primary-green);
    font-size: 14px;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-green);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-green-dark);
    color: #000000;
    transform: translateY(-3px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
    .tech-step h5 {
        font-size: 11px;
    }
    .tech-step p {
        font-size: 9px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 120px 0 50px;
        text-align: center;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .title-divider {
        margin: 0 auto 25px;
    }

    .about-hero-desc {
        margin: 0 auto;
    }

    .about-hero-img {
        margin: 30px 0;
    }

    .hero-features-panel {
        margin-top: 30px;
    }

    .tech-steps {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .tech-step {
        flex: 0 0 30%;
    }

    .tech-step-arrow {
        display: none;
    }

    .facility-content {
        padding: 30px 20px;
        text-align: center;
    }

    .facility-list li {
        justify-content: center;
        text-align: left;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .about-stats .stat-number,
    .about-stats .stat-label,
    .stat-item p {
        text-align: center;
    }

    .certified-quality,
    .good-planet {
        text-align: center;
    }

    .cert-logos {
        justify-content: center;
    }

    .planet-list li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-hero-title {
        font-size: 32px;
    }

    .section-title-light {
        font-size: 20px;
    }

    .tech-step {
        flex: 0 0 45%;
    }

    .facility-title {
        font-size: 20px;
    }

    .mvv-item {
        flex-direction: column;
        text-align: center;
    }

    .mvv-list li {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-hero-title {
        font-size: 26px;
    }

    .tech-step {
        flex: 0 0 100%;
    }
}
