/* ==========================================================================
   TNB CONSULTING & ADVISORY SECTION
   ========================================================================== */
.tnb-consulting-page {
    padding: 100px 0;
    background-color: #F8FAFD;
}

.tnb-consult-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
}

.tnb-consult-header .sub-title {
    color: #3764EB;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.tnb-consult-header .title {
    color: #142441;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.tnb-consult-header p {
    color: #6B778C;
    font-size: 17px;
    line-height: 1.8;
}

/* Consulting Pillars Grid */
.tnb-consult-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Pillar Card Design */
.tnb-consult-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #EAEFEF;
    border-left: 5px solid #D2DCE9;
    /* Inactive left border */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tnb-consult-card:hover {
    border-left-color: #3764EB;
    /* Active left border */
    transform: translateX(5px);
    /* Geser sedikit ke kanan saat dihover */
    box-shadow: 0 15px 35px rgba(55, 100, 235, 0.08);
}

.tnb-consult-icon {
    font-size: 40px;
    color: #142441;
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.tnb-consult-card:hover .tnb-consult-icon {
    color: #3764EB;
}

.tnb-consult-title {
    color: #142441;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Arimo', sans-serif;
    margin-bottom: 15px;
}

.tnb-consult-desc {
    color: #6B778C;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Info Box / Contact CTA Bottom */
.tnb-consult-info {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #EAEFEF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    gap: 30px;
}

.tnb-consult-info-text h3 {
    color: #142441;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tnb-consult-info-text p {
    color: #6B778C;
    font-size: 16px;
    margin: 0;
    max-width: 600px;
}

.tnb-btn-primary {
    background: #3764EB;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 40px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tnb-btn-primary:hover {
    background: #142441;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(20, 36, 65, 0.2);
}