.contact-form-rtl {
  direction: rtl;
  text-align: right;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-rtl label {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}

.contact-form-rtl input[type="text"],
.contact-form-rtl input[type="email"],
.contact-form-rtl input[type="tel"],
.contact-form-rtl textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: none !important;
  border-radius: 4px !important;
  background-color: #f5f5f5;
  font-size: 18px;
  font-family: inherit;
  direction: rtl;
  height: 48px;
}

.contact-form-rtl input:focus,
.contact-form-rtl textarea:focus {
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 2px #007bff;
}

.contact-form-rtl textarea {
  min-height: 120px;
  height: auto !important;
  resize: vertical;
}

.contact-form-rtl .contact-submit-btn {
  width: 100%;
  padding: 0 25px !important;
  background: #007bff !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  font-weight: 600;
  cursor: pointer;
  height: 48px;
  transition: background 0.3s ease;
}

.contact-form-rtl .contact-submit-btn:hover {
  background: #0069d9 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-rtl {
    padding: 0 15px;
  }
  
  .contact-form-rtl label {
    font-size: 16px;
  }
  
  .contact-form-rtl input,
  .contact-form-rtl textarea {
    font-size: 16px;
  }
}