/* =========================================================
   ALC GROUP - VISION MISSION VALUES
========================================================= */

.custom-mission-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.custom-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    color: #555;
}

.custom-mission-list li i {
    color: #e30613;
    font-size: 10px;
    margin-top: 12px;
}

/* =========================================================
   VALUES SECTION
========================================================= */

.value-box {
    display: flex;
    align-items: center;
    background: #ef1c1c;
    border-radius: 10px;
    overflow: hidden;
    min-height: 72px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.value-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.value-letter {
    width: 80px;
    min-width: 80px;
    background: #d40000;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    padding: 14px 0;
    font-family: 'Poppins', sans-serif;
    border-right: 3px solid rgba(255,255,255,0.2);
}

.value-text {
    flex: 1;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 24px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .custom-mission-list li {
        font-size: 14px;
        line-height: 1.7;
    }

    .value-box {
        min-height: 60px;
    }

    .value-letter {
        width: 60px;
        min-width: 60px;
        font-size: 24px;
        padding: 10px 0;
    }

    .value-text {
        font-size: 16px;
        padding: 10px 16px;
        letter-spacing: 0.5px;
    }
}

/* =========================================================
   CORPORATE CULTURE SECTION
========================================================= */

.culture-tabs {
    flex-wrap: wrap;
    gap: 0 32px;
}

.culture-tabs .nav-link {
    white-space: nowrap;
}

@media (min-width: 992px) {
    .culture-tabs {
        flex-wrap: nowrap;
        gap: 0 28px;
    }
}

.culture-tab-content {
    margin-top: 15px;
}

.culture-detail-box {
    background: #f7f7f7;
    border-left: 6px solid #e30613;
    padding: 28px 32px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.culture-detail-box h3 {
    color: #0b0b2f;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.culture-detail-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .culture-tabs .nav-item {
        margin-left: 0 !important;
        margin-right: 20px !important;
    }

    .culture-detail-box {
        padding: 22px 24px;
    }

    .culture-detail-box h3 {
        font-size: 22px;
    }

    .culture-detail-box p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =========================================================
   PARTNERS PAGE
========================================================= */

.partner-category {
    border-bottom: 1px solid #e9e9e9;
}

.partner-title {
    position: relative;
    color: #0b0b2f;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-left: 18px;
}

.partner-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 6px;
    height: 32px;
    background: #e30613;
}

.partner-title:after {
    content: "";
    display: block;
    width: 220px;
    height: 4px;
    background: #e30613;
    margin-top: 10px;
}

.partner-logo-card {
    min-height: 170px;
    width: 100%;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

.partner-logo-grid > [class*="col-"] {
    display: flex;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    border-color: #e30613;
}

.partner-logo-card img {
    max-width: 145px;
    max-height: 70px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
}

.partner-logo-name {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .partner-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .partner-title:after {
        width: 160px;
    }

    .partner-logo-card {
        min-height: 140px;
        padding: 20px;
    }

    .partner-logo-card img {
        max-width: 125px;
        max-height: 60px;
    }
}

/* =========================================================
   BLOG PAGE
========================================================= */

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f4f4f4;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
