/* =========================
   إعدادات عامة
========================= */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: #fff;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
  background: #1a2f5e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 82px; height: 82px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
}

.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-text h1 {
  font-size: 22px; font-weight: 800; color: #fff; line-height: 1.3;
}
.logo-text span {
  display: block; font-size: 13px; color: #a8c4e0; font-weight: 400; margin-top: 2px;
}

nav { display: flex; gap: 26px; }

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: .3s;
  position: relative; padding-bottom: 4px;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 0; height: 2px; background: #fff; transition: .3s;
}
nav a:hover, nav a.active { color: #fff; opacity: .85; }
nav a:hover::after, nav a.active::after { width: 100%; }

.header-cta {
  background: #2a5298;
  color: #fff; text-decoration: none;
  border: none; padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .3s;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.header-cta:hover { background: #1d3f7a; transform: translateY(-2px); }

/* زر تبديل اللغة */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; text-decoration: none;
  border-radius: 8px; padding: 6px 12px;
  font-size: 13px; font-weight: 700;
  transition: .2s; white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,.15); }

/* زر القائمة ☰ - مخفي على الكمبيوتر */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: none; color: #fff;
  width: 42px; height: 42px;
  border-radius: 8px; font-size: 18px;
  cursor: pointer; align-items: center; justify-content: center;
  transition: .2s; flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(255,255,255,.15); }

header::after {
  content: ""; position: absolute;
  bottom: -18px; right: 0;
  width: 200px; height: 30px;
  background: #1a2f5e;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 82% 100%);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 700px;
  background-image: url("images/hero.jpg");
  background-size: cover; background-position: center;
  display: flex; flex-direction: row-reverse;
  justify-content: space-between; align-items: center;
  padding: 60px; gap: 40px;
  position: relative; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.1) 100%);
}
.hero-content, .quote-form { position: relative; z-index: 3; }

.hero-content { flex: 1; max-width: 540px; }
.hero-content h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900; line-height: 1.1; margin-bottom: 10px;
  color: #fff;
  animation: fadeUp .9s ease both;
}
.hero-subtitle {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800; color: #fff;
  margin-bottom: 20px;
  animation: fadeUp 1.1s ease both;
}
.hero-description {
  font-size: 18px; line-height: 2;
  color: rgba(255,255,255,.9); font-weight: 600;
  margin-bottom: 35px;
  animation: fadeUp 1.3s ease both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1.5s ease both;
}

.btn-primary {
  background: #2a5298; color: #fff; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: .3s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(42,82,152,.4);
}
.btn-primary:hover { background: #1d3f7a; transform: translateY(-3px); }

.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: .3s;
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-form {
  width: 380px; flex-shrink: 0;
  background: rgba(10,10,20,.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
}
.quote-form h2 { color: #fff; font-size: 22px; text-align: center; margin-bottom: 6px; }
.subtitle { color: rgba(255,255,255,.6); font-size: 14px; text-align: center; margin-bottom: 20px; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: 12px 14px; border-radius: 10px;
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif; font-size: 15px;
  outline: none; transition: border-color .3s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { border-color: rgba(255,255,255,.5); }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,.4); }
.quote-form input[type="tel"] { direction: ltr; text-align: right; }
.quote-form select { color: rgba(255,255,255,.7); cursor: pointer; }
.quote-form select option { background: #1a2f5e; color: #fff; }
.quote-form textarea { height: 90px; resize: none; line-height: 1.7; margin-bottom: 16px; }
.quote-form button,
.quote-form button[type="submit"],
.quote-form button[type="button"] {
  width: 100%; background: #2a5298; color: #fff; border: none;
  border-radius: 10px; padding: 14px;
  font-family: 'Cairo', sans-serif; font-size: 17px; font-weight: 700;
  cursor: pointer; transition: .3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.quote-form button:hover { background: #1d3f7a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,82,152,.4); }

/* =========================
   SERVICES
========================= */
.services { padding: 90px 60px 80px; background: #f4f7fb; text-align: center; }
.services h2 { font-size: 52px; color: #1a2f5e; margin-bottom: 10px; }

.line {
  width: 70px; height: 3px; background: #2a5298;
  margin: 15px auto; position: relative;
}
.line::after {
  content: ""; width: 10px; height: 10px;
  border-radius: 50%; background: #2a5298;
  position: absolute; left: 50%; top: -4px; transform: translateX(-50%);
}
.services-subtitle { color: #555; font-size: 20px; font-weight: 600; margin-bottom: 50px; }

.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px; max-width: 1400px; margin: auto;
}
.service-card {
  background: #fff; border: 1px solid #dce6f5;
  border-radius: 18px; padding: 30px 16px; text-align: center;
  box-shadow: 0 4px 15px rgba(42,82,152,.06); transition: .35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(42,82,152,.14);
  border-color: rgba(122,163,212,.5);
}
.service-card img { width: 65px; height: 65px; display: block; margin: 0 auto 16px; object-fit: contain; }
.service-card h3 { color: #1a2f5e; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 13px; line-height: 1.9; }

/* =========================
   PROJECTS
========================= */
.projects { padding: 90px 60px 80px; background: #fff; text-align: center; }
.projects h2 { font-size: 52px; color: #1a2f5e; margin-bottom: 10px; }
.projects-subtitle { color: #555; font-size: 20px; font-weight: 600; margin-bottom: 50px; }

.projects-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 18px; max-width: 1400px; margin: 0 auto 40px;
}
.project-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.08); transition: .3s; cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(42,82,152,.15); }
.project-card img {
  width: 100%; height: 175px; object-fit: cover; display: block; transition: transform .4s;
}
.project-card:hover img { transform: scale(1.05); }
.project-info { padding: 14px 14px 16px; border-top: 2px solid #dce6f5; }
.project-info h3 { font-size: 16px; font-weight: 700; color: #1a2f5e; margin-bottom: 4px; }
.project-info p { font-size: 13px; color: #888; }

.projects-btn { text-align: center; }
.projects-btn a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1a2f5e; color: #fff; text-decoration: none;
  padding: 14px 40px; border-radius: 12px;
  font-weight: 700; font-size: 16px; transition: .3s;
}
.projects-btn a:hover { background: #2a5298; transform: translateY(-2px); }

/* =========================
   STATS
========================= */
.stats {
  background: linear-gradient(135deg, #1a2f5e, #2a5298);
  padding: 45px 40px;
  display: flex; justify-content: space-around; align-items: center; text-align: center;
}
.stat-box {
  flex: 1; border-left: 1px solid rgba(255,255,255,.15); padding: 10px 20px;
}
.stat-box:last-child { border-left: none; }
.stat-icon { font-size: 28px; color: #fff; display: block; margin-bottom: 10px; }
.stat-box h3 { color: #fff; font-size: 34px; font-weight: 900; margin-bottom: 6px; }
.stat-box p { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600; }

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  padding: 90px 60px;
  background: #f4f7fb;
  position: relative; overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

/* العمود الأيمن */
.about-main-col { display: flex; flex-direction: column; gap: 0; }

.about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,82,152,.08); border: 1px solid rgba(42,82,152,.2);
  color: #2a5298; font-size: 14px; font-weight: 700;
  padding: 7px 20px; border-radius: 30px; margin-bottom: 24px;
  align-self: flex-start;
}
.about-tag i { font-size: 11px; }

.about-title {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 900;
  color: #1a2f5e; line-height: 1.2; margin-bottom: 20px;
}
.about-title span {
  color: #2a5298; position: relative;
}
.about-title span::after {
  content: ''; position: absolute; bottom: 2px; right: 0; left: 0;
  height: 3px; background: linear-gradient(90deg, #2a5298, transparent); border-radius: 2px;
}

.about-desc {
  font-size: 16px; color: #555; line-height: 2;
  margin-bottom: 36px;
}

.about-stats {
  display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap;
}
.about-stat {
  background: #fff; border: 1px solid #dce6f5;
  border-right: 4px solid #2a5298; border-radius: 14px;
  padding: 16px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; min-width: 110px;
  box-shadow: 0 4px 16px rgba(42,82,152,.07); transition: .3s;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(42,82,152,.12); }
.about-stat .stat-num { font-size: 30px; font-weight: 900; color: #1a2f5e; line-height: 1; }
.about-stat .stat-label { font-size: 13px; font-weight: 600; color: #888; }

.cta-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.whatsapp-btn, .call-btn {
  padding: 13px 28px; border-radius: 12px; text-decoration: none;
  font-weight: 700; font-size: 15px; transition: .3s;
  display: flex; align-items: center; gap: 9px;
}
.whatsapp-btn { background: #25D366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.25); }
.whatsapp-btn:hover { background: #1da851; transform: translateY(-3px); }
.call-btn { background: #1a2f5e; color: #fff; box-shadow: 0 6px 20px rgba(26,47,94,.2); }
.call-btn:hover { background: #2a5298; transform: translateY(-3px); }

/* العمود الأيسر: البطاقات */
.about-features-col {
  display: flex; flex-direction: column; gap: 14px;
}
.feature-item {
  background: #fff; padding: 18px 20px; border-radius: 14px;
  font-weight: 700; font-size: 15px; color: #1a2f5e;
  box-shadow: 0 3px 12px rgba(42,82,152,.06);
  border: 1px solid #dce6f5;
  border-right: 4px solid #2a5298;
  transition: .3s; display: flex; align-items: center; gap: 14px;
}
.feature-item:hover {
  border-right-color: #1a2f5e;
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(42,82,152,.12);
}
.feature-item i {
  color: #2a5298; font-size: 13px; flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(42,82,152,.08); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

/* حذف أنماط قديمة */
.about-img-col, .about-why-col, .about-text-col,
.about-why-title, .about-col-title, .about-col-desc,
.about-factory-img, .about-more-btn { display: none; }

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  padding: 90px 60px;
  background: #fff;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-header .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25);
  color: #d97706; font-size: 14px; font-weight: 700;
  padding: 7px 20px; border-radius: 30px; margin-bottom: 16px;
}
.testimonials-header .section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 900;
  color: #1a2f5e; margin-bottom: 12px;
}
.testimonials-header .section-title span { color: #2a5298; }
.testimonials-header .section-sub {
  font-size: 16px; color: #64748b;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: .3s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; left: 20px;
  font-size: 60px; color: #2a5298; opacity: .1;
  font-family: serif; line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(42,82,152,.2);
  box-shadow: 0 8px 30px rgba(42,82,152,.08);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 3px; }
.star { font-size: 18px; }
.star.filled { color: #f59e0b; }
.star.empty  { color: #d1d5db; }
.testimonial-content {
  font-size: 14px; color: #475569;
  line-height: 1.9; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1a2f5e, #2a5298);
  color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 700; color: #1e293b; }
.author-title { font-size: 12px; color: #94a3b8; margin-top: 2px; }

/* Responsive */
@media (max-width: 900px) {
  .testimonials-section { padding: 60px 30px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonials-section { padding: 40px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #111e3a; color: rgba(255,255,255,.88);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, #a8c4e0, transparent);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 45px; padding: 60px 60px 50px;
  max-width: 1400px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 70px; height: 70px;
  background: transparent;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; padding: 0;
}
.footer-logo-icon img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.footer-logo span { font-size: 12px; color: #c8d8ec; font-weight: 500; }

.footer-about {
  font-size: 14px; line-height: 2; color: rgba(255,255,255,.85); margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(168,196,224,.45); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #c8d8ec; font-size: 15px; text-decoration: none; transition: .3s;
}
.footer-social a:hover { background: #2a5298; color: #fff; transform: translateY(-3px); border-color: #2a5298; }

.footer-col h4 {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 20px; padding-bottom: 10px; position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 30px; height: 2px; background: #7aa3d4; border-radius: 2px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: .3s;
}
.footer-col ul li a:hover { color: #fff; padding-right: 5px; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.9);
}
.footer-contact-list li i { color: #c8d8ec; width: 16px; flex-shrink: 0; }

.footer-bottom {
  text-align: center; padding: 18px 60px;
  max-width: 1400px; margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-bottom span { color: #c8d8ec; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  header { padding: 16px 30px; }
  .hero { padding: 50px 40px; }
  .services, .projects, .about-section { padding: 70px 30px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { padding: 50px 30px 40px; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero { flex-direction: column; padding: 50px 30px; align-items: flex-start; }
  .quote-form { width: 100%; max-width: 100%; }
  nav { gap: 16px; }
  nav a { font-size: 13px; }
  /* الإحصائيات - صفين */
  .stats { flex-wrap: wrap; padding: 30px 20px; gap: 0; }
  .stat-box { min-width: 50%; border-left: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px 10px; }
  .stat-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 768px) {
  /* الهيدر */
  header {
    flex-direction: row; flex-wrap: wrap;
    justify-content: flex-start; align-items: center;
    gap: 10px; padding: 10px 14px; text-align: right; position: relative;
  }
  header::after { display: none; }
  .header-cta { display: none; }
  .header-actions { order: 1; margin-right: auto; margin-left: 0; }
  .header-actions .lang-btn { display: inline-flex; }

  /* زر القائمة + الشعار مجموعين في أقصى اليمين */
  .menu-toggle { display: flex; order: -1; width: 38px; height: 38px; font-size: 16px; }
  .logo { order: 0; gap: 8px; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-text h1 { font-size: 13px; }
  .logo-text span { font-size: 10px; }

  /* القائمة المنسدلة */
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    background: #111e3a;
    border-radius: 10px;
    padding: 10px;
    margin-top: 8px;
    order: 3;
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 8px; font-size: 14px; }
  nav a:hover, nav a.active { background: rgba(255,255,255,.08); }
  nav a::after { display: none; }
  .menu-toggle.active i::before { content: "\f00d"; } /* أيقونة X */

  /* الهيرو */
  .hero { padding: 30px 16px; min-height: auto; }
  .hero-content h1 { font-size: 32px; }
  .hero-subtitle { font-size: 19px; }
  .hero-description { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
  .hero-buttons { flex-direction: row; width: 100%; gap: 8px; }
  .btn-primary, .btn-secondary {
    flex: 1; justify-content: center;
    padding: 10px 8px; font-size: 12px;
    white-space: nowrap; gap: 5px;
  }
  .btn-primary i, .btn-secondary i { font-size: 12px; }

  /* الخدمات والمشاريع */
  .services, .projects { padding: 50px 16px; }
  .about-section { padding: 40px 16px 30px; }
  .about-section::before { display: none; }
  .services h2, .projects h2 { font-size: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* الإحصائيات */
  .stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0; padding: 0;
  }
  .stat-box {
    min-width: 0; flex: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 22px 10px;
  }
  .stat-box:nth-child(2n) { border-left: none; }
  .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
  .stat-icon { font-size: 22px; margin-bottom: 8px; }
  .stat-box h3 { font-size: 24px; margin-bottom: 4px; }
  .stat-box p { font-size: 13px; }

  /* من نحن */
  .about-section { padding: 40px 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-tag { font-size: 12px; padding: 6px 14px; margin-bottom: 14px; }
  .about-title { font-size: 26px; margin-bottom: 12px; }
  .about-title span::after { display: none; }
  .about-desc { font-size: 14px; line-height: 1.9; margin-bottom: 22px; }
  .about-stats { gap: 10px; margin-bottom: 22px; }
  .about-stat { padding: 12px 16px; }
  .about-stat .stat-num { font-size: 22px; }
  .about-stat .stat-label { font-size: 11px; }
  .cta-buttons { flex-direction: column; }
  .whatsapp-btn, .call-btn { justify-content: center; padding: 13px 20px; }
  .about-features-col { gap: 10px; }
  .feature-item { padding: 14px 16px; font-size: 13px; }

  /* الفوتر */
  .footer-grid { grid-template-columns: 1fr; padding: 24px 16px; gap: 20px; }
  .footer-bottom { padding: 16px; }
  .footer-col h4 { margin-bottom: 12px; font-size: 14px; }
  .footer-col ul:not(.footer-contact-list) {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }
  .footer-col ul li a { font-size: 13px; }
  .footer-contact-list li { font-size: 13px; }

  /* فورم عرض السعر */
  .quote-form { padding: 22px 18px; border-radius: 16px; }
  .quote-form h2 { font-size: 18px; }
  .quote-form input, .quote-form select, .quote-form textarea { padding: 10px 12px; font-size: 14px; }
  .quote-form button { padding: 12px; font-size: 15px; }
}

@media (max-width: 480px) {
  /* الهيدر */
  .logo-text h1 { font-size: 14px; }
  nav a { font-size: 12px; }

  /* الخدمات والمشاريع */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .services h2, .projects h2 { font-size: 30px; }

  /* الفورم */
  .quote-form { padding: 20px 16px; }
}
