/* ========================================
   AL HAJRI GENERAL PROJECTS — PREMIUM
   Aesthetic: Refined Luxury × Industrial Power
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@200;300;400;500;600;700;800&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #C9A84C;
  --gold-bright: #E2C36B;
  --gold-deep: #9E7B2F;
  --gold-glow: rgba(201,168,76,0.35);
  --navy: #0C1829;
  --navy-mid: #142236;
  --navy-light: #1C2E47;
  --charcoal: #1A1F2E;
  --steel: #8892A4;
  --silver: #B4BCC8;
  --cloud: #F4F5F7;
  --white: #FFFFFF;
  --cream: #FAF9F6;
  --border: rgba(201,168,76,0.12);
  --border-light: rgba(255,255,255,0.06);
  --glass: rgba(12,24,41,0.85);
  --glass-light: rgba(255,255,255,0.03);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-arabic: 'Noto Kufi Arabic', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1240px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--silver);
  background: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body[dir="rtl"] { font-family: var(--font-arabic), var(--font-body); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ---- NOISE TEXTURE OVERLAY ---- */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ---- GOLD LINE ACCENTS ---- */
.gold-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
body[dir="rtl"] .gold-line {
  background: linear-gradient(-90deg, var(--gold), transparent);
}
.gold-line-long {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.1), transparent);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(12,24,41,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
}
.nav-logo-img { height: 42px; width: auto; transition: all 0.5s var(--ease-out); }
.navbar.scrolled .nav-logo-img { height: 36px; }
.footer-logo-img { height: 48px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--gold);
  transition: all 0.4s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 11px 28px;
  background: transparent;
  color: var(--gold);
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.4s var(--ease-out);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 30px var(--gold-glow);
}

.lang-switch {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(28,46,71,0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
}

/* Animated grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(201,168,76,0.07);
  top: 10%; right: 15%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(28,46,71,0.4);
  bottom: 10%; left: 10%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(201,168,76,0.04);
  top: 50%; left: 40%;
  animation-delay: -2s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* Diagonal gold line */
.hero-diagonal {
  position: absolute;
  top: 0; right: 12%;
  width: 1px; height: 120%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.15), transparent);
  transform: rotate(15deg);
  transform-origin: top center;
}
.hero-diagonal-2 {
  right: 11%;
  opacity: 0.3;
  animation-delay: -2s;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 120px 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
body[dir="rtl"] .hero h1 { font-family: var(--font-arabic); font-weight: 400; letter-spacing: 0; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: var(--steel);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy);
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  opacity: 0; transition: opacity 0.5s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-glow);
}
.btn-gold span { position: relative; z-index: 1; }
.btn-gold svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 400; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  transition: all 0.5s var(--ease-out);
}
.btn-ghost:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--border);
  background: rgba(12,24,41,0.6);
  backdrop-filter: blur(20px);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--container); margin: 0 auto;
}
.hero-stat {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
body[dir="rtl"] .hero-stat { border-right: none; border-left: 1px solid var(--border); }
.hero-stat:last-child { border: none; }
.hero-stat:hover { background: rgba(201,168,76,0.03); }
.hero-stat h3 {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
body[dir="rtl"] .hero-stat h3 { font-family: var(--font-arabic); }
.hero-stat p {
  font-size: 0.7rem; font-weight: 500;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

/* ========== SECTION SHARED ========== */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--navy); }
.section-darker { background: var(--charcoal); }
.section-light {
  background: var(--cream);
  color: var(--charcoal);
}

.section-header {
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-eyebrow .line { width: 32px; height: 1px; background: var(--gold); }
body[dir="rtl"] .section-eyebrow { flex-direction: row-reverse; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
body[dir="rtl"] .section-title { font-family: var(--font-arabic); font-weight: 500; }
.section-light .section-title { color: var(--navy); }

.section-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--steel);
  max-width: 500px;
  margin-top: 16px;
  line-height: 1.8;
}
.section-light .section-subtitle { color: var(--charcoal); opacity: 0.6; }

/* ========== ABOUT ========== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-image-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--navy) 100%);
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: rgba(255,255,255,0.2); font-size: 0.8rem;
}
.about-floating-card {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--gold);
  color: var(--navy);
  padding: 28px 32px;
  z-index: 2;
}
body[dir="rtl"] .about-floating-card { right: auto; left: -30px; }
.about-floating-card h4 {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 300;
  line-height: 1;
}
.about-floating-card p {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Decorative frame corners */
.about-frame {
  position: absolute;
  top: -16px; left: -16px; right: -16px; bottom: -16px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.about-frame::before, .about-frame::after {
  content: ''; position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold); border-style: solid;
}
.about-frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.about-frame::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.about-text { max-width: 480px; }
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.4;
}
body[dir="rtl"] .about-text h3 { font-family: var(--font-arabic); }
.about-text p {
  font-size: 0.92rem; font-weight: 300;
  color: var(--steel);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 36px;
}
.about-val {
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.about-val:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.03);
}
.about-val h5 {
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.about-val p {
  font-size: 0.8rem; color: var(--steel);
  line-height: 1.6; margin: 0;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.service-card {
  padding: 48px 36px;
  background: var(--navy);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
body[dir="rtl"] .service-card::before { transform-origin: right; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--navy-mid); }

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: all 0.5s var(--ease-out);
}
.service-card:hover .service-num { color: rgba(201,168,76,0.25); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
body[dir="rtl"] .service-card h3 { font-family: var(--font-arabic); }
.service-card p {
  font-size: 0.88rem; font-weight: 300;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.15);
  font-size: 0.68rem; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.service-tag:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}

/* Span 2 columns for first card */
.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ========== MARQUEE STRIP ========== */
.marquee-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--charcoal);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 48px;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.02em;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== PROJECTS ========== */
.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2px;
  margin-top: 64px;
}
.projects-grid-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  cursor: pointer;
  background: var(--navy-mid);
}
.project-card-large { min-height: 100%; }

.project-gradient {
  position: absolute; inset: 0;
  transition: all 0.6s var(--ease-out);
  overflow: hidden;
}
.project-gradient img {
  transition: all 0.6s var(--ease-out);
}
.project-card:hover .project-gradient img { transform: scale(1.08); }

.project-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(180deg, transparent 30%, rgba(12,24,41,0.95) 100%);
  transition: all 0.5s var(--ease-out);
}
.project-card:hover .project-content {
  background: linear-gradient(180deg, transparent 10%, rgba(12,24,41,0.98) 100%);
}
.project-label {
  font-size: 0.65rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.project-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
body[dir="rtl"] .project-content h3 { font-family: var(--font-arabic); }
.project-content p {
  font-size: 0.82rem; font-weight: 300;
  color: var(--steel);
  line-height: 1.7;
  max-width: 400px;
}
.project-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.4s var(--ease-out);
  opacity: 0; transform: translate(-8px, 8px);
}
body[dir="rtl"] .project-arrow { right: auto; left: 28px; }
.project-card:hover .project-arrow {
  opacity: 1; transform: translate(0, 0);
  border-color: var(--gold); color: var(--gold);
}

/* ========== INDUSTRIES ========== */
.industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--border);
  background: var(--border);
}
.ind-card {
  padding: 40px 20px;
  background: var(--charcoal);
  text-align: center;
  transition: all 0.5s var(--ease-out);
}
.ind-card:hover { background: var(--navy-mid); }
.ind-icon { font-size: 2rem; margin-bottom: 14px; display: block; filter: grayscale(0.3); }
.ind-card:hover .ind-icon { filter: grayscale(0); }
.ind-card h4 {
  font-size: 0.72rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ========== CLIENTS ========== */
.clients-row {
  display: flex; flex-wrap: wrap; gap: 40px 56px;
  align-items: center; justify-content: center;
  margin-top: 48px;
  padding: 48px 0;
}
.client-item {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out);
}
.client-item:hover { color: var(--gold); }

/* ========== CTA BANNER ========== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--navy) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 16px;
}
body[dir="rtl"] .cta-section h2 { font-family: var(--font-arabic); }
.cta-section p {
  color: var(--steel); font-size: 1rem; font-weight: 300;
  margin-bottom: 40px;
}

/* ========== CONTACT ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
}
.contact-info {
  padding: 56px 48px;
  background: var(--charcoal);
  border-right: 1px solid var(--border);
}
body[dir="rtl"] .contact-info { border-right: none; border-left: 1px solid var(--border); }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 36px;
}
body[dir="rtl"] .contact-info h3 { font-family: var(--font-arabic); }
.ci-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.ci-item:last-child { border: none; margin: 0; padding: 0; }
.ci-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ci-item h4 {
  font-size: 0.65rem; font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.ci-item p { font-size: 0.92rem; color: var(--silver); line-height: 1.6; }
.ci-item a { color: var(--silver); transition: color 0.3s; }
.ci-item a:hover { color: var(--gold); }

.contact-form-wrap {
  padding: 56px 48px;
  background: var(--navy);
}
.form-row { display: flex; gap: 16px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  color: var(--white);
  transition: all 0.4s var(--ease-out);
  outline: none;
}
body[dir="rtl"] .form-group input,
body[dir="rtl"] .form-group textarea,
body[dir="rtl"] .form-group select { font-family: var(--font-arabic); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
}
.footer-brand-text {
  font-size: 0.88rem; font-weight: 300;
  color: var(--steel);
  margin-top: 20px;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 0.65rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem; font-weight: 300;
  color: var(--steel);
  margin-bottom: 14px;
  transition: all 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
body[dir="rtl"] .footer-col a:hover { transform: translateX(-4px); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.25);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.animate-ready { opacity: 0; transform: translateY(40px); }
.reveal.animate-ready.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid-right { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(12,24,41,0.98);
    backdrop-filter: blur(20px);
    padding: 32px;
    gap: 20px;
    border-top: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-content { padding: 140px 0 160px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 20px; }
  .hero-diagonal, .hero-diagonal-2 { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .projects-grid-right { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { flex-direction: column; }
  .section { padding: 80px 0; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-ghost { text-align: center; justify-content: center; width: 100%; }
  .about-floating-card { bottom: -16px; right: -8px; padding: 20px 24px; }
  .about-floating-card h4 { font-size: 2.2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
}
