/*
Theme Name: Mousa Group LLC
Author: Mousa
Version: 1.0
Description: Custom theme for Mousa Group LLC
*/


/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo img {
  max-height: 45px;
}

/* Navbar */
.nav-menu {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px;
  display: block;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #0077cc;
}

/* Dropdown */
.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.7rem;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  min-width: 220px;
  z-index: 999;
  padding: 8px 0;
}
.sub-menu li a {
  padding: 10px 15px;
  color: #333;
  white-space: nowrap;
}
.sub-menu li a:hover {
  background: #f0f0f0;
}
.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* CTA Button */
.header-cta .btn-yellow,
.btn-yellow {
  background-color: #ffd700;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
.btn-yellow:hover {
  background-color: #ffcc00;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }
  .main-nav.active {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
  .nav-menu > li {
    position: static;
  }
  .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }
  .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: #fdf6f0; /* بيج فاتح بدل الأزرق */
  color: #003366;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
}
.hero-stars {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Services Section */
.services {
  background: #f9f9f9;
  padding: 60px 20px;
}
.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.services-grid a.card {
  display: block;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-grid a.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.services-grid a.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.services-grid a.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.services-grid a.card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Testimonials */
.testimonials {
  background: #fff;
  padding: 60px 20px;
}
.testimonial.card {
  background: #f1f1f1;
  padding: 20px;
  margin: 10px auto;
  border-radius: 8px;
  max-width: 600px;
}
.testimonial .author {
  margin-top: 10px;
  font-weight: bold;
  text-align: right;
}

/* Footer */
.site-footer {
  background-color: #0A2A43;
  color: #fff;
  padding: 60px 20px 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer-column {
  flex: 1 1 250px;
}
.site-footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}
.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Copyright line */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
}

/* Inner Hero (for service pages) */
.inner-hero {
  background: #fdf6f0; /* بيج فاتح */
  color: #003366;
  padding: 80px 20px;
  text-align: center;
}
.inner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.inner-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Process Steps */
.process-steps {
  list-style: decimal inside;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  font-size: 1.1rem;
  color: #333;
}
.process-steps li {
  margin-bottom: 10px;
}

/* Technologies */
.technologies p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}
