/* ================================================
   Money API - Custom Styles Override
   ================================================ */

/* Mission & Value Cards */
.ve-mission-card,
.ve-value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ve-mission-card:hover,
.ve-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.ve-mission-icon {
    margin-bottom: 20px;
}

.ve-mission-card h3,
.ve-value-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.ve-mission-card p,
.ve-value-card p {
    color: #666;
    line-height: 1.8;
}

/* Pricing Cards */
.ve-pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ve-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.ve-pricing-card h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Contact Sidebar */
.ve-contact-sidebar {
    position: sticky;
    top: 100px;
}

.ve-contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ve-contact-info-box h4 {
    color: #333;
    margin-bottom: 15px;
}

.ve-contact-info-box p {
    color: #666;
    line-height: 1.8;
}

.ve-contact-info-box ul a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ve-contact-info-box ul a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.ve-contact-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Service Cards Enhancement */
.ve-service-card ul {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.ve-service-card ul li {
    margin-bottom: 8px;
}

.ve-service-card ul li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

/* About Features */
.ve-about-features {
    margin-top: 30px;
}

.ve-af-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ve-af-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.ve-af-item i {
    color: #28a745;
    font-size: 20px;
    margin-right: 15px;
}

.ve-af-item span {
    color: #333;
    font-size: 15px;
}

/* Social Icons Enhancement */
.ve-social-icons a {
    transition: all 0.3s ease;
}

.ve-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ve-contact-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }
    
    .ve-mission-card,
    .ve-value-card,
    .ve-pricing-card {
        margin-bottom: 20px;
    }
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
}

/* Process Grid Enhancement */
.ve-process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ve-process-arrow {
    color: #667eea;
    font-size: 32px;
}

@media (max-width: 768px) {
    .ve-process-arrow {
        transform: rotate(90deg);
    }
}

/* Contact Cards Grid */
.ve-contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.ve-contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.ve-contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.ve-ci-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.ve-contact-info-card h5 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.ve-contact-info-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Form Enhancements */
.ve-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ve-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Button Enhancements */
.ve-btn-primary,
.ve-btn-white {
    transition: all 0.3s ease;
}

.ve-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.ve-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}
