.contact-section {
  width: 90%;
  max-width: 1200px; /* الحد الأقصى للحفاظ على التنسيق */
  margin: 50px auto;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e0e6ff);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}


.contact-section h2 {
  font-size: 3rem;
  color: #1305d4;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.contact-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f9d342;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ====== النموذج ====== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1305d4;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #1305d4;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #f9d342;
  color: #1305d4;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ====== معلومات الاتصال ====== */
.contact-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* ====== الخريطة ====== */
.map-container {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* تجاوب */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2.2rem;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
