<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>اتصل بنا | متجر دمشق الإلكتروني</title>
<style>
body {
font-family: "Tajawal", sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
.contact-container {
max-width: 800px;
margin: 50px auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 30px;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
p {
text-align: center;
color: #555;
line-height: 1.8;
}
.contact-info {
margin-top: 30px;
text-align: center;
}
.contact-info div {
margin-bottom: 15px;
font-size: 18px;
}
.contact-info a {
color: #0078d7;
text-decoration: none;
}
form {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 15px;
}
input, textarea {
padding: 12px;
border-radius: 10px;
border: 1px solid #ccc;
font-size: 16px;
resize: none;
}
button {
background-color: #0078d7;
color: #fff;
padding: 14px;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
transition: 0.3s;
}
button:hover {
background-color: #005fa3;
}
</style>
</head>
<body>
<div class="contact-container">
<h1>اتصل بنا</h1>
<p>
نسعد دائمًا بتواصلك معنا في <strong>متجر دمشق الإلكتروني</strong>.
إذا كان لديك أي استفسار أو اقتراح أو واجهت مشكلة في الطلبات أو الحساب، لا تتردد في مراسلتنا.
فريق الدعم جاهز لخدمتك بكل احترافية وسرعة.
</p>
<div class="contact-info">
<div><strong>البريد الإلكتروني:</strong> <a href="mailto:support@damascus-store.com">support@damascus-store.com</a></div>
<div><strong>رقم الهاتف:</strong> +90 534 923 2792</div>
<div><strong>ساعات العمل:</strong> يوميًا من 9 صباحًا حتى 9 مساءً</div>
</div>
<form>
<input type="text" placeholder="الاسم الكامل" required>
<input type="email" placeholder="البريد الإلكتروني" required>
<textarea rows="5" placeholder="اكتب رسالتك هنا..." required></textarea>
<button type="submit">إرسال الرسالة</button>
</form>
</div>
</body>
</html>