:root {
    --primary: #00E5FF;
    --dark: #0A192F;
    --light-text: #E6F1FF;
    --secondary-text: #8892B0;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { background-color: var(--dark); color: var(--light-text); font-family: 'Segoe UI', sans-serif; line-height: 1.6; overflow-x: hidden; }

.background-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, #112240 0%, #0A192F 100%); z-index: -1; }

header { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; background: rgba(10, 25, 47, 0.95); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 229, 255, 0.1); }

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 100px; height: auto; filter: drop-shadow(0 0 8px var(--primary)); mix-blend-mode: screen; }
.logo-text { font-size: 28px; font-weight: bold; }
.logo-text span { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: var(--light-text); text-decoration: none; font-size: 14px; transition: 0.3s; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

.lang-btn { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 5px 12px; cursor: pointer; border-radius: 4px; font-weight: bold; transition: 0.3s; }
.lang-btn.active { background: var(--primary); color: var(--dark); }

.section, .coming-soon-section { padding: 80px 8%; text-align: center; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }

h1 { font-size: 3.5rem; color: var(--primary); margin-bottom: 20px; text-shadow: 0 0 20px rgba(0, 229, 255, 0.3); }
h2 { font-size: 2.5rem; margin-bottom: 40px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
.service-card { background: #112240; padding: 40px; border-radius: 12px; border: 1px solid rgba(0, 229, 255, 0.1); transition: 0.4s; }
.service-card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1); }

.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; width: 100%; }
.contact-form input, .contact-form textarea { padding: 15px; background: #112240; border: 1px solid #233554; color: white; border-radius: 6px; font-family: inherit; }
.contact-form textarea { height: 150px; resize: none; }

.notify-btn, .contact-form button { background: var(--primary); color: var(--dark); border: none; padding: 16px 35px; font-weight: bold; cursor: pointer; border-radius: 6px; transition: 0.3s; font-size: 1rem; }
.notify-btn:hover, .contact-form button:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }

footer { padding: 40px; text-align: center; background: #071224; border-top: 1px solid rgba(0, 229, 255, 0.05); color: var(--secondary-text); }

.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .nav-links { display: none; } /* لإخفاء المنيو في الموبايل لتبسيط التصميم حالياً */
}/* حاوية الأيقونات */
.owl-social-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

/* شكل الأيقونة العام */
.owl-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* خلفية شفافة */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* زوايا منحنية بسيطة */
    color: #fff; /* لون الأيقونة أبيض */
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* تأثيرات الماوس لكل تطبيق */
.owl-icon.facebook:hover {
    background-color: #1877F2;
    transform: translateY(-5px);
}

.owl-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-5px);
}

.owl-icon.whatsapp:hover {
    background-color: #25D366;
    transform: translateY(-5px);
}