:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --primary: #22c55e;
  --secondary: #3b82f6;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0,0,0,.08);
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

/* الشعار + النص */
.hero {
  text-align: center;
  margin-bottom: 24px;
}
.logo {
  width: 250px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 24px;
  margin: 0 0 8px;
}
.hero p {
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}

/* الأزرار */
.actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}
/* صندوق التواصل */
.contact-box {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 20px;
}

.contact-box h2 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--text);
}

.btn {
  flex: 1;
  text-decoration: none;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.btn.whatsapp { background: #25D366; }
.btn.call { background: var(--secondary); }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn .icon {
  width: 20px;
  height: 20px;
}


/* النموذج */
.form-section {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: grid;
  gap: 14px;
}
label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
input, select {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #d1d5db;
  font-size: 15px;
}
input:focus, select:focus {
  outline: 2px solid var(--primary);
  border-color: var(--primary);
}

.submit-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  margin-top: 10px;
}
.submit-btn:hover {
  background: #16a34a;
}

.privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.privacy a {
  color: var(--secondary);
  text-decoration: none;
}
.privacy a:hover {
  text-decoration: underline;
}
/* قسم المميزات */
.features {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid #eee;
}

.features li:last-child {
  border-bottom: none;
}

.features img {
  width: 20px;
  height: 20px;
}
.features h2 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #e08d55;
  text-align: center;
  border-bottom: 1px solid #3a3636;
  padding-bottom: 10px;
}
