/* --- QUTOOF V7 - THE FINAL PROFESSIONAL BUILD --- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
    --primary-dark: #111827;
    --secondary-dark: #1F2937;
    --accent-glow: #22d3ee;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --border: #374151;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    direction: rtl;
    line-height: 1.8;
    overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }

/* --- HEADER --- */
header {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
}
nav { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { font-size: 30px; font-weight: 900; color: var(--text-primary); text-decoration: none; }
.logo span { color: var(--accent-glow); }
.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-secondary); font-weight: 700; transition: 0.3s; }
.nav-links a.active, .nav-links a:hover { color: var(--text-primary); }
.btn-cta {
    background: var(--accent-glow); color: var(--primary-dark) !important;
    padding: 10px 25px; border-radius: 8px; font-weight: 900; transition: 0.4s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 0 20px rgba(34, 211, 238, 0.4); }

/* --- FOOTER --- */
footer {
    background: #000; padding: 80px 0 40px; margin-top: 100px;
    border-top: 1px solid var(--border); text-align: center;
}
.footer-logo { font-size: 32px; font-weight: 900; margin-bottom: 15px; color: white; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin: 20px 0; list-style: none; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-glow); }
.footer-bottom { opacity: 0.4; font-size: 0.9rem; margin-top: 30px; }

/* --- COMPONENTS --- */
.page-header { padding: 180px 0 80px; text-align: center; }
.page-header h1 { font-size: 4rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.page-header p { font-size: 1.3rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

.card-pro {
    background: var(--secondary-dark); border: 1px solid var(--border);
    border-radius: 24px; padding: 45px; transition: 0.4s;
}
.card-pro:hover { transform: translateY(-10px); border-color: var(--accent-glow); }

.testimonial-card {
    background: linear-gradient(145deg, #1f2937, #111827);
    padding: 40px; border-radius: 20px; border: 1px solid var(--border);
}

/* FAQ */
.faq-item { background: var(--secondary-dark); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; padding: 0 20px; color: var(--text-secondary); }

/* FORM */
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 20px; background: var(--primary-dark);
    border: 1px solid var(--border); border-radius: 10px; color: white; font-family: 'Tajawal';
}
.btn-submit { background: var(--accent-glow); color: var(--primary-dark); border: none; padding: 18px; width: 100%; border-radius: 10px; font-weight: 900; cursor: pointer; }

@media (max-width: 768px) { .nav-links { display: none; } .page-header h1 { font-size: 2.5rem; } }
