/* ===========================
   Trust Section Styles
   FinPluss Design System
   =========================== */

/* Trust Section Container */
.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Trust Header */
.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #243E93;
    margin-bottom: 15px;
}

.trust-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}

/* Trust Content Wrapper */
.trust-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Trust Content */
.trust-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-description {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

/* Trust Features */
.trust-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.trust-feature:nth-child(1) { animation-delay: 0.1s; }
.trust-feature:nth-child(2) { animation-delay: 0.2s; }
.trust-feature:nth-child(3) { animation-delay: 0.3s; }
.trust-feature:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-feature-icon {
    width: 50px;
    height: 50px;
    background: #fef9f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F36D21;
    font-size: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.trust-feature:hover .trust-feature-icon {
    transform: scale(1.1);
}

.trust-feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 3px;
    color: #243E93;
    font-weight: 600;
}

.trust-feature-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trust-stat-number {
    font-family: 'Montserrat', sans-serif;
    color: #F36D21;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-stat-number span {
    font-size: 30px;
}

.trust-stat-label {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-container {
        padding: 0 30px;
    }
    
    .trust-content-wrapper {
        gap: 60px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-section {
        padding: 50px 0;
    }
    
    .trust-container {
        padding: 0 20px;
    }
    
    .trust-header {
        margin-bottom: 40px;
    }
    
    .trust-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .trust-subtitle {
        font-size: 16px;
    }
    
    .trust-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-description {
        font-size: 15px;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .trust-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .trust-feature-text h4 {
        font-size: 16px;
    }
    
    .trust-feature-text p {
        font-size: 13px;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-stat-card {
        padding: 25px;
    }
    
    .trust-stat-number {
        font-size: 32px;
    }
    
    .trust-stat-number span {
        font-size: 26px;
    }
    
    .trust-stat-label {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-container {
        padding: 0 15px;
    }
    
    .trust-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .trust-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .trust-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .trust-features {
        margin-top: 25px;
    }
    
    .trust-feature {
        gap: 12px;
    }
    
    .trust-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .trust-feature-text h4 {
        font-size: 15px;
    }
    
    .trust-feature-text p {
        font-size: 12px;
    }
    
    .trust-stat-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .trust-stat-number {
        font-size: 28px;
    }
    
    .trust-stat-number span {
        font-size: 24px;
    }
    
    .trust-stat-label {
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .trust-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .trust-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .trust-feature-text h4 {
        font-size: 14px;
    }
    
    .trust-stat-number {
        font-size: 26px;
    }
    
    .trust-stat-number span {
        font-size: 22px;
    }
}