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

/* ─── BILINGUAL: hide Arabic by default ─── */
.ar { display: none !important; }
body.rtl .ar { display: revert !important; }
body.rtl .en { display: none !important; }

:root {
  --navy:    #0F2044;
  --navy2:   #1B3A6B;
  --blue:    #0EA5E9;
  --blue2:   #0284C7;
  --gold:    #F59E0B;
  --gold2:   #D97706;
  --light:   #F0F4F8;
  --white:   #FFFFFF;
  --text:    #1E293B;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --success: #10B981;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(15,32,68,.10);
  --shadow-lg: 0 12px 48px rgba(15,32,68,.18);
  --transition: .25s ease;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--navy); color: var(--white); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-size: .85rem;
}
.btn-nav:hover { background: var(--gold2); }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header.light h2,
.section-header.light .section-sub { color: var(--white); }

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .3s ease;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  padding: 12px 0;
}
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); }
#navbar.scrolled .logo-text { color: var(--navy); }
#navbar.scrolled .logo-text em { color: var(--blue); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
#navbar.scrolled .lang-toggle { background: var(--light); }
.lang-btn {
  padding: 5px 11px;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .5px;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}
.lang-btn:not(.active):hover { color: var(--white); }
#navbar.scrolled .lang-btn { color: var(--muted); }
#navbar.scrolled .lang-btn.active { background: var(--gold); color: var(--navy); }
#navbar.scrolled .lang-btn:not(.active):hover { color: var(--navy); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
#navbar.scrolled .hamburger span { background: var(--navy); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0F2044 0%, #1B3A6B 50%, #0E3460 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(14,165,233,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,158,11,.1) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.stat {
  padding: 0 28px;
  text-align: center;
}
.stat:first-child { padding-left: 0; }
.stat span:first-child {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat span:nth-child(2) {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.stat p {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 400px;
}
.about-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 20px;
  text-align: center;
  width: 140px;
  transition: transform .3s ease;
}
.about-card:hover { transform: translateY(-6px); }
.about-card i {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 8px;
}
.about-card p {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.card-1 { top: 20px; left: 20px; }
.card-2 { top: 20px; right: 20px; }
.card-3 { bottom: 60px; left: 50%; transform: translateX(-50%); width: 150px; }
.about-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 12px rgba(15,32,68,.08), var(--shadow-lg);
}
.about-center-badge span {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}
.about-text .section-eyebrow { display: block; }
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
}
.about-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
}
.about-features li i {
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--clr) 12%, transparent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.product-icon i {
  font-size: 1.4rem;
  color: var(--clr);
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ─── INDUSTRIES ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.industry-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s ease;
  cursor: default;
}
.industry-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-item:hover i,
.industry-item:hover span { color: var(--white); }
.industry-item i {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
  transition: color var(--transition);
}
.industry-item span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  transition: color var(--transition);
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-icon i { font-size: 1.3rem; color: var(--gold); }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ─── PROCESS ─── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  transition: all .3s ease;
}
.step:hover .step-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.step:hover .step-icon i { color: var(--white); }
.step-icon i { font-size: 1.4rem; color: var(--blue); transition: color .3s; }
.step h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--blue), var(--border));
  margin-top: 56px;
  align-self: flex-start;
}

/* ─── QUOTE FORM ─── */
.quote-section { background: var(--navy); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.quote-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.quote-text p { color: rgba(255,255,255,.65); margin-bottom: 32px; }
.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.quote-promises li i { color: var(--gold); font-size: 1rem; }

.quote-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.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: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; }
.form-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #D1FAE5;
  color: #065F46;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success i { font-size: 1.2rem; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--muted); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--blue); font-size: 1rem; }
.contact-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.contact-item a:hover { color: var(--blue); }

.map-wrapper {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ─── FOOTER ─── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.5); }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold2); transform: translateY(-3px); }

/* ─── CARD ACTIONS ─── */
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--light);
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-details:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 45, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(10,20,45,.35);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--light);
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
  z-index: 1;
}
.modal-close:hover { background: #fee2e2; color: #ef4444; }

.modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.modal-icon i { font-size: 1.6rem; }
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.modal-subtitle { font-size: .88rem; color: var(--muted); }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 32px 24px;
}
.modal-col {
  padding: 24px 16px 8px 0;
  border-bottom: 1px solid var(--border);
}
.modal-col:nth-child(2) { padding-left: 24px; border-left: 1px solid var(--border); }
.modal-col:nth-child(3) { padding-left: 0; }
.modal-col:nth-child(4) { padding-left: 24px; border-left: 1px solid var(--border); }
.modal-col:nth-child(3),
.modal-col:nth-child(4) { border-bottom: none; }
.modal-col h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.modal-col h5 i { color: var(--gold); }
.modal-col ul { display: flex; flex-direction: column; gap: 7px; }
.modal-col ul li {
  font-size: .87rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.modal-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.modal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px 28px;
  flex-wrap: wrap;
}
.modal-cta { flex: 1; justify-content: center; min-width: 200px; }
.btn-modal-close {
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-modal-close:hover { border-color: var(--navy); color: var(--navy); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; max-width: 420px; margin: 0 auto; }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0; background: var(--navy);
    align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--white); }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; background: linear-gradient(180deg, var(--border), var(--blue), var(--border)); }
  .hero-stats { gap: 4px; }
  .stat { padding: 0 12px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

/* ─── RTL / ARABIC OVERRIDES ─── */
body.rtl {
  font-family: 'Cairo', sans-serif;
}
body.rtl .section-header h2,
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5 {
  font-family: 'Cairo', sans-serif;
}

/* Navbar RTL */
body.rtl .nav-inner { flex-direction: row-reverse; }
body.rtl .nav-right { margin-left: 0; margin-right: auto; }
body.rtl .nav-links { margin-left: 0; }
body.rtl .hamburger { margin-left: 0; margin-right: auto; }

/* Hero RTL */
body.rtl .hero-content { text-align: right; }
body.rtl .hero-eyebrow { flex-direction: row-reverse; }
body.rtl .hero-ctas { justify-content: flex-end; }
body.rtl .hero-stats { justify-content: flex-end; }
body.rtl .stat:first-child { padding-left: 28px; padding-right: 0; }

/* About RTL */
body.rtl .about-grid { direction: rtl; }
body.rtl .about-features li { flex-direction: row-reverse; }
body.rtl .about-features li i { margin-left: 0; }

/* Products RTL */
body.rtl .product-card { text-align: right; }
body.rtl .card-actions { flex-direction: row-reverse; }

/* Industries RTL */
body.rtl .industry-item { direction: rtl; }

/* Why us RTL */
body.rtl .why-card { text-align: right; }

/* Process RTL */
body.rtl .process-steps { direction: rtl; }
body.rtl .step { text-align: right; }

/* Quote RTL */
body.rtl .quote-text { text-align: right; }
body.rtl .quote-promises li { flex-direction: row-reverse; }
body.rtl .form-group label { text-align: right; }
body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .form-group textarea { text-align: right; direction: rtl; }

/* Contact RTL */
body.rtl .contact-info { text-align: right; }
body.rtl .contact-item { flex-direction: row-reverse; }

/* Footer RTL */
body.rtl .footer-inner { direction: rtl; }
body.rtl .footer-brand { text-align: right; }
body.rtl .footer-contact li { flex-direction: row-reverse; }
body.rtl .social-links { justify-content: flex-end; }
body.rtl .footer-bottom .container { flex-direction: row-reverse; }

/* Modal RTL */
body.rtl .modal { direction: rtl; text-align: right; }
body.rtl .modal-header { flex-direction: row-reverse; }
body.rtl .modal-close { right: auto; left: 16px; }
body.rtl .modal-col:nth-child(2) { padding-left: 0; padding-right: 24px; border-left: none; border-right: 1px solid var(--border); }
body.rtl .modal-col:nth-child(3) { padding-left: 0; }
body.rtl .modal-col:nth-child(4) { padding-left: 0; padding-right: 24px; border-left: none; border-right: 1px solid var(--border); }
body.rtl .modal-col h5 { flex-direction: row-reverse; }
body.rtl .modal-col ul li { padding-left: 0; padding-right: 14px; }
body.rtl .modal-col ul li::before { left: auto; right: 0; }
body.rtl .modal-footer { flex-direction: row-reverse; }

/* Mobile RTL */
@media (max-width: 768px) {
  body.rtl .nav-inner { flex-direction: row-reverse; }
  body.rtl .hamburger { margin-left: 0; margin-right: 0; }
}
