body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* CONTACT SECTION */
.contact-header {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../IMAGES/pro3.jpg'); 
background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  /*   
  background-color: #0A242C; متناسق مع HOME.css overlay */
  color: white;
  text-align: center;
  padding: 60px 20px;
  height: 373px;
 
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: white; /* توحيد لون العنوان */
}

.contact-header p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  color: #9aa1b5; /* توحيد لون الفقرة */
}

.contact-container {
  display: flex;
  justify-content: center;     
  align-items: center;        
  min-height: 80vh;           
  padding: 50px 10%;
  background-color: #f2f2f2;   
  gap: 40px;
}

.form-container {
  background: white;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 700px;           
}

.form-container h2 {
  color: #14317a; /* توحيد لون العنوان */
  margin-bottom: 20px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid navy;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: #020089; /* أزرق */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
}

form button:hover {
  background-color: #ed7105; /* برتقالي */
  color: white;
}
