/* Reset عام */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* رأس الموقع */
header {
  background: linear-gradient(to right, #1d3557, #457b9d);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
  opacity: 0.9;
}

/* الأقسام */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* عناوين */
h2 {
  text-align: center;
  color: #1d3557;
  margin-bottom: 30px;
  font-size: 28px;
}

/* جدول الأسعار */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  flex: 1;
  min-width: 260px;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan.highlight {
  border: 2px solid #1d3557;
}

.plan h3 {
  font-size: 22px;
  color: #1d3557;
  margin-bottom: 10px;
}

.plan .price {
  font-size: 24px;
  color: #e63946;
  margin-bottom: 10px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan ul li {
  margin: 8px 0;
}

.plan button {
  background-color: #1d3557;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plan button:hover {
  background-color: #457b9d;
}

/* الأسئلة الشائعة */
details {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

details summary {
  font-weight: bold;
  cursor: pointer;
  color: #1d3557;
}

/* نموذج الطلب */
form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

form button {
  background-color: #1d3557;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #457b9d;
}

/* معرض الأعمال */
.show-img {
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* التواصل */
.social {
  text-align: center;
  margin-top: 20px;
}

.social a {
  margin: 0 10px;
  color: #1d3557;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #e63946;
}

.whatsapp {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: green;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

/* اللغات */
.language-switcher {
  text-align: center;
  margin: 40px auto 20px;
}

.language-switcher button {
  padding: 8px 16px;
  margin: 0 5px;
  background: #1d3557;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-switcher button:hover {
  background: #457b9d;
}

/* التذييل */
footer {
  background: #1d3557;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.secure-badge {
  font-style: italic;
  color: #ccc;
  display: block;
  margin-top: 10px;
}

/* الهاتف */
@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  header h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .plan {
    width: 100%;
    max-width: 400px;
  }
}