:root {
    --primary: #FF8A00;
    --primary-dark: #E67A00;
    --secondary: #0A192F;
    --background: #0D1B2A;
    --surface: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #BDC3C7;
    --error: #FF4D4D;
    --success: #2ECC71;
    --warning: #F1C40F;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--background);
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 138, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(10, 25, 47, 0.2) 0px, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 30px 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 138, 0, 0.3));
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

header .accent {
    color: var(--primary);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.form-section {
    width: 100%;
    max-width: 650px;
}

.glass {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.alert.warning {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.cta-container {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px dashed var(--border);
}

.cta-description {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.alert.info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid #3498db;
    color: #3498db;
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-decoration: none;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: right;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.9rem;
    cursor: pointer;
}

.btn {
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 138, 0, 0.3);
}

.btn.primary:active {
    transform: translateY(0);
}

.note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

footer {
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .glass {
        padding: 25px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
