/* Custom styles for Solar Lead Arbitrage System */

/* Pricing Card Styles */
.pricing-card {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 15px;
    padding: 20px;
    color: #000;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
    margin: 15px 0;
}

.price-display {
    text-align: center;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.price-currency {
    font-size: 1.2rem;
    color: #333;
    margin-left: 5px;
}

/* Enhanced card hover effects */
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hero section responsive badges */
.hero-badges {
    max-width: 100%;
    word-wrap: break-word;
}

/* Form enhancements */
.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Payment button enhancements */
.btn-warning:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    border-color: #ff8f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin: 10px 0;
        padding: 15px;
    }
    
    .hero-badges .badge {
        font-size: 0.8rem !important;
    }
}

/* Toast container positioning */
.toast-container {
    z-index: 9999;
}

/* Success/Error states */
.border-success {
    border-color: #28a745 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

/* Payment section styling */
#solar-consultation {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 179, 0, 0.1) 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

/* Admin dashboard enhancements */
.admin-stats {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
}

.lead-status-hot {
    color: #28a745;
    font-weight: bold;
}

.lead-status-cold {
    color: #dc3545;
    font-weight: bold;
}

/* Enhanced gradient backgrounds - lighter and brighter */
.bg-gradient-primary {
    background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffd43b 0%, #fab005 100%);
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form enhancements */
.form-control-lg {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    transition: border-color 0.3s ease;
}

.form-control-lg:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Image preview styling */
#imagePreview {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
}

#imagePreview img {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn [data-feather="loader"] {
    animation: spin 1s linear infinite;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges .badge {
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}