/* إضافة صورة الخلفية للـ Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    /* مسار صورة الخلفية */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('bg-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* تنسيق الفوتر (الحقوق) */
footer {
    background: #0a0c10;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,145,0,0.2);
}

.footer-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.dev-info {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.dev-whatsapp {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.dev-whatsapp:hover {
    color: #fff;
}

/* تحسين استجابة الموبايل للفوتر */
@media (max-width: 768px) {
    .dev-info { flex-direction: column; gap: 5px; }
}
