/* 🔹 Reset بسيط */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

/* 🔹 Body */
body {
  background: #f7f7f7;
  color: #333;
  line-height: 1.7;
}

/* 🔹 Container */
section {
  background: #fff;
  margin: 20px auto;
  padding: 25px;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* 🔹 Header */
header {
  background: #269044;
  color: #fff;
  text-align: center;
  padding: 20px;
}


header h2 {
  font-size: 22px;
}

/* 🔹 Titles */
h1 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #269044;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* 🔹 Paragraph */
p {
  margin-bottom: 15px;
  font-size: 15px;
}

/* 🔹 Lists */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 10px;
  padding-right: 20px;
  position: relative;
}

ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: #269044;
  font-weight: bold;
}

/* 🔹 Buttons (CTA) */
a {
  display: inline-block;
  text-decoration: none;
}

a[href^="tel"] {
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

a[href^="tel"]:hover {
  transform: scale(1.05);
}

/* 🔹 CTA Section */
section:last-of-type {
  text-align: center;
  background: #269044;
  color: #fff;
}

section:last-of-type a {
  background: #fff;
  color: #269044;
}


/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  section {
    margin: 10px;
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  header h2 {
    font-size: 18px;
  }
}



.hero-start {
  background: #f8f9fa;
  padding: 70px 20px;
  text-align: center;
}

.hero-start h1 {
  font-size: 30px;
  color: #222;
  margin-bottom: 15px;
}

.hero-text {
  font-size: 15px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.9;
}

/* 🔹 الأزرار */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-main {
  background: #269044;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  background: #1f7a39;
}

.btn-outline {
  border: 2px solid #269044;
  color: #269044;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
    background: #269044;

}

.btn-outline:hover {
  background: #269044;
  color: #fff;
}

/* 🔹 موبايل */
@media (max-width: 768px) {
  .hero-start h1 {
    font-size: 24px;
  }

  .hero-text {
    font-size: 14px;
  }
}

.numbers-clean {
  max-width: 600px;
  margin: 30px auto;
  padding: 0; /* مهم */
  background: none; /* مفيش خلفية */
  box-shadow: none; /* مفيش ظل */
}

.numbers-clean h2 {
  color: #269044;
  margin-bottom: 20px;
  font-size: 22px;
}

/* الصف */
.number-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee; /* خط بسيط بس */
}

/* النص */
.number-row span {
  color: #555;
  font-size: 15px;
}

/* الرقم */
.number-row a {
  color: #269044;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}

.number-row a:hover {
  text-decoration: none;
}

/* موبايل */
@media (max-width: 768px) {
  .number-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.number-row a {
  background: none !important;   /* يشيل الخلفية */
  padding: 0 !important;        /* يشيل padding */
  border: none !important;      /* يشيل البوردر */
  border-radius: 0 !important;  /* يشيل الشكل الدائري */
  color: #269044;               /* لون الرقم */
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}

.number-row a:hover {
  background: none !important;
  text-decoration: none;
}



.services {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.services h2 {
  color: #269044;
  margin-bottom: 30px;
}

/* الصف */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 جنب بعض */
  gap: 20px;
}

/* العنصر */
.service-item {
  text-align: center;
}

/* الأيقونة */
.service-item i {
  font-size: 35px;
  color: #269044;
  margin-bottom: 10px;
}

/* العنوان */
.service-item h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

/* النص */
.service-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .services-row {
    grid-template-columns: 1fr; /* واحده تحت واحده */
  }
}


.codes-steps {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.codes-steps h2 {
  color: #269044;
  margin-bottom: 25px;
}

/* 🔹 الأكواد */
.codes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.code-item i {
  font-size: 30px;
  color: #269044;
  margin-bottom: 8px;
}

.code-item h3 {
  margin-bottom: 5px;
  color: #222;
}

.code-item p {
  font-size: 13px;
  color: #666;
}

/* 🔹 الخطوات */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.step-item i {
  font-size: 28px;
  color: #269044;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: #555;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .codes-row {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }
}



.final-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.final-text {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
}

.final-section h2 {
  color: #269044;
  margin-bottom: 20px;
}

/* الأرقام */
.final-numbers {
  max-width: 500px;
  margin: auto;
}

.num-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.num-line span {
  color: #555;
}

.num-line a {
  color: #269044;
  font-weight: bold;
  text-decoration: none;
}

.num-line a:hover {
  text-decoration: underline;
}

/* موبايل */
@media (max-width: 768px) {
  .num-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}



.issues {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.issues h2 {
  color: #269044;
  margin-bottom: 30px;
}

/* الصف */
.issues-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 جنب بعض */
  gap: 20px;
}

/* العنصر */
.issue-box {
  text-align: center;
}

/* الأيقونة */
.issue-box i {
  font-size: 32px;
  color: #269044;
  margin-bottom: 10px;
}

/* العنوان */
.issue-box h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

/* النص */
.issue-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .issues-row {
    grid-template-columns: 1fr; /* تحت بعض */
  }
}

.tips-benefits {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.tips-benefits h2 {
  color: #269044;
  margin-bottom: 25px;
}

.mt {
  margin-top: 40px;
}

/* الصفوف */
.tips-row,
.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* العناصر */
.tip-item,
.benefit-item {
  text-align: center;
}

/* الأيقونات */
.tip-item i,
.benefit-item i {
  font-size: 30px;
  color: #269044;
  margin-bottom: 10px;
}

/* النص */
.tip-item p,
.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .tips-row,
  .benefits-row {
    grid-template-columns: 1fr; /* تحت بعض */
  }
}


.faq {
  max-width: 800px;
  margin: 50px auto;
}

.faq h2 {
  text-align: center;
  color: #269044;
  margin-bottom: 25px;
}

/* العنصر */
.faq-item {
  border-bottom: 1px solid #eee;
}

/* السؤال */
.faq-question {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  color: #222;
}

/* الإجابة */
.faq-answer {
  display: none;
  padding: 0 15px 15px;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}






/* 🔹 Footer */
footer{
  background:#269044;
  padding:20px;
  text-align:center;
  margin-top:40px;
}

footer p{
  color:#fff;
  font-size:14px;
  margin:0;
}
