/*====================================== ABOUT US =====================================*/
/* =====================
   ABOUT STORY
===================== */
.about-story {
    padding: 80px 0;
    background: #f8f9fb;
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
}

.about-slogan {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.6;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* LEFT SIDE */
.section-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #666;
}

.section-title span {
    color: #d2801d;
    font-size: 50px;
}

.about-image-box {
    position: relative;
}

.about-image-box img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: #D2801D;
    color: #f9fbfb;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.experience-badge h3 {
    font-size: 28px;
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
}

/* RIGHT SIDE */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-item {
    background: #f9fbfb;
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.story-item::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 25px;
    bottom: 25px;
    width: 4px;
    background: #3f8274;
    border-radius: 4px;
}

.story-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.story-item:hover {
    transition: all 0.3s ease;
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

/* =====================
    TIMELINE
===================== */
.company-timeline {
    padding: 50px 0;
    background: #ffffff;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-size: 36px;
    font-weight: 700;
}


.timeline-header p {
    margin-top: 10px;
    color: #666;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #3f8274;
}

.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 35px;
    width: 12px;
    height: 12px;
    background: #d2801d;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::after {
    right: -6px;
}

.timeline-item.right::after {
    left: -6px;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    color: #d2801d;
    margin: 0;
    font-size: 18px;
}

.timeline-content h4 {
    margin: 8px 0;
    font-size: 16px;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* =====================
    BRAND 
===================== */
.brand-section {
    padding: 50px 0;
    background: #f9fbfb;
}

.brand-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.brand-header span {
    color: #d2801d;
}

.brand-header p {
    color: #666;
    margin-top: 8px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.brand-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brand-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card.jade .brand-image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.brand-card.lotus .brand-image::after {
    content: "";
    position: absolute;
    inset: 0;
}

.brand-content {
    padding: 30px;
    color: #fff;
    flex: 1;
}

.brand-content h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
}

.brand-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* =====================
    CORE VALUE 
===================== */
.core-values {
    padding: 50px 0;
    background: #ffffff;
}

.core-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.core-header span {
    color: #d2801d;
}

.core-header p {
    color: #666;
    margin-top: 10px;
}

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

.core-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.core-card.green {
    border-color: #3f8274;
}

.core-card.orange {
    border-color: #d2801d;
}

.core-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.core-icon img {
    height: 35px;
    width: auto;
}

.core-card.green .core-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #3f8274;
}

.core-card.orange .core-icon {
    background: rgba(255, 106, 0, 0.15);
    color: #d2801d;
}

.core-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.core-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =====================
    COMMITMENT 
===================== */
.commitment-section {
    padding: 80px 0;
    background: #f6f9f9;
}

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

.commitment-image {
    text-align: center;
}

.commitment-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateX(5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    height: 25px;
    width: auto;
}

.commitment-item.green .icon-box {
    background: rgba(16, 185, 129, 0.15);
}

.commitment-item.orange .icon-box {
    background: rgba(255, 106, 0, 0.15);
}

.commitment-item h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.commitment-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

@media (max-width: 1024px) {

    /* Story */
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 20px;
    }

    /* Timeline */
    .timeline::before {
        left: 18px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 15px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item::after {
        left: 12px;
        right: auto;
        width: 14px;
        height: 14px;
    }

    .timeline-item::after {
        left: 18px;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
    }

    .timeline-item.right::after {
        left: 18px;
    }

    /* Brand */
    .brand-grid {
        grid-template-columns: 1fr;
    }

    /* Core value */
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Commitment */
    .commitment-section {
        padding: 50px 40px;
        gap: 40px;
    }

    .commitment-section h2 {
        font-size: 32px;
    }

    .commitment-item h4 {
        font-size: 18px;
    }

    .commitment-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commitment-image {
        order: 2;
        text-align: center;
    }

    .commitment-image img {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .commitment-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* Timeline */
    .timeline::before {
        left: 30px;
        transform: translateX(-50%);
        width: 3px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 15px;
        left: 0 !important;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 30px;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
    }

    .timeline-item.right::after {
        left: 30px;
    }

    /* Core value */
    .core-grid {
        grid-template-columns: 1fr;
    }

    /* Commitment */
    .commitment-section {
        padding: 60px 40px;
        gap: 40px;
    }

    .commitment-section h2 {
        font-size: 36px;
    }

    .commitment-item h4 {
        font-size: 18px;
    }

    .commitment-item p {
        font-size: 15px;
    }

    .commitment-image img {
        width: 100%;
        max-width: 420px;
        height: auto;
    }
}