/* ============================================
   FEATURES SECTION - SVG ICONS
   Path: assets/css/features.css
   ============================================ */

.features {
    padding: 60px 20px;
    background: #fff;
}

.features .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.features .section-title h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1f71;
    margin-bottom: 8px;
}

.features .section-title h2 .hl {
    color: #f5b800;
}

.features .section-title p {
    color: #6b7280;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #f5b800;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* SVG Icon Container */
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Icon Color Variants */
.fi-blue {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}
.fi-blue svg {
    stroke: #0284c7;
}

.fi-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.fi-yellow svg {
    stroke: #d97706;
}

.fi-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.fi-green svg {
    stroke: #059669;
}

.fi-orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}
.fi-orange svg {
    stroke: #ea580c;
}

/* Card Text */
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1f71;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .features {
        padding: 40px 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .features .section-title h2 {
        font-size: 1.5rem;
    }
}