:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #18324f;
  --muted: #5c728d;
  --primary: #ff7a00;
  --primary-dark: #c85600;
  --border: #dce4ef;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-wrap, .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}
.brand img { width: 44px; height: 44px; }
.site-nav { display: flex; gap: 1rem; }
.site-nav a {
  color: var(--muted);
  font-weight: 600;
}
.site-nav a.active, .site-nav a:hover { color: var(--primary); }
.hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(135deg, #fff4e8 0%, #f7fbff 100%);
}
.hero-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
.hero-copy { font-size: 1.05rem; color: var(--muted); max-width: 600px; }
.button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.button.primary {
  background: var(--primary);
  color: white;
}
.button.primary:hover { background: var(--primary-dark); }
.hero-card, .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(24, 50, 79, 0.06);
}
.section { padding: 3rem 0; }
.section.muted { background: #f8fafc; }
.section-heading { margin-bottom: 1.25rem; }
.form-card { max-width: 860px; }
.quote-card {
  max-width: 900px;
  margin: 0 auto;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-indicator {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.step {
  display: none;
}
.step.active {
  display: block;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.option-item {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.option-item:hover,
.option-item.active {
  border-color: var(--primary);
  color: var(--primary);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; }
input, select, textarea {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}
.full-width { margin-top: 1rem; }
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.button.secondary {
  background: #eaf1f8;
  color: var(--text);
}
.hidden { display: none !important; }
.form-message { min-height: 1.5rem; color: var(--primary-dark); font-weight: 600; margin-top: 0.75rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.intro-block { max-width: 760px; }
.contact-list {
  padding-left: 1rem;
  color: var(--muted);
}
.site-footer {
  background: #18324f;
  color: #fff;
  padding: 1rem 0;
}
.site-footer a { color: #fff; }

@media (max-width: 760px) {
  .hero-grid, .contact-grid, .cards-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap, .footer-wrap { flex-direction: column; gap: 0.7rem; }
}
/* --- Stats Section --- */
.stats-section {
  background-color: #1a202c;
  color: #ffffff;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f59e0b; /* لون بارز للرقم */
}
.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* --- Features Section --- */
.text-center {
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: 1.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #4a5568;
}
.author-info strong {
  display: block;
  color: #1a202c;
}
.author-info span {
  font-size: 0.85rem;
  color: #718096;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 3.5rem 0;
}
.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.cta-text h2 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.cta-text p {
  color: #94a3b8;
  margin: 0;
}
.button.secondary-inverted {
  background-color: #ffffff;
  color: #0f172a;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.button.secondary-inverted:hover {
  background-color: #f1f5f9;
}