

الستايل

/* contact.css */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #ffffff;
  color: #222;
}

.contact-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 30px;
  text-align: center;
}

.contact-container h1 {
  color: #0288d1;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.contact-info {
  flex: 1 1 40%;
  text-align: right;
  line-height: 1.8;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.contact-form label {
  font-weight: 600;
  color: #444;
}

.contact-form input, .contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
}

.contact-form button {
  background-color: #0288d1;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #0277bd;
}

.alert {
  margin: 10px auto;
  padding: 10px;
  width: 80%;
  border-radius: 8px;
}

.alert.success {
  background: #c8e6c9;
  color: #2e7d32;
}

.alert.error {
  background: #ffcdd2;
  color: #c62828;
}

.social-links a {
  margin: 0 8px;
  color: #0288d1;
  font-size: 20px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #01579b;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
