/* =========================================================
   FUJI INTERNATIONAL ELEVATOR — Corporate Website
   Design system: industrial corporate, engineering-focused
   Bilingual: LTR (English) + RTL (Arabic)
   ========================================================= */

/* -- Design Tokens -- */
:root {
  --navy-900: #061829;
  --navy-800: #0A2540;
  --navy-700: #14314F;
  --navy-600: #1E3D5F;
  --navy-500: #3A4D63;
  --grey-500: #8A98A8;
  --grey-400: #A8B4C2;
  --grey-300: #C9D4E0;
  --grey-200: #E4EAF0;
  --grey-100: #F4F7FA;
  --white: #FFFFFF;
  --red-600: #E30613;
  --red-700: #B8050F;

  --font-display: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-ar-display: 'IBM Plex Sans Arabic', 'Readex Pro', 'Segoe UI', Tahoma, sans-serif;
  --font-ar-body: 'IBM Plex Sans Arabic', 'Readex Pro', 'Segoe UI', Tahoma, sans-serif;

  --shadow-sm: 0 1px 3px rgba(6, 24, 41, 0.08), 0 1px 2px rgba(6, 24, 41, 0.04);
  --shadow-md: 0 6px 20px rgba(6, 24, 41, 0.10), 0 2px 6px rgba(6, 24, 41, 0.06);
  --shadow-lg: 0 20px 50px rgba(6, 24, 41, 0.15), 0 8px 20px rgba(6, 24, 41, 0.08);
  --shadow-xl: 0 30px 80px rgba(6, 24, 41, 0.25);

  --container: 1280px;
  --transition: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.rtl {
  font-family: var(--font-ar-body);
  direction: rtl;
  text-align: right;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.rtl h1, .rtl h2, .rtl h3, .rtl h4 {
  font-family: var(--font-ar-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red-600);
}
.rtl .eyebrow { letter-spacing: 0.08em; font-family: var(--font-ar-body); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* -- Topbar -- */
.topbar {
  background: var(--navy-900);
  color: var(--grey-300);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-700);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 14px; height: 14px; fill: var(--red-600); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--white);
  padding: 2px 12px;
  border-left: 1px solid var(--navy-700);
}
.rtl .lang-switch { border-left: none; border-right: 1px solid var(--navy-700); }
.lang-switch a { opacity: 0.5; transition: opacity .25s; padding: 2px 4px; }
.lang-switch a.active, .lang-switch a:hover { opacity: 1; color: var(--red-600); }

/* -- Header -- */
.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 54px; width: auto; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy-900);
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-text .sub {
  font-size: 0.72rem;
  color: var(--grey-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.rtl .brand-text .name { font-family: var(--font-ar-display); letter-spacing: 0; }
.rtl .brand-text .sub { letter-spacing: 0.05em; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; gap: 32px; }
.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-600);
  transition: width .3s var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
.rtl .nav-list a::after { left: auto; right: 0; }

.nav-cta {
  background: var(--red-600);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .25s var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.burger { display: none; width: 28px; height: 22px; position: relative; }
.burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy-800);
  transition: transform .3s var(--transition), opacity .2s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-list {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform .35s var(--transition);
    border-top: 3px solid var(--red-600);
  }
  .nav-list.open { transform: translateY(0); }
  .burger { display: block; }
  .nav-cta { display: none; }
}

/* -- Hero -- */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,24,41,0.92) 0%, rgba(10,37,64,0.80) 60%, rgba(20,49,79,0.70) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { order: -1; max-height: 380px; }
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  margin-bottom: 24px;
  line-height: 1.05;
}
.rtl .hero-content h1 { line-height: 1.25; }
.hero-content h1 .accent { color: var(--red-600); position: relative; display: inline-block; }
.hero-content p {
  font-size: 1.125rem;
  color: var(--grey-300);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }
.btn-primary { background: var(--red-600); color: var(--white); }
.btn-primary:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(227, 6, 19, 0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--navy-800); border-color: var(--grey-200); }
.btn-light:hover { border-color: var(--red-600); color: var(--red-600); }

/* Hero visual — stylized elevator shaft */
.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shaft {
  position: relative;
  width: 260px;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,49,79,0.8) 0%, rgba(30,61,95,0.4) 100%);
  border: 1px solid rgba(168, 180, 194, 0.2);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.shaft::before, .shaft::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, #3A4D63, #8A98A8, #3A4D63);
}
.shaft::before { left: 20px; }
.shaft::after { right: 20px; }
.shaft-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 58px, rgba(255,255,255,0.05) 59px, rgba(255,255,255,0.05) 60px);
  pointer-events: none;
}
.cabin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 220px;
  background: linear-gradient(180deg, #F4F7FA 0%, #E4EAF0 50%, #C9D4E0 100%);
  border: 2px solid var(--grey-400);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 2px 10px rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  animation: cabinFloat 6s ease-in-out infinite;
}
@keyframes cabinFloat {
  0%, 100% { transform: translate(-50%, -52%); }
  50% { transform: translate(-50%, -48%); }
}
.cabin-indicator {
  background: var(--navy-900);
  color: var(--red-600);
  padding: 8px 0;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--grey-400);
  text-shadow: 0 0 8px currentColor;
}
.cabin-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px;
  gap: 6px;
}
.cabin-btn {
  background: linear-gradient(135deg, #E4EAF0, #C9D4E0);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy-800);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 1px 2px rgba(0,0,0,0.1);
}
.cabin-btn.lit { background: var(--red-600); color: var(--white); box-shadow: 0 0 8px var(--red-600); }

.floor-markers {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}
.rtl .floor-markers { right: auto; left: -50px; }
.floor-marker {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  color: var(--grey-500);
  padding: 4px 8px;
  background: rgba(6,24,41,0.6);
  border: 1px solid rgba(168, 180, 194, 0.2);
  letter-spacing: 0.1em;
}

/* -- Stats ribbon -- */
.stats-ribbon {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 12px; border-right: 1px solid var(--grey-200); }
.rtl .stat { border-right: none; border-left: 1px solid var(--grey-200); }
.stat:last-child { border-right: none; }
.rtl .stat:last-child { border-left: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy-900);
  line-height: 1;
}
.stat-num .plus { color: var(--red-600); }
.rtl .stat-num { font-family: var(--font-ar-display); }
.stat-label {
  font-size: 0.78rem;
  color: var(--grey-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}
.rtl .stat-label { letter-spacing: 0.06em; }

/* -- Section heads -- */
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p {
  color: var(--grey-500);
  font-size: 1.08rem;
  margin-top: 18px;
  line-height: 1.7;
}

/* -- Services Grid -- */
.services-bg { background: var(--grey-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--grey-200);
  transition: all .35s var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red-600);
  transition: height .4s var(--transition);
}
.rtl .service-card::before { left: auto; right: 0; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--red-600); }
.service-icon svg { width: 28px; height: 28px; fill: currentColor; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--grey-500); font-size: 0.95rem; line-height: 1.7; }

/* -- About Split -- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .about-split { grid-template-columns: 1fr; gap: 40px; } }
.about-visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%);
  background-size: 40px 40px;
}
.year-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
}
.rtl .year-badge { left: auto; right: 40px; }
.year-badge .label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--red-600);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.year-badge .num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  background: linear-gradient(180deg, #FFFFFF 0%, #8A98A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.year-badge .caption {
  font-size: 0.88rem;
  color: var(--grey-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
.decades {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--grey-500);
  padding-top: 20px;
  border-top: 1px solid rgba(168, 180, 194, 0.2);
}

.about-content p { color: var(--navy-500); font-size: 1.05rem; line-height: 1.8; margin-bottom: 18px; }
.rtl .about-content p { line-height: 2; }
.about-features { margin-top: 32px; display: grid; gap: 16px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--grey-200);
}
.about-feature .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature .icon svg { width: 20px; height: 20px; fill: currentColor; }
.about-feature h4 { margin-bottom: 4px; font-size: 1.05rem; }
.about-feature p { margin: 0; font-size: 0.92rem; color: var(--grey-500); }

/* -- Projects -- */
.projects-bg {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.projects-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%);
  background-size: 100px 100px;
  pointer-events: none;
}
.projects-bg h2, .projects-bg .section-head p { color: var(--white); }
.projects-bg .section-head p { color: var(--grey-400); }

.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 960px) { .project-featured { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  padding: 40px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all .35s var(--transition);
}
.project-card:hover {
  border-color: var(--red-600);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.project-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--navy-700);
  line-height: 0.9;
  transition: color .35s;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.8;
}
.rtl .project-number { right: auto; left: 30px; }
.project-card:hover .project-number { color: var(--red-600); }
.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--red-600);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.project-badge::before { content: ''; width: 8px; height: 8px; background: var(--red-600); border-radius: 50%; }
.project-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.project-card p {
  color: var(--grey-400);
  font-size: 0.95rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.project-meta {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-700);
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}
.project-meta .meta-item .label {
  color: var(--grey-500);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.project-meta .meta-item .value {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.rtl .project-meta .meta-item .value { font-family: var(--font-ar-display); }

.project-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 768px) { .project-categories { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
}
.cat-card:hover { border-color: var(--red-600); background: var(--navy-700); transform: translateY(-3px); }
.cat-card svg { width: 36px; height: 36px; margin: 0 auto 12px; fill: var(--red-600); }
.cat-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.cat-card p { color: var(--grey-500); font-size: 0.82rem; margin: 0; }

/* -- Why Choose Us -- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-200);
}
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 40px 32px;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all .3s;
}
.rtl .why-item { border-right: none; border-left: 1px solid var(--grey-200); }
.why-item:hover { background: var(--navy-900); color: var(--white); }
.why-item:hover h4, .why-item:hover .why-num { color: var(--red-600); }
.why-item:hover p { color: var(--grey-300); }
.why-num {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--red-600);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
  transition: color .3s;
}
.why-item h4 { margin-bottom: 12px; transition: color .3s; }
.why-item p { color: var(--grey-500); font-size: 0.92rem; line-height: 1.7; transition: color .3s; }

/* -- Industries -- */
.industries-bg { background: var(--grey-100); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--grey-200);
  background: var(--white);
}
@media (max-width: 960px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.industry {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  transition: all .3s;
}
.rtl .industry { border-right: none; border-left: 1px solid var(--grey-200); }
.industry:hover { background: var(--navy-900); color: var(--white); }
.industry svg { width: 40px; height: 40px; margin: 0 auto 14px; fill: var(--navy-800); transition: fill .3s; }
.industry:hover svg { fill: var(--red-600); }
.industry span { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em; display: block; }

/* -- CTA band -- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,6,19,0.15), transparent 70%);
  pointer-events: none;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .cta-band .container { grid-template-columns: 1fr; text-align: center; } }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: var(--grey-300); font-size: 1.05rem; }
.cta-band .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-band .btn-group { justify-content: center; } }

/* -- Footer -- */
.footer {
  background: var(--navy-900);
  color: var(--grey-400);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rtl .footer h5 { font-family: var(--font-ar-display); letter-spacing: 0.02em; }
.footer-brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.rtl .footer-brand .name { font-family: var(--font-ar-display); }
.footer-brand .sub {
  font-size: 0.78rem;
  color: var(--grey-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 340px; }
.footer-brand-row { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.footer-brand-row img { height: 54px; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--red-600); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.footer-contact svg { width: 16px; height: 16px; fill: var(--red-600); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--navy-700);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* -- WhatsApp Sticky -- */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: pulse 2.5s infinite;
  transition: transform .25s;
}
.rtl .whatsapp-sticky { right: auto; left: 24px; }
.whatsapp-sticky:hover { transform: scale(1.1); }
.whatsapp-sticky svg { width: 32px; height: 32px; fill: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* -- Floor indicator -- */
.floor-indicator {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 95;
  background: var(--navy-900);
  color: var(--red-600);
  padding: 10px 14px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  border: 1px solid var(--navy-700);
  text-shadow: 0 0 8px currentColor;
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rtl .floor-indicator { right: auto; left: 24px; }
.floor-indicator.visible { opacity: 1; }
.floor-indicator .arrow { font-size: 0.7rem; opacity: 0.7; }
@media (max-width: 768px) { .floor-indicator { display: none; } }

/* -- Page Hero (inner pages) -- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.03) 50%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--grey-300); font-size: 1.08rem; }
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-bottom: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--red-600); }
.rtl .breadcrumb { letter-spacing: 0.05em; }

/* -- Project list (projects page) -- */
.project-list { display: grid; gap: 24px; }
.project-row {
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 36px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: all .3s;
}
@media (max-width: 768px) { .project-row { grid-template-columns: 1fr; gap: 16px; } }
.project-row:hover { border-color: var(--red-600); box-shadow: var(--shadow-md); }
.project-row .count {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
}
.rtl .project-row .count { font-family: var(--font-ar-display); }
.project-row h4 { font-size: 1.3rem; margin-bottom: 6px; }
.project-row .location {
  font-size: 0.82rem;
  color: var(--grey-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-row p { color: var(--grey-500); font-size: 0.95rem; margin: 0; }
.project-row .type-tag {
  background: var(--grey-100);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  white-space: nowrap;
}

/* -- Contact -- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 960px) { .contact-split { grid-template-columns: 1fr; } }

.contact-info .info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-info .info-block .icon {
  width: 48px;
  height: 48px;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info .info-block .icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-info .info-block .label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info .info-block .value {
  font-size: 1.05rem;
  color: var(--navy-900);
  font-weight: 500;
}
.contact-info .info-block .value a:hover { color: var(--red-600); }

.quote-form {
  background: var(--grey-100);
  padding: 40px;
  border-top: 4px solid var(--red-600);
}
.quote-form h3 { margin-bottom: 8px; }
.quote-form .form-sub { color: var(--grey-500); font-size: 0.95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-300);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: border-color .2s;
  border-radius: 0;
}
.rtl .form-group input, .rtl .form-group select, .rtl .form-group textarea { text-align: right; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--red-600);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.map-wrap {
  margin-top: 60px;
  position: relative;
  width: 100%;
  padding-bottom: 42%;
  border: 1px solid var(--grey-200);
  overflow: hidden;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

/* -- Reveal on scroll -- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--transition), transform .8s var(--transition); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* -- Services detail (services page) -- */
.service-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--grey-200);
}
@media (max-width: 768px) { .service-detail { grid-template-columns: 1fr; gap: 20px; } }
.service-detail .ico-big {
  width: 100px;
  height: 100px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-detail .ico-big svg { width: 48px; height: 48px; fill: currentColor; }
.service-detail .ico-big::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--red-600);
}
.service-detail h3 { margin-bottom: 16px; }
.service-detail p { color: var(--navy-500); font-size: 1.02rem; line-height: 1.8; margin-bottom: 16px; }
.service-detail ul { display: grid; gap: 8px; margin-top: 16px; }
.service-detail ul li {
  position: relative;
  padding-left: 24px;
  color: var(--navy-500);
  font-size: 0.95rem;
}
.rtl .service-detail ul li { padding-left: 0; padding-right: 24px; }
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--red-600);
}
.rtl .service-detail ul li::before { left: auto; right: 0; }

.text-center { text-align: center; }

/* ============ INNER PAGE COMPONENTS ============ */

/* Leader card (about page) */
.leader-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  background: var(--grey-100);
  border-radius: 18px;
  padding: 2.5rem;
  align-items: center;
}
.leader-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 20px 45px rgba(10,37,64,.25);
  margin: 0 auto;
}
.leader-initials {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.leader-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin: 0 0 .25rem 0;
  color: var(--navy-900);
  letter-spacing: .01em;
}
.leader-role {
  color: var(--red-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: 1rem;
}
.leader-body p {
  margin: 0 0 1.25rem 0;
  color: var(--grey-700);
  line-height: 1.7;
}
.leader-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .9rem;
  color: var(--grey-700);
}
.leader-contact strong {
  color: var(--navy-900);
}

/* Approach steps (about page) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.approach-step {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-left: 4px solid var(--red-600);
  padding: 2rem 1.75rem;
  border-radius: 0 10px 10px 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,37,64,.12);
}
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-600);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.approach-step h4 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0 0 .5rem 0;
  font-weight: 700;
}
.approach-step p {
  margin: 0;
  color: var(--grey-700);
  font-size: .95rem;
  line-height: 1.6;
}

/* Service detail rows */
.service-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .ico-big {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.service-detail .ico-big svg {
  width: 52px;
  height: 52px;
  fill: currentColor;
}
.service-detail h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  color: var(--navy-900);
  margin: .25rem 0 1rem 0;
  letter-spacing: .01em;
}
.service-detail p {
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.service-list li {
  position: relative;
  padding-left: 1.75rem;
  padding-bottom: .6rem;
  color: var(--grey-700);
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 2px;
  background: var(--red-600);
}

/* Flagship projects */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.flagship-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.flagship-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(10,37,64,.15);
}
.flagship-count {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.flagship-count::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red-600);
}
.flagship-count .big {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}
.flagship-count .lbl {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
}
.flagship-body {
  padding: 2rem;
  flex: 1;
}
.flagship-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: .75rem 0 1rem 0;
  letter-spacing: .01em;
}
.project-specs {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  border-top: 1px solid var(--grey-200);
  padding-top: 1rem;
}
.project-specs li {
  padding: .3rem 0;
  color: var(--grey-700);
  font-size: .92rem;
}
.project-specs strong { color: var(--navy-900); }

/* Contact page */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
}
.contact-info .info-block {
  background: var(--grey-100);
  padding: 1.75rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--red-600);
}
.info-block .info-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}
.info-block .info-ico svg {
  width: 22px; height: 22px; fill: currentColor;
}
.info-block h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: var(--navy-900);
  margin: 0 0 .5rem 0;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.info-block p {
  margin: .25rem 0;
  color: var(--grey-700);
  font-size: .95rem;
}
.info-block p strong { color: var(--navy-900); }
.info-block a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 500;
}
.info-block a:hover { color: var(--red-600); }
.info-block .muted { color: var(--grey-500); font-size: .85rem; font-style: italic; }
.info-block .btn-sm { margin-top: .9rem; padding: .5rem 1rem; font-size: .85rem; }

.contact-form-wrap {
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--grey-200);
  box-shadow: 0 10px 30px rgba(10,37,64,.06);
}
.contact-form-wrap h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-900);
  margin: .25rem 0 .75rem 0;
}
.contact-form-wrap > p {
  color: var(--grey-700);
  margin: 0 0 1.5rem 0;
}
.quote-form { margin-top: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy-900);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(227,6,19,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.form-note {
  font-size: .8rem;
  color: var(--grey-500);
  margin-top: .75rem;
  line-height: 1.5;
}

/* Map */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(10,37,64,.12);
  border: 1px solid var(--grey-200);
}
.map-wrap iframe { display: block; }

/* About visual extras */
.year-badge {
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.year-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 38px, rgba(255,255,255,.05) 38px, rgba(255,255,255,.05) 40px);
}
.year-badge::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--red-600);
}
.year-badge .big {
  font-family: 'Oswald', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
}
.year-badge .lbl {
  margin-top: .5rem;
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
.about-visual { padding: 1rem; }
.about-copy h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--navy-900);
  font-size: 2.25rem;
  margin: .5rem 0 1rem 0;
}
.about-copy p {
  color: var(--grey-700);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-split { grid-template-columns: 1fr; }
  .flagship-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-card { grid-template-columns: 1fr; text-align: center; }
  .leader-contact { justify-content: center; }
  .about-split { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 90px 1fr; gap: 1.5rem; }
  .service-detail .ico-big { width: 90px; height: 90px; }
  .service-detail .ico-big svg { width: 40px; height: 40px; }
}
@media (max-width: 600px) {
  .approach-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .flagship-count .big { font-size: 3.5rem; }
  .leader-photo { width: 160px; height: 160px; }
  .leader-initials { font-size: 2.5rem; }
  .service-detail { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* RTL adjustments */
body.rtl .approach-step {
  border-left: none;
  border-right: 4px solid var(--red-600);
  border-radius: 10px 0 0 10px;
}
body.rtl .service-list li {
  padding-left: 0;
  padding-right: 1.75rem;
}
body.rtl .service-list li::before {
  left: auto;
  right: 0;
}
body.rtl .info-block {
  border-left: none;
  border-right: 3px solid var(--red-600);
}

/* =========================================================
   Additional page-specific components
   ========================================================= */

/* Feature rows (About page) */
.feature-row { display:grid; grid-template-columns:1.1fr .9fr; gap:4rem; align-items:center; margin-bottom:1rem; }
.feature-row.reverse { grid-template-columns:.9fr 1.1fr; }
.feature-row.reverse .feature-visual { order:-1; }
.feature-copy .eyebrow { display:inline-block; margin-bottom:1rem; }
.feature-copy h2 { margin-bottom:1.25rem; }
.feature-copy p { color:var(--steel-600); line-height:1.85; margin-bottom:1.15rem; font-size:1rem; }
.feature-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2rem; padding-top:2rem; border-top:1px solid var(--steel-200); }
.feat-num { font-family:'Oswald',sans-serif; font-weight:700; font-size:2rem; color:var(--navy-900); line-height:1; }
.feat-label { font-size:.78rem; color:var(--steel-600); margin-top:.4rem; text-transform:uppercase; letter-spacing:.05em; }

.feature-card-visual { background:linear-gradient(145deg,var(--navy-900),var(--navy-700)); color:#fff; padding:2.5rem; border-radius:14px; position:relative; overflow:hidden; box-shadow:0 20px 60px rgba(10,37,64,.25); }
.feature-card-visual::before { content:''; position:absolute; top:-30%; right:-30%; width:60%; height:60%; background:radial-gradient(circle,rgba(227,6,19,.2),transparent 70%); }
.vcard-label { font-family:'Oswald',sans-serif; font-size:.75rem; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.55); }
.vcard-big { font-family:'Oswald',sans-serif; font-weight:700; font-size:2rem; margin:.5rem 0 1.5rem; line-height:1.15; }
.vcard-divider { height:1px; background:rgba(255,255,255,.15); margin:1.5rem 0; }
.vcard-desc { color:rgba(255,255,255,.75); line-height:1.8; font-size:.95rem; }

/* Leader card */
.leader-card { background:#fff; padding:2.5rem; border-radius:14px; box-shadow:0 12px 50px rgba(10,37,64,.1); border:1px solid var(--steel-200); }
.leader-avatar { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,var(--red),var(--red-dark,#B30510)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Oswald',sans-serif; font-weight:700; font-size:1.2rem; margin-bottom:1.25rem; }
.leader-name { font-family:'Oswald',sans-serif; font-weight:700; font-size:1.5rem; color:var(--navy-900); }
.leader-role { color:var(--red); font-size:.9rem; text-transform:uppercase; letter-spacing:.1em; margin-top:.25rem; font-weight:600; }
.leader-bio { color:var(--steel-600); line-height:1.75; margin-top:1rem; }

/* Principles grid (About page) */
.principles-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.principle { background:#fff; padding:2rem 1.5rem; border-radius:10px; border:1px solid var(--steel-200); position:relative; }
.principle-num { font-family:'Oswald',sans-serif; font-weight:700; font-size:2.5rem; color:var(--red); opacity:.25; line-height:1; margin-bottom:.5rem; }
.principle h3 { font-family:'Oswald',sans-serif; font-weight:600; font-size:1.15rem; color:var(--navy-900); margin-bottom:.75rem; text-transform:uppercase; letter-spacing:.02em; }
.principle p { color:var(--steel-600); font-size:.92rem; line-height:1.7; }

/* Services detailed layout */
.services-detail-grid { display:grid; gap:2.5rem; }
.service-detail { background:#fff; padding:2.5rem; border-radius:14px; box-shadow:0 8px 30px rgba(10,37,64,.08); border:1px solid var(--steel-200); scroll-margin-top:120px; }
.service-detail-head { display:flex; align-items:center; gap:1.5rem; margin-bottom:1.25rem; padding-bottom:1.25rem; border-bottom:2px solid var(--steel-100); }
.service-detail .service-num { font-family:'Oswald',sans-serif; font-weight:700; font-size:2rem; color:var(--red); opacity:.6; }
.service-tagline { color:var(--steel-600); font-size:.95rem; margin-top:.35rem; }
.service-detail p { color:var(--steel-700); line-height:1.85; margin-bottom:1.25rem; }
.service-features { background:var(--steel-50); padding:1.5rem; border-radius:10px; margin:1.5rem 0; border-inline-start:3px solid var(--red); }
.service-features h4 { font-family:'Oswald',sans-serif; font-weight:600; color:var(--navy-900); font-size:.95rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:.75rem; }
.service-features ul { list-style:none; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:.5rem .75rem; }
.service-features li { color:var(--navy-800); font-size:.9rem; padding-inline-start:1.25rem; position:relative; line-height:1.55; }
.service-features li::before { content:'▸'; position:absolute; inset-inline-start:0; color:var(--red); font-size:.85rem; top:.1rem; }

/* Sector grid (Projects page) */
.sector-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.sector { background:#fff; padding:1.75rem 1.25rem; border-radius:10px; border:1px solid var(--steel-200); transition:transform .3s, box-shadow .3s; }
.sector:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(10,37,64,.12); }
.sector-icon { font-size:2rem; margin-bottom:.75rem; }
.sector h3 { font-family:'Oswald',sans-serif; font-weight:600; font-size:1.05rem; color:var(--navy-900); margin-bottom:.5rem; }
.sector p { color:var(--steel-600); font-size:.85rem; line-height:1.6; }

/* Big numbers row */
.bignums { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; text-align:center; }
.bignum { padding:2rem 1rem; background:linear-gradient(180deg,#fff,var(--steel-50)); border-radius:12px; border:1px solid var(--steel-200); }
.bn-val { font-family:'Oswald',sans-serif; font-weight:800; font-size:clamp(2.5rem,5vw,3.5rem); color:var(--navy-900); line-height:1; margin-bottom:.5rem; }
.bn-label { font-size:.85rem; color:var(--steel-600); text-transform:uppercase; letter-spacing:.08em; font-weight:500; }

/* Contact page */
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:3rem; }
.contact-info h2 { margin-bottom:1.5rem; }
.contact-item { display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--steel-100); align-items:center; }
.contact-item:last-of-type { border-bottom:none; }
.contact-icon { width:44px; height:44px; border-radius:50%; background:var(--steel-50); display:flex; align-items:center; justify-content:center; font-size:1.15rem; flex-shrink:0; }
.contact-label { font-family:'Oswald',sans-serif; font-size:.7rem; text-transform:uppercase; letter-spacing:.1em; color:var(--steel-600); margin-bottom:.15rem; font-weight:600; }
.contact-value { font-family:'Inter',sans-serif; color:var(--navy-900); font-weight:600; font-size:1rem; text-decoration:none; }
a.contact-value:hover { color:var(--red); }

.contact-form-wrap { background:#fff; padding:2.5rem; border-radius:14px; box-shadow:0 12px 50px rgba(10,37,64,.1); border:1px solid var(--steel-200); }
.contact-form .form-row { margin-bottom:1.15rem; }
.contact-form label { display:block; font-family:'Oswald',sans-serif; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; color:var(--navy-800); margin-bottom:.4rem; font-weight:600; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:.85rem 1rem; border:1.5px solid var(--steel-200); border-radius:8px; font-family:'Inter',sans-serif; font-size:.95rem; color:var(--navy-900); background:#fff; transition:border-color .2s; }
body[dir="rtl"] .contact-form input, body[dir="rtl"] .contact-form select, body[dir="rtl"] .contact-form textarea { font-family:'IBM Plex Sans Arabic',sans-serif; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline:none; border-color:var(--red); box-shadow:0 0 0 3px rgba(227,6,19,.1); }
.contact-form textarea { resize:vertical; min-height:120px; }
.form-row-split { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* Page hero (inner pages) */
.page-hero { background:linear-gradient(135deg,var(--navy-900) 0%,var(--navy-700) 100%); color:#fff; padding:7rem 0 4rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at top right,rgba(227,6,19,.15),transparent 60%); pointer-events:none; }
.page-hero-inner { position:relative; z-index:1; max-width:800px; }
.breadcrumb { font-size:.85rem; color:rgba(255,255,255,.55); margin-bottom:1rem; display:flex; gap:.5rem; align-items:center; }
.breadcrumb a { color:rgba(255,255,255,.75); text-decoration:none; }
.breadcrumb a:hover { color:#fff; }
.page-hero h1 { font-family:'Oswald',sans-serif; font-weight:700; font-size:clamp(2.25rem,5vw,3.75rem); line-height:1.05; color:#fff; }
body[dir="rtl"] .page-hero h1 { font-family:'IBM Plex Sans Arabic',sans-serif; font-weight:700; }
.page-hero p { color:rgba(255,255,255,.75); font-size:1.1rem; margin-top:1rem; line-height:1.7; }

/* Responsive tweaks */
@media (max-width:960px) {
  .feature-row, .feature-row.reverse { grid-template-columns:1fr; gap:2.5rem; }
  .feature-row.reverse .feature-visual { order:0; }
  .principles-grid { grid-template-columns:repeat(2,1fr); }
  .sector-grid { grid-template-columns:repeat(2,1fr); }
  .bignums { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; gap:2rem; }
  .service-features ul { grid-template-columns:1fr; }
  .service-detail-head { flex-direction:column; align-items:flex-start; gap:.75rem; }
}
@media (max-width:600px) {
  .principles-grid { grid-template-columns:1fr; }
  .sector-grid { grid-template-columns:1fr 1fr; }
  .bignums { grid-template-columns:1fr 1fr; }
  .form-row-split { grid-template-columns:1fr; }
  .feature-stats { grid-template-columns:1fr 1fr; }
  .service-detail { padding:1.5rem; }
  .contact-form-wrap { padding:1.5rem; }
}

/* ============ ARABIC / RTL REFINEMENTS ============ */
body.rtl {
  font-family: 'IBM Plex Sans Arabic', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: 'IBM Plex Sans Arabic', 'Oswald', sans-serif;
  letter-spacing: 0;
}
body.rtl .eyebrow,
body.rtl .type-tag,
body.rtl .leader-role,
body.rtl .stat-label,
body.rtl .section-head .eyebrow {
  letter-spacing: .05em;
}
body.rtl .flagship-count .big,
body.rtl .year-badge .big,
body.rtl .stat-num,
body.rtl .count,
body.rtl .step-num {
  font-family: 'Oswald', sans-serif;
}
body.rtl .nav-list { flex-direction: row; }
body.rtl .topbar-info { flex-direction: row-reverse; }
body.rtl .hero-ctas { flex-direction: row-reverse; justify-content: flex-start; }
body.rtl .btn-group { flex-direction: row-reverse; justify-content: flex-start; }
body.rtl .whatsapp-sticky { right: auto; left: 24px; }
body.rtl .floor-indicator { right: auto; left: 24px; }
body.rtl .breadcrumb a,
body.rtl .breadcrumb span { display: inline-block; }
body.rtl .form-field input,
body.rtl .form-field select,
body.rtl .form-field textarea {
  text-align: right;
  font-family: 'IBM Plex Sans Arabic', 'Inter', sans-serif;
}
body.rtl .form-field input[dir="ltr"],
body.rtl .form-field input[type="tel"],
body.rtl .form-field input[type="email"] {
  text-align: left;
  direction: ltr;
}
body.rtl .leader-photo { margin: 0 auto; }

/* Ensure Arabic numerals in digit badges stay as Arabic-Indic-safe if present */
body.rtl .count,
body.rtl .flagship-count .big,
body.rtl .stat-num,
body.rtl .year-badge .big {
  direction: ltr;
  unicode-bidi: isolate;
}


/* ================================================================
   ARABIC TYPOGRAPHY REFINEMENTS (IBM Plex Sans Arabic)
   ================================================================ */
body.rtl {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}
.rtl h1 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
.rtl h2 { font-weight: 700; letter-spacing: -0.005em; line-height: 1.3; }
.rtl h3 { font-weight: 600; line-height: 1.35; }
.rtl h4 { font-weight: 600; }
.rtl p  { font-weight: 400; line-height: 1.85; letter-spacing: 0; }
.rtl .eyebrow { font-weight: 600; letter-spacing: 0.02em; }
.rtl .brand-text .name { font-weight: 700; letter-spacing: 0; font-size: 1.15rem; }
.rtl .brand-text .sub  { font-weight: 500; letter-spacing: 0; }
.rtl .nav-list a { font-weight: 500; }
.rtl .btn { font-weight: 600; letter-spacing: 0; }
.rtl .hero-content h1, .rtl .page-hero h1 { font-weight: 700; letter-spacing: -0.015em; }
.rtl .hero-content p, .rtl .page-hero p { font-weight: 400; line-height: 1.75; }
.rtl .stat-num { font-weight: 700; letter-spacing: -0.02em; }
.rtl .service-card h3, .rtl .project-card h3 { font-weight: 700; }
.rtl .footer h5 { font-weight: 600; letter-spacing: 0; }
.rtl .quote-form label { font-weight: 500; }
.rtl .topbar-info { font-weight: 400; }
.rtl input, .rtl select, .rtl textarea {
  font-family: var(--font-ar-body);
  font-weight: 400;
}
.rtl .year-badge .num { font-family: var(--font-ar-display); font-weight: 700; letter-spacing: -0.03em; }
