/* ========================================
   WHY MONEYPEX SECTION - VISUAL IMPROVEMENTS
   Make the section look professional and beautiful
   ======================================== */

/* Section Styling */
.why-moneypex-section {
    padding: 5rem 0 !important;
    background: linear-gradient(0deg, #ffffff 0%, #fffff 100%) !important;
    position: relative !important;
}

/* Section Header */
.why-moneypex-heading {
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.why-moneypex-description {
    font-size: clamp(1rem, 2vw, 1.125rem) !important;
    color: #64748b !important;
    max-width: 800px !important;
    margin: 0 auto 1rem !important;
    line-height: 1.7 !important;
    text-align: center !important;
}

.why-moneypex-cta {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem) !important;
    color: #1E5CAA !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
}

/* Cards Grid */
.why-moneypex-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Individual Card Styling */
.why-card {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 1.25rem !important;
    padding: 2.5rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.why-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #bfdbfe !important;
}

/* Card Icons */
.why-card-icon {
    width: 4.5rem !important;
    height: 4.5rem !important;
    border-radius: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.why-card-icon svg {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

/* Hover effect for icons */
.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Card Titles */
.why-card-title {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

/* Responsive - Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
    .why-moneypex-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.75rem !important;
    }
    
    .why-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Responsive - Mobile: 2 columns (2x2 grid) */
@media (max-width: 767px) {
    .why-moneypex-section {
        padding: 3.5rem 0 !important;
    }
    
    .why-moneypex-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .why-card {
        padding: 1.75rem 1rem !important;
    }
    
    .why-card-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .why-card-icon svg {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .why-card-title {
        font-size: 1rem !important;
    }
}

/* Responsive - Extra Small Mobile */
@media (max-width: 480px) {
    .why-moneypex-cards {
        gap: 0.75rem !important;
        padding: 0 0.5rem !important;
    }
    
    .why-card {
        padding: 1.5rem 0.875rem !important;
    }
    
    .why-card-icon {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .why-card-icon svg {
        width: 1.75rem !important;
        height: 1.75rem !important;
    }
}


