:root {
  --accent: #dff100;
  --bg-dark: #0c0c0c;
  --text-light: #f5f5f5;
  --muted: #999;
  --container: 1100px;
  font-family: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
}

.site-header {
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  height: 50px;
  filter: drop-shadow(0 0 6px var(--accent));
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  transition: color .3s;
}

.nav-link:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  margin: 16px 0;
  font-size: 1.1rem;
}

.hero .btn {
  background: var(--accent);
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .3s;
}

.hero .btn:hover {
  transform: scale(1.05);
}

.hero-image img {
  width: 350px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

h2 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 2rem;
}

.services-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card, .testimonial-card {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 10px;
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover, .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,255,0,0.1);
}

.service-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.features-list {
  list-style: none;
}

.features-list li {
  background: #1a1a1a;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 6px;
}

.site-footer {
  background: #111;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid #333;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    width: 250px;
  }
}
/* باقي الكود السابق نفسه هنا فوق */

/* زر القائمة */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
}

/* القائمة الجانبية */
.side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background: #111;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 200;
  box-shadow: -4px 0 15px rgba(0,0,0,0.4);
}

.side-menu.active {
  right: 0;
}

.side-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  margin: 15px 0;
  transition: color .3s;
}
.side-link:hover {
  color: var(--accent);
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--accent);
  cursor: pointer;
}

/* اظهار زر المينيو فقط على الموبايل */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
