/* Payment Solutions Section Styles */

.payment-solutions {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 0;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.payment-solutions .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-solutions .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 10px;
}

.payment-solutions .section-badge i {
    color: #00d9a0;
    font-size: 16px;
}

.payment-solutions .section-badge span {
    color: #00d9a0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.payment-solutions .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 20px;
    line-height: 1.2;
}

.payment-solutions .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* M-Pesa Featured Card */
.mpesa-featured-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    border: 2px solid rgba(0, 217, 160, 0.2);
}

.mpesa-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.mpesa-badge span {
    color: #00d9a0;
    font-size: 13px;
    font-weight: 600;
}

.mpesa-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2942;
    margin: 0;
    line-height: 1.2;
}

.mpesa-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.mpesa-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mpesa-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #1a2942;
}

.mpesa-features li i {
    color: #00d9a0;
    font-size: 18px;
}

.mpesa-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 217, 160, 0.05), rgba(0, 255, 136, 0.05));
    border-radius: 16px;
}

.mpesa-logo img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Payment Features Grid */
.payment-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Payment Feature Card */
.payment-feature-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.payment-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
}

.payment-feature-title {
    font-size: 19px;
    font-weight: 600;
    color: #1a2942;
    margin: 0;
    line-height: 1.3;
}

.payment-feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mpesa-featured-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .mpesa-logo {
        order: -1;
    }
    
    .payment-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .payment-solutions .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .payment-solutions {
        padding: 70px 0;
    }
    
    .payment-container {
        padding: 0 20px;
    }
    
    .mpesa-featured-card {
        padding: 30px 25px;
        gap: 30px;
    }
    
    .mpesa-title {
        font-size: 28px;
    }
    
    .mpesa-description {
        font-size: 15px;
    }
    
    .payment-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .payment-solutions .section-title {
        font-size: 36px;
    }
    
    .payment-solutions .section-subtitle {
        font-size: 16px;
    }
    
    .payment-feature-card {
        padding: 30px 25px;
    }
    
    .payment-feature-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .payment-feature-title {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .payment-solutions .section-title {
        font-size: 28px;
    }
    
    .payment-solutions .section-subtitle {
        font-size: 15px;
    }
    
    .mpesa-featured-card {
        padding: 25px 20px;
    }
    
    .mpesa-title {
        font-size: 24px;
    }
    
    .mpesa-features li {
        font-size: 14px;
    }
    
    .payment-feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}