/* ════════════════════════════════════════════════
   HOMEPAGE — Premium Dark + Conversion Focus
═══════════════════════════════════════════════ */

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 3rem 5rem;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.8);
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%),
    radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

.hero h1 {
  font-family: var(--font-arabic);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 2rem;
}

.hero h1 .hero-line-1 {
  display: block;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 0.4s forwards;
}

.hero h1 .hero-line-2 {
  display: block; margin-top: 0.3rem;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}

.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 100%; height: 6px;
  background: var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 0.8s forwards;
}

.hero-lead strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-cta {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 1s forwards;
}

.hero-trust {
  display: flex; gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  opacity: 0; animation: fadeUp 1.2s var(--ease) 1.2s forwards;
}

.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.trust-item svg {
  width: 18px; height: 18px;
  color: var(--gold);
}

.trust-item strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-scroll {
  position: absolute; bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.7rem;
  z-index: 3;
  opacity: 0; animation: fadeUp 1.2s var(--ease) 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 500;
}

.scroll-arrow {
  width: 1px; height: 40px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-arrow::after {
  content: '';
  position: absolute; top: -100%;
  width: 100%; height: 50%;
  background: var(--text);
  animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% { top: -100%; }
  100% { top: 200%; }
}

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

/* ═══════ STATS BAR ═══════ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 3rem;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--line);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
  margin-right: 0.2rem;
  vertical-align: top;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ═══════ SERVICES PRO ═══════ */
.services-pro {
  padding: 8rem 3rem;
  position: relative;
}

.services-pro-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.svc-pro-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.svc-pro-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.svc-pro-card:hover {
  border-color: var(--gold);
  background: var(--bg-3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.svc-pro-card:hover::before {
  opacity: 1;
}

.svc-pro-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.8rem;
  transition: all 0.5s var(--ease);
}

.svc-pro-icon svg {
  width: 32px; height: 32px;
}

.svc-pro-card:hover .svc-pro-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.svc-pro-card h3 {
  font-family: var(--font-arabic);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.svc-pro-card > p {
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.svc-pro-features {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.svc-pro-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.svc-pro-features svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-pro-highlight {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: rgba(212, 175, 55, 0.05);
  border-right: 3px solid var(--gold);
  margin-bottom: 1.8rem;
}

.svc-pro-highlight svg {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-pro-highlight span {
  font-family: var(--font-arabic);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.svc-pro-cta {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-arabic);
  transition: all 0.4s var(--ease);
  margin-top: auto;
}

.svc-pro-cta svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}

.svc-pro-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.svc-pro-cta:hover svg {
  transform: translateX(-4px);
}

/* ═══════ WHY US ═══════ */
.why-us {
  padding: 8rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.why-us-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: var(--bg-4);
}

.why-card:hover::before { width: 100%; }

.why-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  top: 1rem; left: 1.5rem;
  line-height: 1;
  transition: opacity 0.4s;
}

.why-card:hover .why-card-num { opacity: 0.6; }

.why-card-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.why-card-icon svg {
  width: 32px; height: 32px;
}

.why-card h3 {
  font-family: var(--font-arabic);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.why-card p {
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* ═══════ PROJECTS SHOWCASE ═══════ */
.projects-show {
  padding: 8rem 3rem;
}

.projects-show-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-show-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 4rem;
  flex-wrap: wrap; gap: 2rem;
}

.projects-show-title {
  font-family: var(--font-arabic);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -1px;
}

.projects-show-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.projects-show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proj-show-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}

.proj-show-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: all 1s var(--ease);
}

.proj-show-card:hover .proj-show-img {
  transform: scale(1.08);
}

.proj-show-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.2) 100%);
  transition: all 0.5s;
}

.proj-show-card:hover .proj-show-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.3) 100%);
}

.proj-show-info {
  position: absolute; bottom: 2rem; right: 2rem; left: 2rem;
  z-index: 2;
  color: var(--text);
}

.proj-show-cat {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.proj-show-info h3 {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.proj-show-meta {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.88rem;
  color: var(--text-2);
}

.proj-show-meta .dot { color: var(--gold); }

.proj-show-icon {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}

.proj-show-icon svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}

.proj-show-card:hover .proj-show-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* ═══════ TESTIMONIALS ═══════ */
.testimonials {
  padding: 8rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.testimonials-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -20px; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  opacity: 0.3;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.testi-stars {
  display: flex; gap: 0.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.testi-stars svg {
  width: 18px; height: 18px;
}

.testi-text {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-style: italic;
}

.testi-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  font-weight: 800;
}

.testi-info { display: flex; flex-direction: column; gap: 0.1rem; }

.testi-info strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.testi-info span {
  font-size: 0.82rem;
  color: var(--text-3);
}

.testi-project {
  color: var(--gold) !important;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ═══════ PROCESS ═══════ */
.process {
  padding: 8rem 3rem;
}

.process-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 50px; right: 8%; left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.process-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
  z-index: 1;
}

.process-card:hover {
  border-color: var(--gold);
  background: var(--bg-3);
  transform: translateY(-5px);
}

.process-num {
  width: 60px; height: 60px;
  background: var(--bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -3rem auto 1.5rem;
  position: relative;
  transition: all 0.4s var(--ease);
}

.process-card:hover .process-num {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.process-card h3 {
  font-family: var(--font-arabic);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.process-card p {
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.process-time {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

.process-time svg {
  width: 14px; height: 14px;
}

/* ═══════ FINAL CTA ═══════ */
.final-cta {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.final-cta-content {
  position: relative; z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-arabic);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -1px;
  margin: 1.2rem 0 1.5rem;
}

.final-cta h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.final-cta > .final-cta-content > p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.final-cta-actions {
  display: flex; gap: 1.2rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.final-cta-trust {
  display: flex; gap: 2rem;
  justify-content: center; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text-3);
}

.final-cta-trust span {
  font-weight: 500;
}

/* ═══════ HOME BLOG ═══════ */
.home-blog {
  padding: 8rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.home-blog-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.home-blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.home-blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.home-blog-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.home-blog-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1s var(--ease);
}

.home-blog-img--placeholder {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-4));
}

.home-blog-card:hover .home-blog-img {
  transform: scale(1.08);
}

.home-blog-meta {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex; gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-3);
}

.home-blog-meta .dot { color: var(--gold); }

.home-blog-title {
  padding: 0 1.5rem;
  font-family: var(--font-arabic);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.home-blog-title a {
  color: var(--text);
  transition: color 0.3s;
}

.home-blog-title a:hover { color: var(--gold); }

.home-blog-excerpt {
  padding: 0 1.5rem;
  color: var(--text-3);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.home-blog-link {
  margin: 0 1.5rem 1.5rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  align-self: flex-start;
  transition: gap 0.3s;
}

.home-blog-link:hover { gap: 0.8rem; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }

  .services-pro-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-show-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  .process-flow::before { display: none; }

  .home-blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta > * { justify-content: center; }
  .hero-trust { gap: 1rem; flex-direction: column; }

  .stats-bar { padding: 3rem 1.5rem; }
  .services-pro, .why-us, .projects-show, .testimonials, .process, .final-cta, .home-blog {
    padding: 5rem 1.5rem;
  }

  .why-grid { grid-template-columns: 1fr; }
  .projects-show-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .process-num { margin-top: -2.5rem; }

  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions > * { justify-content: center; }
  .final-cta-trust { gap: 1rem; flex-direction: column; }

  .projects-show-header { flex-direction: column; align-items: flex-start; }

  .svc-pro-highlight { padding: 0.9rem 1rem; }
}

/* ═══════ AREAS SERVED — Internal Linking + SEO ═══════ */
.areas-served {
  padding: 7rem 3rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.areas-served-wrap {
  max-width: 1300px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.area-block {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2rem;
  transition: all 0.4s var(--ease);
}

.area-block:hover {
  border-color: var(--gold);
  background: var(--bg-4);
}

.area-block h3 {
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.area-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.area-block ul li::before {
  content: '←';
  color: var(--gold);
  margin-left: 0.5rem;
  display: inline-block;
  transition: margin 0.3s;
}

.area-block ul a {
  color: var(--text-2);
  font-size: 0.92rem;
  transition: color 0.3s;
  display: inline-block;
}

.area-block ul a:hover {
  color: var(--gold);
}

.area-block ul li:hover::before {
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .areas-served { padding: 5rem 1.5rem; }
}
