/* Lead Form Thank-You Message Styles */

.lead-form-thanks {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
    animation: fadeInScale 0.5s ease-out;
}

.lead-form-thanks .thanks-content {
    max-width: 400px;
    margin: 0 auto;
}

.lead-form-thanks .thanks-content i {
    display: block;
    margin-bottom: 15px;
    color: #28a745;
    font-size: 32px;
}

.lead-form-thanks .thanks-content h3 {
    color: #155724;
    margin: 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.lead-form-thanks .thanks-content p {
    color: #495057;
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Arabic text styling */
.lead-form-thanks .thanks-content h3:first-of-type {
    font-family: 'Somar-Regular', Arial, sans-serif;
    direction: rtl;
    text-align: center;
}

.lead-form-thanks .thanks-content p:first-of-type {
    font-family: 'Somar-Regular', Arial, sans-serif;
    direction: rtl;
    text-align: center;
}

/* Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lead-form-thanks {
        padding: 20px;
        margin: 15px 0;
    }
    
    .lead-form-thanks .thanks-content h3 {
        font-size: 20px;
    }
    
    .lead-form-thanks .thanks-content p {
        font-size: 14px;
    }
    
    .lead-form-thanks .thanks-content i {
        font-size: 28px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .lead-form-thanks {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        border-color: #48bb78;
    }
    
    .lead-form-thanks .thanks-content h3 {
        color: #68d391;
    }
    
    .lead-form-thanks .thanks-content p {
        color: #e2e8f0;
    }
}
