/* Trust Section Styles */
.trust-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60);
}

.trust-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.trust-section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.trust-section-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-section-feature {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    border: 1px solid #e9ecef;
}

.trust-section-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-section-feature:nth-child(1) {
    transition-delay: 0.4s;
}

.trust-section-feature:nth-child(2) {
    transition-delay: 0.6s;
}

.trust-section-feature:nth-child(3) {
    transition-delay: 0.8s;
}

.trust-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-section-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.trust-section-feature:hover .trust-section-icon::before {
    opacity: 1;
    animation: trust-section-shine 0.6s ease;
}

@keyframes trust-section-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.trust-section-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trust-section-feature-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Japan Flag Icon Special Styling */
.trust-section-feature:first-child .trust-section-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Lightbulb Icon Special Styling */
.trust-section-feature:nth-child(2) .trust-section-icon {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

/* Rocket Icon Special Styling */
.trust-section-feature:nth-child(3) .trust-section-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

/* Visible state */
.trust-section.visible .trust-section-title,
.trust-section.visible .trust-section-subtitle,
.trust-section.visible .trust-section-feature {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 767px) {
    .trust-section {
        padding: 3rem 1rem;
    }

    .trust-section-title {
        font-size: 1.8rem;
    }

    .trust-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .trust-section-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-section-feature {
        padding: 2rem 1.5rem;
    }

    .trust-section-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .trust-section-feature-title {
        font-size: 1.2rem;
    }

    .trust-section-feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trust-section-title {
        font-size: 1.6rem;
    }

    .trust-section-subtitle {
        font-size: 1rem;
    }

    .trust-section-feature {
        padding: 1.5rem 1rem;
    }
}