@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --primary: #000000;
    --primary-hover: #333333;
    --secondary: #666666;
    --bg-gradient: #ffffff;
    --glass-bg: transparent;
    --glass-border: #dddddd;
    --text-main: #000000;
    --text-muted: #666666;
    --input-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Outfit', sans-serif;
}

body {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    overflow-x: hidden;
    padding: 20px;
    direction: rtl;
}

/* Background elements hidden */
.bg-blob {
    display: none;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; background: var(--secondary); }

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    padding-right: 4px;
}

.input-control {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: #fff;
}

select.input-control option {
    background: #fff;
    color: #1e293b;
}

textarea.input-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #333333;
}

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

.success-message {
    text-align: center;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #4ade80;
    margin-bottom: 20px;
    display: none;
}

/* Response handling classes */
.visible {
    display: block !important;
}

/* RTL Specific adjustments */
[dir="rtl"] .input-control {
    text-align: right;
}
