/* ============================================================
   AL HALABI INTERNATIONAL — OFFICIAL STYLESHEET
   Generated for production CMS
============================================================ */

:root {
  --navy-900: #0A1930;
  --navy-800: #0D2A52;
  --navy-700: #1B3F73;
  --navy-600: #2C5090;
  --rust-600: #B32A22;
  --rust-700: #8F221B;
  --sand-100: #F3EEE3;
  --sand-200: #E9E0CC;
  --paper: #FBFAF6;
  --steel-500: #59636D;
  --steel-300: #9AA3AB;
  --ink-900: #11202E;
  --white: #FFFFFF;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-arabic: 'Cairo', sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 100px;

  --logo-size: 88px;
  --brand-text-size: 1.1rem;
  --nav-text-size: 0.82rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: .01em; text-transform: uppercase; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.arabic { font-family: var(--font-arabic); font-weight: 600; direction: rtl; unicode-bidi: isolate; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

:focus-visible { outline: 3px solid var(--rust-600); outline-offset: 2px; }

/* Preloader */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; }
#pageLoader .loader-logo { width: 90px; height: auto; animation: pulseLogo 1.5s infinite ease-in-out; }
#pageLoader .loader-spinner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,0.15); border-top-color: var(--rust-600); border-radius: 50%; animation: spin 0.8s linear infinite; margin-top: 20px; }
@keyframes pulseLogo { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Section Headings */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--rust-600);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--rust-600); display: block; flex-shrink: 0; }
.eyebrow .ar { color: var(--steel-500); font-family: var(--font-arabic); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: .95rem; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.05; color: var(--navy-900); }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--steel-500); max-width: 600px; }

section { position: relative; padding: 96px 0; }
@media (max-width: 880px) { section { padding: 72px 0; } }
@media (max-width: 600px) { section { padding: 56px 0; } }

/* Blueprint background grid */
.blueprint {
  position: relative;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* Flag divider */
.flag-divider { position: relative; height: 56px; overflow: hidden; }
.flag-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 600px) { .flag-divider { height: 36px; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-mono); font-weight: 600; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: var(--radius-sm); border: 1.5px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rust-600); color: var(--white); box-shadow: 0 4px 14px rgba(179,42,34,0.3); }
.btn-primary:hover { background: var(--rust-700); box-shadow: 0 6px 20px rgba(179,42,34,0.45); }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline-dark:hover { background: var(--navy-800); color: #fff; }

/* Header & Utility Bar */
.utility-bar {
  background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-mono); font-size: .76rem; color: var(--steel-300);
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; padding: 8px 28px; gap: 16px; }
.utility-bar a { color: var(--steel-300); transition: color .2s; }
.utility-bar a:hover { color: #fff; }
.utility-bar .ub-links { display: flex; gap: 20px; flex-wrap: wrap; }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,25,48,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.scrolled { background: rgba(10,25,48,.97); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.site-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; }
.brand-full-logo {
  height: var(--logo-size);
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}
.site-nav.scrolled .brand-full-logo {
  height: calc(var(--logo-size) * 0.8);
}
.footer-logo-img {
  height: 100px;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .brand-full-logo { height: 56px; max-width: 280px; }
  .footer-logo-img { height: 75px; max-width: 320px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a {
  padding: 10px 14px; font-family: var(--font-mono); font-size: var(--nav-text-size); font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase; color: #EDEFF2; display: block;
  border-radius: 4px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta { margin-inline-start: 12px; }

.lang-toggle {
  display: flex; align-items: center; margin-inline-start: 10px;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--radius-sm); overflow: hidden;
}
.lang-toggle button {
  background: transparent; border: 0; color: #C9D2DC; font-family: var(--font-mono);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; padding: 7px 13px; transition: background .2s, color .2s;
}
.lang-toggle button.active { background: var(--rust-600); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 34px; padding: 6px; background: none; border: 0; }
.hamburger span { display: block; height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 990px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 0 0; height: calc(100vh - var(--nav-h));
    background: var(--navy-900); flex-direction: column; align-items: stretch;
    padding: 24px; gap: 0; transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto; border-top: 1px solid rgba(255,255,255,.1);
  }
  [dir="rtl"] .nav-links { transform: translateX(-100%); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 16px 12px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; border-radius: 0; }
  .nav-cta { margin: 20px 0 0 0; }
  .nav-cta .btn { width: 100%; }
  .lang-toggle { margin: 16px 0 0 0; }
  .lang-toggle button { flex: 1; padding: 12px; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO SECTION & HERO SLIDER
============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 20px); padding-bottom: 60px;
  background: var(--navy-900);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
}
.hero .container {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%;
}

.hero-copy .eyebrow { color: var(--rust-600); }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.4rem); line-height: 1.02; color: #fff; margin-top: 10px;
}
.hero-copy h1 .line2 { color: var(--rust-600); display: block; }
.hero-copy .lede { margin-top: 22px; font-size: 1.08rem; color: #C9D2DC; max-width: 540px; line-height: 1.65; }
.hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Slider */
.hero-slider-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-slider {
  position: relative;
  height: 480px;
  width: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1; visibility: visible;
  transform: scale(1);
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,25,48,0.1) 0%, rgba(10,25,48,0.65) 100%);
}

/* Slider Controls */
.slider-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,25,48,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.2s;
}
.slider-nav-btn:hover { background: var(--rust-600); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
[dir="rtl"] .slider-prev { left: auto; right: 16px; }
[dir="rtl"] .slider-next { right: auto; left: 16px; }

.slider-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 0; transition: all 0.3s;
}
.slider-dot.active { background: var(--rust-600); width: 28px; border-radius: 10px; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; text-align: start; }
  .hero-slider { height: 340px; }
}

/* ============================================================
   STAT STRIP
============================================================ */
.stat-strip { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.stat-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-strip li {
  padding: 26px 20px; text-align: center; border-inline-start: 1px solid rgba(255,255,255,.1);
}
.stat-strip li:first-child { border-inline-start: 0; }
.stat-strip .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: #fff; font-weight: 700; }
.stat-strip .lbl { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--steel-300); margin-top: 4px; }
@media (max-width: 720px) {
  .stat-strip ul { grid-template-columns: repeat(2, 1fr); }
  .stat-strip li:nth-child(3) { border-inline-start: 0; }
  .stat-strip li { border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ============================================================
   ABOUT US SECTION
============================================================ */
.about { background: var(--paper); }
.about .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.about-photo-wrapper { position: relative; }
.about-photo-wrapper img { border-radius: var(--radius-md); width: 100%; height: 480px; object-fit: cover; box-shadow: 0 16px 36px rgba(10,25,48,0.12); }
.about-photo-wrapper::before {
  content: ""; position: absolute; top: -16px; inset-inline-start: -16px; width: 100%; height: 100%;
  border: 2px solid var(--rust-600); border-radius: var(--radius-md); z-index: -1;
}
.about-copy p.lede { font-size: 1.1rem; color: var(--ink-900); font-weight: 500; }
.about-copy .body-text { margin-top: 18px; color: var(--steel-500); font-size: 1.02rem; line-height: 1.7; }

.pillars { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar {
  background: var(--sand-100); border-inline-start: 4px solid var(--rust-600); padding: 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
[dir="rtl"] .pillar { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.pillar h4 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.05rem; color: var(--navy-900); }
.pillar p { margin-top: 8px; font-size: .94rem; color: var(--steel-500); line-height: 1.55; }

.about-chips { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: flex; flex-direction: column; padding: 14px 20px; background: var(--sand-100);
  border-radius: var(--radius-sm); min-width: 150px; border: 1px solid var(--sand-200);
}
.chip .n { font-family: var(--font-mono); font-weight: 700; color: var(--navy-800); font-size: 1.15rem; }
.chip .l { font-size: .78rem; color: var(--steel-500); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

@media (max-width: 880px) {
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrapper::before { display: none; }
  .about-photo-wrapper img { height: 320px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services { background: var(--sand-100); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--paper); padding: 36px 30px; border-radius: var(--radius-md); border: 1px solid var(--sand-200);
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(10,25,48,0.1); background: #fff; }
.svc-card .icon-box {
  width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(179,42,34,0.08); color: var(--rust-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.svc-card .icon-box svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.svc-card h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.15rem; color: var(--navy-900); letter-spacing: 0; }
.svc-card p { margin-top: 10px; font-size: .95rem; color: var(--steel-500); line-height: 1.6; }
.svc-card .idx { position: absolute; top: 24px; inset-inline-end: 24px; font-family: var(--font-mono); font-size: .8rem; font-weight: 600; color: var(--steel-300); }

@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROJECTS SECTION
============================================================ */
.projects { background: var(--paper); }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tabs button {
  padding: 11px 20px; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  background: transparent; border: 1.5px solid var(--sand-200); color: var(--steel-500); border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
}
.filter-tabs button:hover { border-color: var(--navy-800); color: var(--navy-800); }
.filter-tabs button.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--sand-200);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,25,48,.12); }
.proj-visual {
  height: 220px; position: relative; overflow: hidden; background: var(--navy-800);
}
.proj-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.proj-card:hover .proj-photo { transform: scale(1.06); }
.proj-tag {
  position: absolute; top: 14px; inset-inline-start: 14px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; background: var(--rust-600); color: #fff; padding: 5px 12px; border-radius: 4px; z-index: 2; font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.proj-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.proj-body h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.1rem; color: var(--navy-900); letter-spacing: 0; line-height: 1.35; }
.proj-meta { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; font-size: .88rem; color: var(--steel-500); border-top: 1px solid var(--sand-100); padding-top: 14px; }
.proj-meta span b { color: var(--ink-900); font-weight: 600; }

.proj-card[hidden] { display: none; }
@media (max-width: 960px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .proj-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MAP SECTION ("OUR LOCATION")
============================================================ */
.location-section { background: var(--sand-100); }
.location-wrapper {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center;
  background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--sand-200);
  overflow: hidden; box-shadow: 0 20px 40px rgba(10,25,48,0.08);
}
.location-info { padding: 44px; }
.location-info h3 { font-family: var(--font-body); text-transform: none; font-size: 1.6rem; color: var(--navy-900); margin-bottom: 16px; }
.location-address { font-size: 1.05rem; color: var(--steel-500); line-height: 1.7; margin-bottom: 24px; }
.location-address strong { color: var(--navy-900); display: block; margin-bottom: 4px; font-size: 1.15rem; }

.map-container {
  position: relative; height: 420px; width: 100%; background: #e5e3df; overflow: hidden;
}
.map-iframe { width: 100%; height: 100%; border: 0; filter: contrast(1.02) saturate(1.1); }

/* Custom Branded Map Pin Overlay */
.map-pin-overlay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  pointer-events: none; z-index: 10; display: flex; flex-direction: column; align-items: center;
}
.map-pin-card {
  background: var(--navy-900); color: #fff; padding: 8px 16px; border-radius: 20px;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; margin-bottom: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap; animation: floatPin 3s ease-in-out infinite;
}
.map-pin-icon {
  width: 58px; height: 58px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--rust-600); border: 3px solid #fff; box-shadow: 0 10px 24px rgba(179,42,34,0.5);
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; cursor: pointer;
}
.map-pin-icon:hover { transform: rotate(-45deg) scale(1.15); box-shadow: 0 14px 30px rgba(179,42,34,0.7); }
.map-pin-icon img {
  width: 32px; height: 32px; object-fit: contain; transform: rotate(45deg); border-radius: 50%;
  background: #fff; padding: 2px;
}
.map-pin-pulse {
  width: 40px; height: 14px; background: rgba(10,25,48,0.3); border-radius: 50%;
  margin-top: 6px; animation: pulseShadow 3s ease-in-out infinite;
}

@keyframes floatPin { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseShadow { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(0.7); opacity: 0.2; } }

@media (max-width: 960px) {
  .location-wrapper { grid-template-columns: 1fr; }
  .location-info { padding: 32px; }
  .map-container { height: 340px; }
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact { background: var(--navy-900); color: #fff; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: var(--steel-300); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.contact-info-block { margin-bottom: 28px; }
.contact-info-block h4 { font-family: var(--font-mono); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; color: var(--rust-600); margin-bottom: 10px; }
.contact-info-block p { font-size: 1.04rem; color: #E7EBEF; line-height: 1.6; }
.contact-info-block a:hover { color: var(--rust-600); }

.team-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.team-card {
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; background: rgba(255,255,255,0.02);
}
.team-card .who b { font-family: var(--font-body); font-size: 1.08rem; display: block; color: #fff; }
.team-card .who span { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--rust-600); margin-top: 2px; display: block; }
.team-card .reach { font-size: .9rem; color: #C9D2DC; text-align: end; line-height: 1.6; }
[dir="rtl"] .team-card .reach { text-align: start; }
.team-card .reach a { display: block; }
.team-card .reach a:hover { color: var(--rust-600); }

.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 36px; }
.contact-form h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.contact-form .fp { color: var(--steel-300); font-size: .92rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--steel-300); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm); color: #fff; font-family: var(--font-body); font-size: .98rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rust-600); outline: none; }
.field select option { color: #000; }
.field input::placeholder, .field textarea::placeholder { color: #7C8894; }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-status { margin-top: 14px; font-size: .88rem; color: var(--steel-300); }

@media (max-width: 880px) {
  .contact .container { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-card .reach { text-align: start; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.08); padding: 60px 0 28px; color: var(--steel-300); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand p { margin-top: 14px; font-size: .92rem; max-width: 320px; color: var(--steel-300); line-height: 1.6; }
.footer-col h5 { font-family: var(--font-mono); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 12px; font-size: .92rem; }
.footer-col ul li a:hover { color: var(--rust-600); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   DISTINCT HEADER VARIATIONS (01 to 05)
============================================================ */
/* Header 02: Centered Corporate */
.header-style-02 .header-centered-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-style-02 .brand-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-style-02 .nav-container-centered {
  display: flex;
  align-items: center;
}
@media (min-width: 993px) {
  .header-style-02 .header-centered-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-style-02 .nav-container-centered {
    justify-content: flex-end;
  }
}
@media (max-width: 992px) {
  .header-style-02 .header-centered-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Header 03: Transparent Hero Overlay */
.header-style-03.header-overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.header-style-03.header-solid,
.header-style-03.scrolled {
  position: fixed;
  background: rgba(10, 25, 48, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Header 04: Compact Professional */
.header-style-04.header-compact {
  height: 70px;
}
.header-style-04 .brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-inline-contact .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--sand-200);
}
.header-inline-contact .contact-pill:hover {
  border-color: var(--rust-600);
  color: #fff;
}
@media (max-width: 768px) {
  .header-inline-contact { display: none; }
}

/* Header 05: Bold Industrial with Services Mega-Menu */
.header-style-05.header-industrial {
  border-bottom: 2px solid var(--rust-600);
}
.header-style-05 .has-megamenu {
  position: relative;
}
.header-style-05 .megamenu-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-style-05 .megamenu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 3px solid var(--rust-600);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 1050;
}
.header-style-05 .megamenu-panel.is-open {
  display: block;
}
.header-style-05 .megamenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.header-style-05 .megamenu-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.header-style-05 .megamenu-card:hover {
  background: rgba(179,42,34,0.12);
  border-color: var(--rust-600);
}
.header-style-05 .mm-icon {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--rust-600);
  font-weight: 700;
}
.header-style-05 .mm-info h4 {
  font-size: 0.88rem;
  color: #fff;
  margin: 0 0 2px;
}
.header-style-05 .mm-info p {
  font-size: 0.74rem;
  color: var(--steel-300);
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .header-style-05 .megamenu-panel {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
  }
  .header-style-05 .megamenu-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DISTINCT FOOTER VARIATIONS (01 to 05)
============================================================ */
/* Footer 02: Multi-column Business */
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid-4 { grid-template-columns: 1fr; }
}

/* Footer 03: Pre-Footer CTA Strip */
.footer-cta-strip {
  background: var(--rust-600);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.footer-cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: #fff;
}
.footer-cta-strip p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 24px;
  opacity: 0.95;
  line-height: 1.6;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #fff;
  color: var(--rust-600);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-white:hover {
  background: var(--sand-100);
  transform: translateY(-2px);
}

/* Footer 04: Minimal Compact */
.footer-compact {
  padding: 24px 0 !important;
}
.footer-compact-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-compact-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-compact-contact a {
  color: var(--sand-200);
}
.footer-compact-contact a:hover {
  color: #fff;
}

/* Footer 05: Industrial Location */
.footer-industrial {
  border-top: 3px solid var(--rust-600);
}
.footer-grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.footer-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-nav-grid a:hover {
  color: var(--rust-600);
}
.footer-hours-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--sand-200);
}
.footer-hours-box strong {
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .footer-grid-2 { grid-template-columns: 1fr; }
}

