:root {
  --gold: #b58b18;
  --brown: #7a3d06;
  --gray: #8e8e8e;
  --black: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Tajawal', sans-serif;
}

body {
  background-color: var(--black);
  color: #fff;
  line-height: 1.7;
}

/* ====== الهيدر ====== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header img {
  width: 120px;
}

.header ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.header a {
  color: var(--gray);
  text-decoration: none;
  transition: 0.3s;
}

.header a:hover {
  color: var(--gold);
}

/* ====== البطل (التعريف) ====== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('bg.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 1.5s ease;
}

.hero h1 {
  font-size: 2.2rem;
  color: #fff;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  margin: 20px 0;
  color: var(--gray);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--brown);
}

/* ====== الأقسام ====== */
section {
  padding: 100px 50px;
}

.section-title {
  color: var(--gold);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

/* ====== الخدمات ====== */
.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  animation: slideUp 1s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* ====== لماذا نحن ====== */
.why-us .reasons {
  max-width: 600px;
  margin: auto;
  list-style: none;
}

.why-us li {
  background: #1a1a1a;
  margin: 10px 0;
  padding: 15px;
  border-right: 4px solid var(--gold);
  border-radius: 8px;
  animation: fadeIn 1s ease;
}

/* ====== التواصل ====== */
.contact {
  text-align: center;
}

.contact-info {
  margin-top: 20px;
  color: var(--gray);
}

.contact-info span {
  color: var(--gold);
}

/* ====== الفوتر ====== */
.footer {
  text-align: center;
  padding: 25px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--gray);
}

/* ====== الحركات ====== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ====== الموبايل ====== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }

  section {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 20px;
  }
}
