/* ===============================================
   TENTANG PAGE - KARDERA CLEAN & CONSISTENT
   =============================================== */

/* CONTAINER OPTIMIZATION */
.container-xxl {
    max-width: 1400px !important;
}

@media (min-width: 1200px) {
    .container-xxl {
        max-width: 1500px !important;
    }
}

/* PAGE STRUCTURE */
.page-section {
    padding: 4rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .page-section {
        padding: 5rem 0;
    }
}

.content-section {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .content-section {
        margin-bottom: 3.5rem;
    }
}

/* SECTION TITLE */
.content-section .section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .content-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
}

.content-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* FEATURES SECTION */
.features-section {
    background: var(--white);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .features-section {
        padding: 3.5rem 0;
    }
}

.features-section .section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .features-section .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
}

.features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===============================================
   INFO BOX DESIGN - KARDERA STYLE
   =============================================== */

.info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(234, 38, 65, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    border: 1px solid var(--primary-10);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(234, 38, 65, 0.15);
}

.info-box:hover::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(234, 38, 65, 0.2);
    transition: all 0.3s ease;
}

.info-box:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(234, 38, 65, 0.3);
}

.info-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.9;
}

/* ===============================================
   CLIENT TRUST SECTION
   =============================================== */

.client-trust-section {
    background: var(--white);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .client-trust-section {
        padding: 4rem 0;
    }
}

.trust-content {
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 25px rgba(234, 38, 65, 0.2);
}

.trust-content h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.trust-content .lead {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* ===============================================
   STAT CARDS
   =============================================== */

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(234, 38, 65, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--primary-10);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(234, 38, 65, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(234, 38, 65, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(234, 38, 65, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.8;
}

/* ===============================================
   SIDEBAR
   =============================================== */

.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(234, 38, 65, 0.08);
    border: 1px solid var(--primary-10);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(234, 38, 65, 0.12);
}

.sidebar-card .card-title {
    color: var(--primary);
    font-weight: 700;
}

.sidebar-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--primary-10);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li:hover {
    padding-left: 0.5rem;
    color: var(--primary);
}

.styled-list li i {
    color: var(--primary);
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.styled-list li:hover i {
    transform: scale(1.2);
}

.styled-list li span {
    font-weight: 500;
    line-height: 1.4;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 991px) {
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .features-section .row.g-4 {
        --bs-gutter-y: 2rem;
    }
    
    .client-trust-section .row.g-3 {
        --bs-gutter-y: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-box {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto 1.5rem auto;
    }
    
    .info-box h3 {
        font-size: 1.25rem;
    }
    
    .info-box p {
        font-size: 0.95rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .info-box {
        padding: 2.5rem;
    }
    
    .sidebar-card {
        padding: 2.5rem;
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
}
