/* أنماط عامة لنموذج Landing Page */
.lpe-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 11px -11px 0px 0px rgba(0, 0, 0, 0.1);
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #23222214;
}

input, select, textarea {
    margin: 0px;
    background-color: #fff !important;
    border-radius: 11px !important;
}
.lpe-form-row-a {
    display: none;
}

.lpe-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.lpe-form-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.lpe-form-description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.lpe-form-row {
    margin-bottom: 25px;
}

.lpe-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 15px;
}

.lpe-form-input {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #e0e0e0;
    border-radius: 8px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    direction: rtl;
    transition: all 0.3s ease !important;
    background-color: #fff !important;
}

.lpe-form-input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.lpe-form-hint {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #95a5a6;
}

.lpe-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lpe-submit-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #003d5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 92, 175, 0.3);
}

.lpe-submit-btn:active {
    transform: translateY(0);
}

.lpe-submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* رسائل النجاح والخطأ */
.lpe-success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 30px auto;
    max-width: 550px;
    border-right: 5px solid #28a745;
}

.lpe-success-message h3 {
    margin-top: 0;
    color: #155724;
    font-size: 24px;
}

.lpe-success-message p {
    font-size: 16px;
    margin: 10px 0;
}

.lpe-error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px auto;
    max-width: 550px;
    border-right: 5px solid #dc3545;
    font-size: 16px;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .lpe-form-container {
        padding: 25px;
        margin: 20px auto;
    }
    
    .lpe-form-title {
        font-size: 24px;
    }
    
    .lpe-form-description {
        font-size: 14px;
    }
    
    .lpe-submit-btn {
        padding: 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lpe-form-container {
        padding: 20px;
    }
    
    .lpe-form-title {
        font-size: 20px;
    }
    
    .lpe-form-input {
        padding: 12px;
        font-size: 14px;
    }
}

/* أنماط للوحة التحكم */
.order_data_column .lpe-admin-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    border: 1px solid #dee2e6;
}

/* أنيميشن عند الإرسال */
@keyframes lpe-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lpe-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: lpe-spin 1s ease-in-out infinite;
    margin-right: 10px;
}