/* service.css — تصميم احترافي */

/* خطوط وأساسيات */
body {
  background-color: #f3f4f6;
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
}

/* إطار الفورم */
form {
  background-color: #fff;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  direction: rtl;
}

/* عنوان الفورم */
form h2 {
  text-align: center;
  color: #222;
  margin-bottom: 25px;
  font-size: 26px;
}

/* جميع التسميات */
form label {
  display: block;
  margin: 15px 0 5px;
  color: #333;
  font-weight: 600;
}

/* الحقول */
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="date"],
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s;
  background-color: #fafafa;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

/* خيارات الراديو */
form input[type="radio"],
form input[type="checkbox"] {
  margin-left: 5px;
  transform: scale(1.2);
}

/* الزر الأساسي */
form button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 25px;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* زر خاص بالنادي الليلي */
form button.club-btn {
  background-color: #d63384;
}

form button.club-btn:hover {
  background-color: #a61e66;
}

/* زر بايبال */
form .paypal-button {
  margin-top: 15px;
  display: block;
  text-align: center;
}

form .paypal-button button {
  background-color: #ffc439;
  color: #111;
  font-weight: 600;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form .paypal-button button:hover {
  background-color: #e0b832;
}

/* ملاحظات */
form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ريسبونسيف */
@media (max-width: 600px) {
  form {
    padding: 20px;
  }

  form h2 {
    font-size: 22px;
  }
}
