@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@400;500;700;900&display=swap');

:root {
  --primary: #0B5FFF;
  --primary-dark: #0846C7;
  --primary-deep: #052C7A;
  --primary-light: #EAF1FF;
  --ink: #0A1428;
  --ink-soft: #1E2A3F;
  --steel: #44546B;
  --slate: #6B7A93;
  --mist: #9CA8BC;
  --cloud: #EEF2F8;
  --paper: #F7F9FC;
  --white: #FFFFFF;
  --gold: #F2A93B;
  --border: #E3E8F0;
  --shadow-sm: 0 2px 8px rgba(10,20,40,0.06);
  --shadow-md: 0 8px 28px rgba(10,20,40,0.09);
  --shadow-lg: 0 20px 60px rgba(10,20,40,0.14);
  --shadow-glow: 0 12px 40px rgba(11,95,255,0.28);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.75;
  direction: rtl;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(227,232,240,0.7);
  z-index: 1000;
  transition: var(--ease) 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.3rem; color: var(--ink);
}

.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(11,95,255,0.35);
}

.nav-logo span strong { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a {
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--steel);
  transition: var(--ease) 0.25s;
}

.nav-links a:hover, .nav-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.btn-call-nav {
  display: flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.93rem !important;
  transition: var(--ease) 0.25s !important;
  box-shadow: var(--shadow-glow);
}

.btn-call-nav:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(11,95,255,0.4) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}

.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--ease) 0.25s; }

/* ===================== HERO ===================== */
.hero {
  padding-top: 78px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute; top: -10%; left: -8%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(11,95,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-2 {
  position: absolute; bottom: -15%; right: -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(242,169,59,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot { width: 7px; height: 7px; background: #19C37D; border-radius: 50%; animation: blink 1.8s infinite; }

@keyframes blink { 50% { opacity: 0.4; } }

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-title .highlight { color: var(--primary); }

.hero-desc {
  font-size: 1.13rem;
  color: var(--steel);
  margin-bottom: 38px;
  max-width: 520px;
  font-weight: 400;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 17px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: var(--ease) 0.3s;
  box-shadow: var(--shadow-glow);
  border: none;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(11,95,255,0.42); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 17px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.02rem;
  border: 1.5px solid var(--border);
  transition: var(--ease) 0.3s;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.hero-stats { display: flex; gap: 40px; }

.stat-item { text-align: right; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--ink); line-height: 1; }
.stat-number span { color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--mist); margin-top: 6px; font-weight: 600; }

.hero-visual { position: relative; }

.hero-img-stack { position: relative; }

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,15,40,0.5) 100%);
}

.hero-float-card {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  min-width: 220px;
  z-index: 2;
}

.hero-float-card-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-float-card-text strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--ink); }
.hero-float-card-text span { font-size: 0.8rem; color: var(--mist); }

.hero-badge-corner {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--white);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
  border: 1px solid var(--border);
}

.hero-badge-corner strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.hero-badge-corner span { font-size: 0.75rem; color: var(--mist); font-weight: 600; }

/* logo strip */
.trust-strip {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 28px 0;
}

.trust-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}

.trust-item { display: flex; align-items: center; gap: 10px; color: var(--slate); font-weight: 700; font-size: 0.9rem; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ===================== SECTIONS ===================== */
.section { padding: 110px 28px; }
.section-alt { background: var(--paper); }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-header.left { text-align: right; margin: 0 0 48px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title { font-size: 2.4rem; font-weight: 900; color: var(--ink); margin-bottom: 18px; line-height: 1.3; letter-spacing: -0.5px; }
.section-desc { color: var(--slate); font-size: 1.08rem; }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease) 0.35s;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,15,40,0.35) 100%);
}

.service-card-icon-badge {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.service-card-body { padding: 26px; }
.service-card-title { font-size: 1.18rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.service-card-desc { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 18px; }

.service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.service-card-link svg { transition: transform 0.25s var(--ease); }
.service-card:hover .service-card-link svg { transform: translateX(-4px); }

/* ===================== WHY US ===================== */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }

.why-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }

.why-item-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}

.why-item-text strong { display: block; font-weight: 800; color: var(--ink); margin-bottom: 5px; font-size: 1.02rem; }
.why-item-text span { font-size: 0.92rem; color: var(--slate); }

.why-visual { position: relative; }
.why-img-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
.why-img-tall { border-radius: var(--radius); overflow: hidden; height: 480px; box-shadow: var(--shadow-md); }
.why-img-tall img { width: 100%; height: 100%; object-fit: cover; }
.why-img-col { display: flex; flex-direction: column; gap: 16px; }
.why-img-small { border-radius: var(--radius); overflow: hidden; height: 232px; box-shadow: var(--shadow-md); }
.why-img-small img { width: 100%; height: 100%; object-fit: cover; }

.why-stat-badge {
  position: absolute; bottom: -20px; right: 30%;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: white;
}

.why-stat-badge strong { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); }
.why-stat-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ===================== PROCESS ===================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.process-card { background: var(--white); padding: 44px 28px; text-align: center; position: relative; transition: var(--ease) 0.3s; }
.process-card:hover { background: var(--primary-light); }

.process-num {
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white;
  margin: 0 auto 22px;
  transition: var(--ease) 0.3s;
}

.process-card:hover .process-num { background: var(--primary); transform: scale(1.08) rotate(-4deg); }

.process-card-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.process-card-desc { font-size: 0.88rem; color: var(--slate); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--ease) 0.3s;
  position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-card .quote-mark { position: absolute; top: 24px; left: 28px; font-size: 3rem; color: var(--primary-light); font-weight: 900; line-height: 1; font-family: Georgia, serif; }

.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); font-size: 1.05rem; }
.testimonial-text { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 22px; position: relative; z-index: 1; }

.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.author-info span { font-size: 0.8rem; color: var(--mist); }

/* ===================== ARTICLES ===================== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--ease) 0.3s; }
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.article-card-img { height: 190px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.article-card:hover .article-card-img img { transform: scale(1.08); }

.article-card-body { padding: 24px; }
.article-category { display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--primary); background: var(--primary-light); padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.article-card-title { font-size: 1.08rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; line-height: 1.5; }
.article-card-excerpt { font-size: 0.88rem; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.article-card-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--mist); }

/* Single Article */
.article-hero { padding: 150px 28px 60px; background: var(--paper); }
.article-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.article-content-wrap { max-width: 760px; margin: -40px auto 0; padding: 0 28px 80px; position: relative; z-index: 2; }
.article-featured-img { border-radius: var(--radius-lg); overflow: hidden; height: 380px; margin-bottom: 48px; box-shadow: var(--shadow-lg); }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.95; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin: 36px 0 16px; }
.article-body p { margin-bottom: 18px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, var(--primary-dark) 100%);
  padding: 90px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: 2.3rem; font-weight: 900; color: white; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 38px; }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--primary-deep);
  padding: 18px 38px; border-radius: 100px;
  font-weight: 800; font-size: 1.08rem;
  transition: var(--ease) 0.3s; box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,0.28); }

/* ===================== FOOTER ===================== */
footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 72px 28px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-desc { font-size: 0.9rem; line-height: 1.85; margin: 16px 0 18px; color: rgba(255,255,255,0.5); }
.footer-address { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-address svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }

.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--ease) 0.25s; font-size: 0.82rem; font-weight: 700; }
.social-link:hover { background: var(--primary); color: white; }

.footer-col h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: white; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--ease) 0.2s; }
.footer-col ul li a:hover { color: white; padding-right: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.42); transition: var(--ease) 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

/* ===================== FLOATING BUTTONS ===================== */
.float-call-btn {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--ease) 0.3s;
  animation: pulseGreen 2.6s ease-in-out infinite;
}
@keyframes pulseGreen { 0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.45); } 50% { box-shadow: 0 8px 36px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); } }
.float-call-btn:hover { transform: scale(1.1); }

.float-call-phone { position: fixed; bottom: 32px; right: 32px; z-index: 999; }
.float-phone-btn {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; padding: 15px 26px; border-radius: 100px;
  font-weight: 800; font-size: 0.96rem;
  box-shadow: var(--shadow-glow);
  transition: var(--ease) 0.3s;
  animation: pulseBlue 2.6s ease-in-out infinite;
}
@keyframes pulseBlue { 0%,100% { box-shadow: var(--shadow-glow); } 50% { box-shadow: 0 16px 48px rgba(11,95,255,0.5), 0 0 0 12px rgba(11,95,255,0.08); } }
.float-phone-btn:hover { transform: translateY(-3px); }
.float-phone-btn svg { animation: ring 1.6s ease-in-out infinite; }
@keyframes ring { 0%,100% { transform: rotate(0); } 10% { transform: rotate(-18deg); } 20% { transform: rotate(18deg); } 30% { transform: rotate(-10deg); } 40% { transform: rotate(10deg); } 50% { transform: rotate(0); } }

/* ===================== PAGE HERO (inner) ===================== */
.page-hero { padding: 156px 28px 76px; background: linear-gradient(180deg, var(--paper), var(--white)); text-align: center; }
.page-hero h1 { font-size: 2.6rem; font-weight: 900; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.5px; }
.page-hero p { font-size: 1.08rem; color: var(--slate); max-width: 560px; margin: 0 auto; }

.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--mist); margin-bottom: 22px; }
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* ===================== SERVICE DETAIL PAGE ===================== */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 90px; }
.svc-detail-img { border-radius: var(--radius-lg); overflow: hidden; height: 440px; box-shadow: var(--shadow-lg); }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-feature-list { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.svc-feature { display: flex; gap: 14px; align-items: flex-start; }
.svc-feature-icon { width: 32px; height: 32px; background: var(--primary-light); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.svc-feature span { font-size: 0.96rem; color: var(--ink-soft); font-weight: 600; }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 20px; transition: var(--ease) 0.25s; }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateX(-4px); }
.contact-card-icon { width: 50px; height: 50px; background: var(--primary-light); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-card-text strong { display: block; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.contact-card-text a, .contact-card-text span { font-size: 0.95rem; color: var(--slate); }
.contact-card-text a { color: var(--primary); font-weight: 600; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 9px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: var(--paper);
  transition: var(--ease) 0.2s; outline: none; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(11,95,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.alert-success { background: #E8F9F0; border: 1px solid #B8EBD2; color: #0E7A4A; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.alert-error { background: #FEEDEC; border: 1px solid #F8C9C5; color: #C0392B; padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; font-size: 0.92rem; }

/* ===================== LEGAL PAGES ===================== */
.legal-content { max-width: 840px; margin: 0 auto; padding: 70px 28px; }
.legal-content h2 { font-size: 1.45rem; font-weight: 800; color: var(--ink); margin: 38px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.legal-content p { color: var(--ink-soft); margin-bottom: 16px; font-size: 0.98rem; line-height: 1.9; }
.legal-content ul { list-style: none; padding-right: 4px; margin-bottom: 18px; }
.legal-content ul li { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 10px; line-height: 1.85; padding-right: 26px; position: relative; }
.legal-content ul li::before { content: ''; position: absolute; right: 0; top: 9px; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.legal-date { background: var(--primary-light); border: 1px solid rgba(11,95,255,0.15); border-radius: var(--radius-sm); padding: 16px 22px; font-size: 0.9rem; color: var(--primary); font-weight: 700; margin-bottom: 36px; }

/* ===================== ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 90px; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 460px; box-shadow: var(--shadow-lg); position: relative; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 26px; transition: var(--ease) 0.3s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-deep)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 2rem; font-weight: 800; color: white; }
.team-card h3 { font-size: 1.06rem; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.team-card p { font-size: 0.86rem; color: var(--slate); }

/* ===================== ADMIN ===================== */
.admin-body { background: var(--paper); font-family: 'Cairo', sans-serif; min-height: 100vh; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login-card { background: white; border-radius: var(--radius-lg); padding: 48px; max-width: 420px; width: 100%; box-shadow: var(--shadow-lg); }
.admin-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 260px; background: var(--ink); color: white; padding: 28px 20px; overflow-y: auto; }
.admin-sidebar .nav-logo { color: white; margin-bottom: 40px; padding: 0 8px; }
.admin-sidebar-link { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 10px; color: rgba(255,255,255,0.65); font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; transition: var(--ease) 0.2s; }
.admin-sidebar-link:hover, .admin-sidebar-link.active { background: rgba(255,255,255,0.08); color: white; }
.admin-main { margin-right: 260px; padding: 36px 40px; }
.admin-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.admin-stat-card strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--ink); }
.admin-stat-card span { font-size: 0.85rem; color: var(--slate); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: right; padding: 14px 16px; background: var(--paper); font-size: 0.85rem; font-weight: 700; color: var(--steel); border-bottom: 2px solid var(--border); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--ink-soft); }
.admin-table tr:hover { background: var(--paper); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }
.badge-new { background: #FEF3E2; color: #B7791F; }
.badge-contacted { background: #E8F1FF; color: var(--primary); }
.badge-scheduled { background: #F0E8FF; color: #6B46C1; }
.badge-completed { background: #E8F9F0; color: #0E7A4A; }
.badge-cancelled { background: #FEEDEC; color: #C0392B; }
.btn-admin { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 11px 22px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; border: none; transition: var(--ease) 0.2s; }
.btn-admin:hover { background: var(--primary-dark); }
.btn-admin-outline { background: white; color: var(--ink); border: 1.5px solid var(--border); }
.btn-admin-danger { background: #FEEDEC; color: #C0392B; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 2.5rem; }
  .services-grid, .testimonials-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 80px; }
  .admin-main { margin-right: 80px; }
  .admin-sidebar-link span { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; }
  .nav-toggle { display: flex; }
  .btn-call-nav { display: none; }
  .services-grid, .testimonials-grid, .articles-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .section { padding: 70px 20px; }
  .section-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-phone-btn span { display: none; }
  .float-phone-btn { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
