/* =====================================================
   ABRAJ AL-MUKAB — Design System
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ── */
:root {
  --charcoal:      #1c1f26;
  --charcoal-dark: #13151a;
  --charcoal-mid:  #252931;
  --charcoal-light:#3a3f4a;
  --gold:          #e8771a;
  --gold-light:    #f5a050;
  --gold-pale:     #fff4eb;
  --gold-dim:      rgba(232,119,26,.15);
  --cream:         #f8f5ef;
  --white:         #ffffff;
  --gray:          #f2f3f6;
  --border:        #e4e6eb;
  --border-dark:   rgba(255,255,255,.08);
  --text:          #1c1f26;
  --text-mid:      #5a6070;
  --text-muted:    #9aa0b0;
  --text-light:    rgba(255,255,255,.85);
  --text-light-mid:rgba(255,255,255,.55);
  --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
  --shadow-gold:   0 4px 24px rgba(232,119,26,.30);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utilities ── */
.gold-text { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal-dark); }
.section-gray { background: var(--gray); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(232,119,26,.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag-gold { background: rgba(232,119,26,.2); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 16px; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.section-desc.light { color: var(--text-light-mid); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════ NAV ══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(19,21,26,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: var(--charcoal-dark);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px; width: auto; object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 38px; width: auto; object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 16px; font-weight: 800; color: var(--white); }
.logo-sub  { font-size: 11px; color: var(--text-light-mid); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-inline-start: auto;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--charcoal-dark) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow-gold);
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .9; background: initial !important; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px; margin-inline-start: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  background: var(--charcoal-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,119,26,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,119,26,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .25;
}
.g1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.g2 {
  width: 400px; height: 400px;
  background: #4a6fa5;
  bottom: -100px; left: -100px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,119,26,.12);
  border: 1px solid rgba(232,119,26,.3);
  color: var(--gold-light);
  font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900; line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-light-mid);
  max-width: 580px; margin: 0 auto 36px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 30px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-light-mid); }
.stat-divider { width: 1px; height: 40px; background: var(--border-dark); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-light-mid); font-size: 12px;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: inherit; font-size: 15px; font-weight: 800;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--charcoal-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,119,26,.45); }
.btn-outline {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════ ABOUT ══════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual {
  position: relative; height: 420px;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 8px;
}
.main-card {
  position: absolute; inset: 20px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  color: var(--white);
  border: 1px solid rgba(232,119,26,.2);
}
.about-icon { font-size: 48px; }
.about-logo { width: 120px; height: auto; object-fit: contain; margin-bottom: 4px; }
.main-card h3 { font-size: 20px; font-weight: 800; color: var(--gold); }
.main-card p { font-size: 13px; color: var(--text-light-mid); }

.side-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  flex-direction: row;
  gap: 10px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--border);
}
.sc-icon { font-size: 20px; }
.sc1 { top: 0; right: 0; }
.sc2 { top: 0; left: 0; }
.sc3 { bottom: 0; right: 50%; transform: translateX(50%); }

.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: var(--gray);
  border-radius: var(--radius-md);
}
.feat-icon { font-size: 22px; margin-top: 2px; }
.feat-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.feat-item span { font-size: 13px; color: var(--text-mid); }

/* ══════════ VISION & MISSION ══════════ */
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.vm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vm-vision {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border: 1px solid rgba(232,119,26,.2);
}
.vm-mission {
  background: var(--white);
  border: 1px solid var(--border);
}
.vm-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.vm-label {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.vm-card h3 {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  color: var(--text-muted); margin-bottom: 16px;
  text-transform: uppercase;
}
.vm-vision h3 { color: rgba(255,255,255,.3); }
.vm-card p {
  font-size: 15px; line-height: 1.85;
  color: var(--text-mid);
}
.vm-vision p { color: var(--text-light-mid); }
.vm-card::before {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--gold-dim);
  bottom: -60px; left: -40px;
  pointer-events: none;
}

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

/* ══════════ SERVICES ══════════ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.srv-card { width: 272px; flex-shrink: 0; flex-grow: 0; }
.srv-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(232,119,26,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover { transform: translateY(-4px); border-color: rgba(232,119,26,.4); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.srv-card:hover::before { opacity: 1; }
.srv-card--featured {
  border-color: rgba(232,119,26,.5);
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, rgba(232,119,26,.08) 100%);
}
.srv-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold);
  color: var(--charcoal-dark);
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px;
}
.srv-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.srv-card h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.srv-card p { font-size: 13px; color: var(--text-light-mid); line-height: 1.6; }

/* ══════════ WHY US ══════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.why-card::after {
  content: ''; position: absolute;
  bottom: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,119,26,.3); }
.why-card:hover::after { transform: scaleX(1); transform-origin: left; }
.why-num {
  font-size: 48px; font-weight: 900;
  color: rgba(232,119,26,.12);
  position: absolute; top: 16px; left: 20px;
  line-height: 1;
}
.why-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.why-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ══════════ PORTFOLIO ══════════ */
.port-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.flt-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: inherit; font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 100px;
  cursor: pointer; transition: all .25s;
}
.flt-btn:hover, .flt-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal-dark);
  box-shadow: var(--shadow-gold);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.port-item.hidden { display: none; }
.port-img {
  height: 240px; position: relative;
  background: var(--charcoal-mid);
  overflow: hidden;
  transition: transform .4s;
}
.port-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s;
}
.port-item:hover .port-img img { transform: scale(1.06); }

.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s;
}
.port-item:hover .port-overlay { opacity: 1; }
.port-cat {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
}
.port-overlay h4 { font-size: 15px; color: var(--white); font-weight: 700; }

.port-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 24px; }

/* ══════════ PARTNERS ══════════ */
.partners-track {
  overflow: hidden; position: relative; cursor: grab;
  direction: ltr;
  user-select: none;
  padding: 8px 0;
}
.partners-track::before,
.partners-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
}
.partners-track::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.partners-track::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.partners-track.dragging { cursor: grabbing; }
.partners-list {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-ltr 32s linear infinite;
  will-change: transform;
}
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* hover/drag pause handled by JS */
.partner-logo {
  background: #2e3240;
  border: 1px solid rgba(232,119,26,.18);
  border-radius: var(--radius-md);
  padding: 16px 20px 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  width: 160px;
  height: 100px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.partner-logo:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transform: translateY(-3px);
  border-color: rgba(232,119,26,.5);
}
.partner-logo img {
  max-height: 60px; max-width: 130px;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform .3s;
  pointer-events: none;
}
.partner-logo:hover img { transform: scale(1.05); }

.certs-title {
  text-align: center; font-size: 22px; font-weight: 800;
  margin-bottom: 32px; color: var(--text);
}
.certs { text-align: center; }
.certs-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 32px; max-width: 900px; margin: 0 auto;
  justify-content: center;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.cert-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cert-img {
  width: 100%; height: auto; display: block;
  transition: transform .4s;
}
.cert-card:hover .cert-img { transform: scale(1.03); }

.cert-hover {
  position: absolute; inset: 0;
  background: rgba(28,31,38,.88);
  backdrop-filter: blur(4px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 24px; text-align: center;
  opacity: 0; transition: opacity .35s;
}
.cert-card:hover .cert-hover { opacity: 1; }
.cert-hover-icon { font-size: 40px; }
.cert-hover p {
  font-size: 14px; color: rgba(255,255,255,.9);
  line-height: 1.7; font-weight: 500;
}

.cert-name {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-top: 2px solid var(--gold);
  background: var(--white);
}
.cert-issuer {
  font-size: 15px; font-weight: 800; color: var(--gold);
}
.cert-title-text {
  font-size: 13px; color: var(--text-mid);
}

/* ══════════ CONTACT ══════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci {
  display: flex; align-items: flex-start; gap: 14px;
}
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ci strong { display: block; font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.ci span { font-size: 14px; color: var(--text-light-mid); }

.contact-form-wrap {
  background: var(--charcoal-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form h3 {
  font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text-light-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: inherit; font-size: 14px;
  color: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(232,119,26,.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: rgba(26,122,64,.2); border: 1px solid rgba(26,122,64,.4);
  border-radius: var(--radius-md);
  font-size: 14px; color: #5ee89c; text-align: center;
}

/* ── WhatsApp badge ── */
.wa-badge {
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.wa-badge:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ══════════ HOW WE WORK ══════════ */
.process-steps {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  width: 130px; flex-shrink: 0;
}
.step-num {
  font-size: 11px; font-weight: 800; color: var(--gold);
  letter-spacing: .06em;
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(232,119,26,.12);
  border: 2px solid rgba(232,119,26,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: background .3s, border-color .3s;
}
.step:hover .step-icon { background: rgba(232,119,26,.25); border-color: var(--gold); }
.step h3 { font-size: 13px; font-weight: 800; color: var(--white); }
.step p  { font-size: 11px; color: var(--text-light-mid); line-height: 1.5; }
.step-arrow {
  font-size: 22px; color: var(--gold);
  opacity: .5; align-self: center;
  margin: 0 4px; padding-bottom: 40px;
}

/* ══════════ SECTORS ══════════ */
.sectors-grid {
  display: flex; flex-wrap: wrap;
  gap: 20px; justify-content: center;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  width: 280px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.sector-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,119,26,.3); }
.sector-card:hover::after { transform: scaleX(1); transform-origin: left; }
.sector-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.sector-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.sector-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ══════════ MATERIALS ══════════ */
.materials-grid {
  display: flex; flex-wrap: wrap;
  gap: 20px; justify-content: center;
  margin-bottom: 16px;
}
.mat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center;
  width: 260px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.mat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mat-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.mat-card h3 { font-size: 15px; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.mat-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ══════════ FAQ ══════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(232,119,26,.3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: var(--text); text-align: right; direction: rtl;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 12px; color: var(--gold); flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text-mid); line-height: 1.8;
  direction: rtl; transition: max-height .4s ease, padding .4s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

@media (max-width: 640px) {
  .process-steps { gap: 12px; }
  .step { width: 90px; }
  .step-icon { width: 50px; height: 50px; font-size: 20px; }
  .step-arrow { font-size: 16px; padding-bottom: 30px; }
  .sector-card, .mat-card { width: 100%; }
}

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--charcoal-dark);
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; }
.footer-desc {
  font-size: 13px; color: var(--text-light-mid);
  line-height: 1.8; max-width: 300px;
}
.footer-contact-btns { display: flex; gap: 10px; }
.footer-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  transition: transform .25s, opacity .2s;
  box-shadow: var(--shadow-md);
}
.footer-btn:hover { transform: scale(1.1); opacity: .9; }
.footer-btn-wa    { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--charcoal-dark); }
.footer-btn-phone { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000000; }
.footer-btn-phone svg, .footer-btn-phone svg path { fill: #000000 !important; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 13px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-light-mid); text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-light-mid); }
.footer-legal {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; font-size: 12px; color: var(--text-light-mid);
}
.footer-legal strong { color: var(--gold-light); }
.fl-sep { opacity: .35; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; }
}

/* ══════════ FAB ══════════ */
.fab {
  position: fixed; left: 28px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform .25s;
}
.fab:hover { transform: scale(1.1); }
a.fab-wa    { bottom: 28px;  background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: var(--shadow-gold); color: var(--charcoal-dark); }
a.fab-phone { bottom: 92px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: var(--shadow-gold); }
a.fab-phone svg, a.fab-phone svg path { fill: #000000 !important; }
button.fab-top {
  bottom: 156px;
  color: var(--charcoal-dark);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .25s;
}
button.fab-top.visible { opacity: 1; pointer-events: auto; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(19,21,26,.98);
    padding: 24px;
    z-index: 9998;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open a {
    font-size: 18px; padding: 14px 0;
    width: 100%; border-bottom: 1px solid var(--border-dark);
    background: none !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-inline: 0 !important;
  }
  .nav-links.open .nav-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--charcoal-dark) !important;
    border-radius: var(--radius-md) !important;
    padding: 14px !important;
    text-align: center;
    justify-content: center;
    border-bottom: none !important;
  }
  .nav-burger { display: flex; }
  .nav {
    background: rgba(19,21,26,.97) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
    z-index: 9999 !important;
  }
  .port-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { padding: 20px 24px; gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .partners-track {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 8px 12px;
  }
  .partner-logo { height: 68px; min-width: 110px; padding: 10px 16px; }
  .partner-logo img { max-height: 40px; max-width: 100px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; }
}
