/* أساسيات التصميم */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: white;
    line-height: 1.6;
}

/* الهيدر المحمي من التداخل */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-contact {
    border: 1px solid #ffcc00;
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffcc00 !important;
}

/* قسم الـ Hero */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px;
}

.highlight {
    color: #ffcc00;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.main-btn {
    background: #ffcc00;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* قسم المميزات */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 80px 10%;
}

.feature-card {
    background: #151515;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: #ffcc00;
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* متجاوب مع الموبايل */
@media (max-width: 600px) {
    .nav-links a:not(.btn-contact) {
        display: none; /* إخفاء اللينكات العادية في الموبايل لتقليل الزحمة */
    }
    
    .hero-btns {
        flex-direction: column;
    }
}