/* سكشن التواصل */
.contact-section {
  padding: 160px 80px 80px 80px;
  text-align: center;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.contact-section::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 20%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
/* صندوق الفورم */
.contact-box {
  background: #111;
  padding: 40px;
  border-radius: 15px;
  width: 60%;
  margin: 0 auto 100px auto;
  box-shadow: 0 0 20px rgba(255, 120, 0, 0.15);
}
/* صف الاسم الأول والاخير */
.form-row {
  display: flex;
  gap: 10px;
}

/* حقول الإدخال */
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  background: #000;
  border: 2px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

/* الرسالة */
.form-textarea {
  height: 130px;
  resize: none;
}

/* تأثير الفوكس */
.form-input:focus,
.form-textarea:focus {
  border-color: #ff7a00;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 122, 0, 0.4);
}

/* زرار الإرسال */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #ff7a00;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  background: #ffa048;
}

/* سياسة الخصوصية */
.privacy-text {
  margin-top: 12px;
  font-size: 14px;
  color: #bbb;
}

.privacy-text a {
  color: #ff7a00;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* موبايل */
@media (max-width: 500px) {
  .contact-section {
    padding: 100px 20px 50px 20px;
  }
  .contact-box {
    width: 100%;
    padding: 25px;
  }
  .form-row {
    flex-direction: column;
  }
  .privacy-text {
    font-size: 12px;
  }
}
/* -------------------------------------------- */
.contact-section2 {
  background-color: rgb(0, 0, 0);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.contact-section2::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 60%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.contact-section2::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 40%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.contact-section::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 60%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.contact-section::after {
  content: "";
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 115, 0, 0.144),
    rgba(0, 0, 0, 0)
  );
  filter: blur(40px);
}
.cs-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cs-left {
  width: 45%;
  text-align: center;
  color: white;
}
.cs-right {
  width: 50%;
}
.cs-item {
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #ff7b0000, #ff7a00, #4c00ff00) 1;
  padding: 15px 0;
}
.cs-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: white;
}
.cs-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: 0.3s;
}
.cs-question.active::after {
  content: "-";
}
.cs-answer {
  height: 0;
  overflow: hidden;
  padding: 0;
  color: #b8b8b8;
  line-height: 52px;
}
.cs-answer.open {
  padding: 10px 0;
}
/* ميديا */
@media (max-width: 768px) {
  .contact-section2 {
    padding: 50px 20px;
  }
  .cs-container {
    flex-direction: column;
    gap: 50px;
  }
  .cs-left,
  .cs-right {
    width: 100%;
  }
  .cs-answer {
    line-height: 30px;
  }
  .cs-question {
    font-size: 14px;
  }
}
/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.terms-container {
  max-width: 900px;
  margin: 32px auto;
  padding: 180px 0 50px 0;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.terms-container h1 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.terms-container h2 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: #ffffff;
}

.intro {
  font-size: 0.99rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.section {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #eef2f7;
}

.terms-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
}

.terms-list > li {
  margin-bottom: 12px;
}

.terms-container dl {
  margin: 8px 0 0;
  padding-left: 18px;
}

.terms-container dt {
  font-weight: 700;
  margin-top: 8px;
}

.terms-container dd {
  margin: 2px 0 8px 0;
  padding-left: 8px;
  color: #ffffff;
}

ul,
ol {
  margin: 8px 0 8px 20px;
}

ul li,
ol li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
}

.terms-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed #ff7a00;
  font-size: 0.92rem;
  color: #ffffff98;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .terms-container {
    margin: 20px;
    padding: 50px 15px;
    border-radius: 10px;
  }
  .terms-container h1 {
    font-size: 1.5rem;
  }
}
