body {
  font-family: "Tajawal", sans-serif;
  background: #f2f4f8;
  margin: 0;
}

.header {
  background: #1c71d8;
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 26px;
  animation: fadeDown 0.8s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 750px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 15px;
}

/* صندوق السيارة */
.car-box {
  background: #fff;
  padding: 20px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  animation: fade 0.9s ease;
}

@keyframes fade {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.car-box h2 {
  margin: 0 0 10px;
  color: #222;
  font-size: 26px;
}

/* نموذج التواصل */
.contact-form {
  background: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideUp 0.9s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-form label {
  font-size: 16px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1c71d8;
  box-shadow: 0 0 8px rgba(28,113,216,0.2);
}

/* زر الإرسال */
.btn {
  background: #1c71d8;
  color: #fff;
  padding: 14px;
  border: none;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #1558a6;
  transform: translateY(-3px);
}
