/* عام */
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
}
section {
  padding: 60px 8%;
  text-align: center;
}
h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #556b2f;
}

/* Navbar */
.navbar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  color: #556b2f;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
.navbar ul li a:hover { color: #bfa75c; }
.book-btn {
  background: #bfa75c; color: #fff; padding: 8px 15px;
  border-radius: 5px; text-decoration: none; font-weight: bold;
}
.book-btn:hover { background: #556b2f; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { height: 3px; width: 25px; background: #333; margin: 4px 0; border-radius: 2px; }
@media (max-width: 768px) {
  .navbar ul {
    position: absolute; top: 65px; right: 0; background: #fff;
    width: 100%; flex-direction: column; align-items: center;
    gap: 20px; padding: 20px 0; display: none; border-top: 1px solid #eee;
  }
  .navbar ul.active { display: flex; }
  .hamburger { display: flex; }
}

/* Hero */
.hero {
  position: relative; height: 90vh;
  background: url('https://images.unsplash.com/photo-1588776814546-ec2b9a94f126?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  display: flex; justify-content: center; align-items: center;
  color: #fff; text-align: center;
}
.overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 0 20px; }
.hero h1 { font-size: 48px; margin-bottom: 15px; }
.hero h1 span { color: #bfa75c; }
.hero p { font-size: 20px; margin-bottom: 30px; }
.hero-btn {
  background: #bfa75c; color: #fff; padding: 12px 25px;
  border-radius: 5px; font-size: 18px; text-decoration: none; font-weight: bold;
}
.hero-btn:hover { background: #556b2f; }
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}

/* Services */
.services .service-cards {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}
.services .card {
  background: #f9f9f9; padding: 20px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); width: 280px; transition: 0.3s;
}
.services .card:hover { transform: translateY(-5px); }
.services img { width: 60px; margin-bottom: 15px; }
.services h3 { color: #556b2f; margin-bottom: 10px; }

/* About */
.about {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.about-text { flex: 1; text-align: right; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 10px; }

/* Testimonials */
.testimonials { background: #f9f9f9; }
.testimonial-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.t-card {
  background: #fff; padding: 20px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); width: 280px; font-style: normal;
}
.t-card p { margin-bottom: 10px; font-size: 16px; }

/* Contact */
.contact p { margin: 8px 0; font-size: 18px; }
.contact-btn {
  display: inline-block; margin-top: 20px;
  background: #bfa75c; color: #fff; padding: 10px 20px;
  border-radius: 5px; text-decoration: none; font-weight: bold;
}
.contact-btn:hover { background: #556b2f; }

/* Footer */
.footer {
  background: #556b2f; color: #fff; padding: 20px 8%; text-align: center;
}
.footer .socials { margin-top: 10px; }
.footer .socials a { margin: 0 10px; display: inline-block; }
.footer .socials img { filter: brightness(0) invert(1); }