/* =========================
   GLOBAL
========================= */
/* ================= FONT ================= */
body {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
p  { font-weight: 400; }



main {
  margin: 0;
  padding: 0;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;

background-color: #1f5d3a;  
  text-align: center;
  color: #fffdfd;
  font-size: 15px;
  padding: 6px 10px;
}
.top-bar p {
  margin: 0;
  line-height: 1.4;
}
/* ================= CTA SECTION ================= */
.cta-section {
  padding: 120px 8%;
  background: linear-gradient(135deg ,#0c5f1a);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}
.cta-content p {
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0.95;
}
/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.cta-btn.primary {
  background: #fff;
  color: #0c5f1a;
}
.cta-btn.primary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}
.cta-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}
.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
/*الخدمات*/
/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 100px 8%;
  background: #f9f9f9;
  text-align: center;
}
.testimonials .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #3d2713;
}
.testimonials .section-header p {
  color: #777;
  margin-bottom: 50px;
}
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: right;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}
.testimonial-rating {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonial-author strong {
  display: block;
  color: #2e1d0e;
  font-size: 14px;
}
.testimonial-author span {
  font-size: 12px;
  color: #999;
}
/* ================= TABLET ================= */
@media (max-width: 992px) {

  .cta-section {
    padding: 100px 6%;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .testimonials {
    padding: 80px 6%;
  }

}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  /* Top bar */
  .top-bar {
    font-size: 13px;
    padding: 6px 8px;
  }

  /* CTA */
  .cta-section {
    padding: 80px 5%;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* Testimonials */
  .testimonials {
    padding: 70px 5%;
  }

  .testimonials .section-header h2 {
    font-size: 24px;
  }

  .testimonials .section-header p {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-text {
    font-size: 14px;
  }

}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 13px;
  }

}
