عملية الشراء معطلة في الوقت الحالي, أضف المنتجات التي ترغب بشرائها في السلة واتمم عملية الشراء في وقت لاحق.
سلة المشتريات

سلة المشتريات فارغة

تسوق الآن
...جاري التحميل
قائمة التصفح
اللغة والتوصيل

اتصل بنا

<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
  <meta charset="UTF-8">
  <title>اتصل بنا | دفترون</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    body {
      font-family: "Tajawal", sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
      direction: rtl;
    }

    .contact-container {
      max-width: 600px;
      margin: 80px auto;
      background-color: #fff;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      border-radius: 16px;
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    label {
      display: block;
      margin: 12px 0 6px;
      font-weight: bold;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 10px;
      font-size: 16px;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    button {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 20px;
      width: 100%;
    }

    button:hover {
      background-color: #333;
    }
  </style>
</head>
<body>

  <div class="contact-container">
    <h2>راسلنا مباشرة</h2>
    <form action="mailto:[email protected]" method="POST" enctype="text/plain">
      <label for="name">الاسم الكامل</label>
      <input type="text" id="name" name="name" required>

      <label for="email">البريد الإلكتروني</label>
      <input type="email" id="email" name="email" required>

      <label for="message">الرسالة</label>
      <textarea id="message" name="message" required></textarea>

      <button type="submit">إرسال</button>
    </form>
  </div>

</body>
</html>