*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f7fb;
  color: #111827;
  line-height: 1.7;
  direction: rtl;
  font-size: 18px; /* خط عام أكبر */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* TOP BAR */

.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.top-contact {
  font-size: 1rem;
  color: #0f172a;
  white-space: nowrap;
}

.top-contact a {
  font-weight: 800;
  color: #0ea5e9;
  font-size: 1.1rem;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #e0f2fe 0, #f5f7fb 40%, #ffffff 100%);
  padding-bottom: 3rem;
}

.hero-flex {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 1rem 1.5rem;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 1rem;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.price-banner {
  background: linear-gradient(135deg, #4c1dca, #0ea5e9);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: 0.9rem;
  font-size: 1.6rem; /* تكبير نص السعر */
  font-weight: 900;
  display: inline-block;
  margin: 1rem 0 1.2rem;
  position: relative;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
  animation: gentle-shake 1.75s ease-in-out infinite alternate;
}

.price-banner span {
  color: #facc15;
}

.price-banner-center {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

@keyframes gentle-shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.hero-benefits li::before {
  content: '✔';
  color: #16a34a;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.hero-note {
  background-color: rgba(56, 189, 248, 0.12);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.25));
  border-radius: 1.5rem;
}

/* ORDER FORMS */

.order-section {
  margin-top: 1.5rem;
}

.order-section h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  color: #6b7280;
}

.order-form {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 1.05rem; /* أكبر وأوضح */
  color: #111827;
  font-weight: 700;
}

.form-group input,
.form-group select {
  border-radius: 0.9rem;
  border: 1px solid #cbd5e1;
  padding: 0.9rem 1rem; /* تكبير مساحة الإدخال */
  font-size: 1.1rem;    /* خط أكبر ليسهل على الكبار */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-group select {
  background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.3);
  background-color: #f9fafb;
}

.btn-primary {
  margin-top: 1.1rem;
  width: 100%;
  border: none;
  border-radius: 0.9rem;
  padding: 0.95rem 1.1rem;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #0ea5e9, #4c1dca);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
  opacity: 0.97;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #6b7280;
}

/* CONTENT SECTIONS */

.section {
  padding: 2.7rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 1.6rem;
  text-align: center;
  color: #0f172a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  font-size: 1.02rem;
  color: #4b5563;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.1rem;
}

.steps-list,
.list-check,
.list-dots {
  font-size: 1.02rem;
  color: #374151;
}

.steps-list {
  padding-left: 1.4rem;
}

.steps-list li {
  margin-bottom: 0.4rem;
}

.list-check,
.list-dots {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0;
}

.list-check li,
.list-dots li {
  margin-bottom: 0.4rem;
  padding-right: 1.4rem;
  position: relative;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0.15rem;
  font-size: 0.9rem;
  color: #16a34a;
}

.list-dots li::before {
  content: '•';
  position: absolute;
  right: 0.1rem;
  top: 0.05rem;
  font-size: 1.2rem;
  color: #4c1dca;
}

/* FAQ */

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

.faq-item p {
  margin: 0;
  font-size: 1.02rem;
  color: #4b5563;
}

/* CTA */

.cta-section {
  text-align: center;
}

.cta-text {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #4b5563;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background-color: #f3f4f6;
  padding: 0.9rem 0;
  font-size: 0.95rem;
  color: #6b7280;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-contact {
    white-space: normal;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .price-banner {
    font-size: 1.4rem;
  }

  .order-form {
    padding: 1.1rem;
  }

  .section {
    padding: 2.2rem 0;
  }
}
