/* ═══════════════════════════════════════════════════════════════
   DeepCore Services – Main Stylesheet
   ════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/fonts/BarlowCondensed-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/fonts/BarlowCondensed-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('/wp-content/uploads/fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('/wp-content/uploads/fonts/roboto-v51-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
  --orange:      #F5A31A;
  --orange-dk:   #C07D0A;
  --orange-lt:   #FFB83A;
  --bg:          #F7F6F2;
  --bg-2:        #FFFFFF;
  --bg-3:        #EFEDE8;
  --dark:        #0F1117;
  --dark-2:      #1A1D2E;
  --text:        #1E2130;
  --muted:       #525669;
  --dim:         #8A8E9E;
  --silver:      #6B7080;
  --border:      rgba(0,0,0,0.08);
  --border-2:    rgba(0,0,0,0.14);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.13);
  --font-display:'Roboto', sans-serif;
  --font-body:   'Roboto', sans-serif;
  --font-number: 'Bebas Neue', cursive;
  --text-xs:     0.875rem;
  --text-sm:     1rem;
  --text-base:   1.125rem;
  --text-md:     1.25rem;
  --text-lg:     1.5rem;
  --text-xl:     2rem;
  --text-2xl:    2.5rem;
  --text-3xl:    3.25rem;
  --text-4xl:    4.5rem;
  --text-5xl:    6rem;
  --header-h:    76px;
  --max-width:   1280px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100vw;
}
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); font-size: var(--text-base); }

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

/* ══════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  min-height: 52px;
}
.btn-orange       { background: var(--orange); color: #000; }
.btn-orange:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,163,26,.35); }
.btn-dark         { background: var(--dark); color: #fff; }
.btn-dark:hover   { background: var(--dark-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,17,23,.25); }
.btn-ghost        { background: transparent; color: #fff; border: 1.5px solid var(--orange); }
.btn-ghost:hover  { background: rgba(255,255,255,0.08); }
.btn-dark-outline { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.btn-dark-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.15rem; min-height: 58px; }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.9rem; min-height: 44px; }
.call-btn { color: #ffffff !important; border: 1.5px solid rgba(255,255,255,0.4); }
.call-btn:hover { background: rgba(255,255,255,0.08); }
/* ══════════════════════════════════════════════════════════════
   SECTION LABELS & TITLES
════════════════════════════════════════════════════════════ */
.section-label {
    display: inline-block;
    font-size: 2.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #949494;
    margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title em { font-style: normal; color: var(--orange); }
.section-desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #292929;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }

/* Desktop Nav */
.primary-nav { display: flex; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.5rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: all .2s;
  cursor: pointer;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .95rem; right: .95rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-arrow {
  font-size: .6rem;
  opacity: .6;
  color: rgba(255,255,255,0.7);
  transition: transform .25s;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all .22s var(--ease);
  pointer-events: none;
  min-width: 520px;
  overflow: visible;
}
.dropdown.dropdown-sm   { min-width: 280px; }
.dropdown.dropdown-left { left: 0; transform: translateX(-8%) translateY(-8px); }
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-item:hover .dropdown.dropdown-left { transform: translateX(-8%) translateY(0); }
.dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #fff;
  border-left: 1px solid var(--border-2);
  border-top: 1px solid var(--border-2);
}
.dropdown-label {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); padding: .2rem .5rem .8rem; display: block;
}
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.dd-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .9rem; border-radius: 10px;
  cursor: pointer; transition: background .18s;
  border: 1px solid transparent;
}
.dd-item:hover { background: var(--bg-3); border-color: var(--border); }
.dd-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(245,163,26,.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dd-item-text h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--dark); margin-bottom: .25rem;
}
.dd-item-text p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.dd-list { display: flex; flex-direction: column; gap: .25rem; }
.dd-list-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem .9rem; border-radius: 8px;
  cursor: pointer; transition: background .18s;
}
.dd-list-item:hover { background: var(--bg-3); }
.dd-list-icon {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(245,163,26,.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.dd-list-text h5 {
  font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--dark);
}
.dd-list-text p  { font-size: .82rem; color: var(--muted); margin-top: .05rem; }
.dd-divider { height: 1px; background: var(--border); margin: .6rem 0; }
.dd-footer {
  display: flex; align-items: center;
  justify-content: space-between; padding: .5rem .5rem .1rem;
}
.dd-footer-link {
  font-family: var(--font-display); font-size: .82rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .35rem;
  transition: color .2s;
}
.dd-footer-link:hover { color: var(--orange); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; margin-left: 1rem; }

/* Hero headline — Barlow Condensed only */
.hero-headline { font-family: 'Barlow Condensed', sans-serif; }

/* Mobile nav — hidden on desktop */
.mobile-nav { display: none; }




/* ══════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex; flex-direction: column;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(247,246,242,.93) 0%, rgba(247,246,242,.85) 60%, rgba(247,246,242,.93) 100%);
}
.hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.geo-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(245,163,26,.1); }
.geo-c1 { width: 620px; height: 620px; right: -200px; top: -150px; }
.geo-c2 { width: 420px; height: 420px; right: -50px; top: 60px; border-color: rgba(245,163,26,.07); }
.geo-c3 { width: 200px; height: 200px; right: 130px; top: 200px; background: rgba(245,163,26,.04); border-color: transparent; }
.geo-line { position: absolute; background: rgba(0,0,0,.035); border-radius: 2px; }
.geo-l1 { width: 1px; height: 290px; right: 280px; top: 0; }
.geo-l2 { width: 280px; height: 1px; right: 0; top: 290px; }

.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: center;
  padding: 4rem 1.75rem;
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  gap: 4rem;
}
.hero-left  { flex: 1; }
.hero-right { width: 400px; flex-shrink: 0; }

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase; line-height: .9; margin-bottom: 1.75rem;
}
.hero-line   { display: block; }
.hero-line-1 {
    font-size: clamp(10rem,5vw,8rem);
    color: var(--dark);
    letter-spacing: -.02em;
    animation: slideInLeft .8s ease .2s both
}
.hero-line-2 {font-size: clamp(9rem,5vw,5rem);color: transparent;-webkit-text-stroke: 1.5px rgba(15,17,23,0.28);letter-spacing: -.02em;animation: slideInLeft .8s ease .3s both;}
.hero-line-3 { font-size: clamp(8.5rem,5.5vw,5rem); color: var(--muted); letter-spacing: .04em; margin-top: .3rem; animation: slideInLeft .8s ease .4s both; }
.hero-line-4 { font-size: clamp(8.5rem,5.5vw,5rem); color: var(--orange); letter-spacing: .04em; animation: slideInLeft .8s ease .5s both; }

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: rgba(0,0,0,0.75); max-width: 500px;
  line-height: 1.85; margin-bottom: 2.25rem;
  animation: fadeInUp .9s ease .6s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp .9s ease .7s both; }

/* Hero service card */
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.card-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--silver);
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.service-pill {
  display: flex; align-items: center; gap: .9rem;
  padding: .75rem 1rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: .55rem; cursor: pointer; transition: all .2s;
}
.service-pill:hover { background: #fff; border-color: var(--orange); box-shadow: 0 3px 14px rgba(245,163,26,.12); transform: translateX(3px); }
.pill-icon {
  width: 65px; height: 65px; border-radius: 5px;
  background: rgba(245,163,26,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pill-icon svg { display: block; flex-shrink: 0; width: 45px; height: 50px; stroke: var(--orange); stroke-width: 2; }
.pill-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; color: var(--dark); }
.pill-desc { font-size: .85rem; color: var(--muted); margin-top: .1rem; }
.pill-arrow { margin-left: auto; color: var(--dim); transition: all .2s; }
.service-pill:hover .pill-arrow { transform: translateX(3px); color: var(--orange); }
.card-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: .6rem; }
.card-footer-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.card-footer-text { font-size: .85rem; color: var(--muted); }

/* Hero stats */
.hero-stats {
  display: flex;
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.stat-item { flex: 1; padding: 1.75rem 2rem; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: .2rem; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-number); font-size: 3.5rem; line-height: 1; color: var(--dark); }
.stat-number em { font-style: normal; color: var(--orange); }
.stat-label { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }

/* ══════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker-strip {
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: none;
  padding: .7rem 0; background: #fff;
}
.ticker-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.ticker-dot { margin: 0 10px; color: var(--orange); font-size: .5rem; vertical-align: middle; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES / PILLARS
════════════════════════════════════════════════════════════ */
.services-section { padding: 7rem 0; background: #fff; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--border);
  border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.pillar-card { background: #fff; overflow: hidden; cursor: pointer; transition: background .25s; }
.pillar-card:hover { background: var(--bg-3); }
.pillar-img {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* <--- Add this */
    overflow: hidden;
    transition: transform .6s var(--ease);
}
.pillar-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
   background: linear-gradient(to top,#fff,transparent);
}
.pillar-card:hover .pillar-img { transform: scale(1.04); }
.pillar-body   { padding: 1.75rem 2rem 2.25rem; }
.pillar-title  { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem,2.8vw,2.4rem); line-height: 1.05; color: var(--muted); text-transform: uppercase; margin-bottom: .75rem; }
.pillar-desc   { font-size: clamp(1rem,1.6vw,1.1rem); color: var(--muted); line-height: 1.8; margin-bottom: 1.1rem; }
.pillar-link { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .08em; text-transform: uppercase; color: var(--silver); display: inline-flex; align-items: center; gap: .5rem; transition: gap .2s; }
.pillar-link:hover { gap: .85rem; color: var(--orange); }

.pillar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #000;
    color: var(--orange);
    padding: 1.4rem 1.6rem;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: .085m;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.pillar-cta:hover {
    background: var(--orange-lt);
    color: #000;
    transform: translateY(-2px);
}

/* Arrow block */
.cta-arrow {
    width: 28px;
    height: 14px;
    background: #fff;
    position: relative;
    display: inline-block;
}

/* Arrow tip */
.cta-arrow::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #fff;
}

/* Text */
.cta-text {
    font-size: 0.95rem;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    flex-shrink: 0;
}
/* ══════════════════════════════════════════════════════════════
   ABOUT / LEGACY
════════════════════════════════════════════════════════════ */
.about-section { padding: 7rem 0; background: var(--bg); }
.legacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.legacy-image-col { position: relative; padding-bottom: 2.5rem; padding-right: 2.5rem; }
.legacy-img-main  { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background-size: cover; background-position: center; }
.legacy-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; aspect-ratio: 1; border-radius: var(--radius-md); border: 4px solid var(--bg); box-shadow: var(--shadow-md); background-size: cover; background-position: center; }
.legacy-badge { position: absolute; top: -.8rem; left: -1.2rem; z-index: 2; width: 110px; height: 110px; border-radius: 50%; background: var(--orange); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(245,163,26,.4); }
.legacy-badge-num  { font-family: var(--font-number); font-size: 2.1rem; color: #000; line-height: 1; }
.legacy-badge-text { font-family: var(--font-display); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,.6); text-align: center; line-height: 1.3; }
.legacy-lead  { font-size: clamp(1.15rem,2vw,1.3rem); color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; font-weight: 500; }
.legacy-body  { color: var(--muted); line-height: 1.9; font-size: clamp(1rem,1.5vw,1.1rem); margin-bottom: 2rem; }
.legacy-stats { display: flex; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.legacy-stat  { display: flex; flex-direction: column; gap: .15rem; }
.ls-num   { font-family: var(--font-number); font-size: 2.5rem; color: var(--orange); line-height: 1; }
.ls-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }

/* ══════════════════════════════════════════════════════════════
   EQUIPMENT
════════════════════════════════════════════════════════════ */
.equipment-section { padding: 7rem 0; background: #fff; }
.equipment-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 2.5rem;
}
.eq-card { background: #fff; overflow: hidden; cursor: pointer; transition: background .25s; }
.eq-card:hover { background: var(--bg-3); }
.eq-img { width: 100%; height: 370px; background-size: cover; background-position: center; overflow: hidden; transition: transform .5s var(--ease); }
.eq-card:hover .eq-img { transform: scale(1.05); }
.eq-info   { padding: 1.35rem 1.6rem; }
.eq-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.52rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    border: 0 solid rgb(245 163 26 / .2);
    padding: 0.rem .60rem;
    border-radius: 10px;
    margin-bottom: .55rem
}
.eq-name   { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: rgba(0,0,0,.6); text-transform: uppercase; margin-bottom: .35rem; letter-spacing: .02em; }
.eq-desc   { font-size: .95rem; color: var(--muted); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════
   VISION 2030
════════════════════════════════════════════════════════════ */
.vision-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0f1117 0%, #151824 100%);
  position: relative; overflow: hidden;
}
.vision-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(245,163,26,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.vision-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
  pointer-events: none;
}
.vision-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.vision-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.05; color: #fff; text-transform: uppercase; margin-bottom: 1.2rem; }
.vision-title em { color: var(--orange); }
.vision-body   { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.85; max-width: 520px; margin-bottom: 2rem; }
.vision-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.vision-stats  { display: flex; flex-direction: column; gap: 1.1rem; }
.vision-stat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; transition: all 0.25s ease;
}
.vision-stat:hover { border-color: rgba(245,163,26,0.35); background: rgba(245,163,26,0.08); transform: translateY(-2px); }
.vs-icon { width: 52px; height: 52px; min-width: 42px; border-radius: 8px; background: rgba(245,163,26,0.18); display: flex; align-items: center; justify-content: center; }
.vs-icon svg { width: 30px; height: 30px; stroke: var(--orange); }
.vs-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; line-height: 1.2; }
.vs-sub   { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   PROJECTS
════════════════════════════════════════════════════════════ */
.projects-section { padding: 7rem 0; background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.project-card  { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all .25s; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-img   { height: 200px; background-size: cover; background-position: center; position: relative; }
.project-badge { position: absolute; top: .75rem; left: .75rem; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #000; background: var(--orange); padding: .22rem .65rem; border-radius: 4px; }
.project-body  { padding: 1.35rem 1.5rem; }
.project-title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; color: var(--dark); margin-bottom: .4rem; }
.project-loc   { font-size: .9rem; color: var(--muted); margin-bottom: .75rem; }
.project-tags  { display: flex; flex-wrap: wrap; gap: .35rem; }
.project-tag   { font-family: var(--font-display); font-size: .9rem; font-weight: 500; text-transform: uppercase; color: #066aab; border: 1px solid #cccccc; padding: .2rem .6rem; border-radius: 2px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-section { padding: 7rem 0; background: #fff; border-top: 1px solid var(--border); }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-title   { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem,4vw,3.4rem); line-height: 1.05; color: var(--dark); text-transform: uppercase; margin-bottom: 1.1rem; }
.contact-title em { font-style: normal; color: var(--orange); }
.contact-sub   { color: var(--muted); line-height: 1.9; margin-bottom: 2rem; font-size: clamp(1rem,1.6vw,1.15rem); }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item  { display: flex; align-items: center; gap: .95rem; padding: 1rem 1.25rem; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all .2s; }
.contact-item:hover { border-color: var(--orange); background: #fff; box-shadow: 0 3px 14px rgba(245,163,26,.1); }
.contact-icon  { width: 42px; height: 42px; border-radius: 8px; background: rgba(245,163,26,.1); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.contact-value { font-size: 1rem; color: var(--text); font-weight: 500; margin-top: .1rem; }

/* ── WPForms 2-Column Layout ── */
.wpforms-field-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 16px !important;
}
.wpforms-field-container > .wpforms-field {
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 0 4px 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.wpforms-field-container > .wpforms-field-textarea,
.wpforms-submit-container {
  grid-column: 1 / -1 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wpforms-field-medium {
  max-width: 100% !important;
  width: 100% !important;
}
.wpforms-field input:not([type="submit"]),
.wpforms-field select,
.wpforms-field textarea {
  width: 100% !important;
  max-width: 100% !important;
  border: 1.5px solid #e0ddd6 !important;
  border-radius: 6px !important;
  padding: 11px 14px !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #292929 !important;
  background: #fafaf8 !important;
  box-sizing: border-box !important;
}
.wpforms-field input:not([type="submit"]):focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: #F5A31A !important;
  outline: none !important;
  background: #fff !important;
}
.wpforms-field label.wpforms-field-label {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #292929 !important;
  margin-bottom: 4px !important;
  display: block !important;
}
.wpforms-field select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
}
.wpforms-field textarea {
  min-height: 130px !important;
  resize: vertical !important;
}
.wpforms-submit {
  background: #F5A31A !important;
  color: #292929 !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 15px 48px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: all 0.2s ease !important;
}
.wpforms-submit:hover {
  background: #292929 !important;
  color: #F5A31A !important;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.58);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 4rem;
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo img {
  height: 142px;
  width: auto;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.8;
  margin: .9rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: .65rem;
}

.social-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  color: rgba(255,255,255,.45);
  transition: all .2s;
  cursor: pointer;
}

.social-icon svg {
  width: 40px;
  height: 40px;
}

.social-icon:hover {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col ul li a,
.footer-contact-list li a {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover,
.footer-contact-list li a:hover {
  color: var(--orange);
}

.footer-contact-list svg {
  flex-shrink: 0;
  opacity: .6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .95rem;
    color: rgba(255, 255, 255, 0.55);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════ */
.reveal, .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { transition-delay: 0s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1200px)
════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {

  .header-actions .call-btn { display: none !important; }
  .header-actions { margin-left: auto !important; }
  .primary-nav { display: none; }
  .header-actions .btn-ghost { display: none; }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer; flex-shrink: 0;
  }
  .bar {
    display: block;
    width: 100%; height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .mobile-toggle.active .bar-1 { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.active .bar-2 { opacity: 0; transform: scaleX(0); }
  .mobile-toggle.active .bar-3 { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #1a1a1a;
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem 1.75rem 3rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    visibility: hidden;
  }
  .mobile-nav.open { transform: translateX(0); visibility: visible; }

  .mobile-nav-list { list-style: none; margin: 0 0 2rem 0; padding: 0; }
  .mob-section { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mob-main {
    display: block; padding: 1.1rem 0;
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.4rem; letter-spacing: 0.05em;
    text-transform: uppercase; color: #fff; transition: color 0.2s;
  }
  .mob-main:hover { color: var(--orange); }
  .mob-sub-list { list-style: none; padding: 0 0 .75rem 1rem; margin: 0; display: flex; flex-direction: column; gap: .1rem; }
  .mob-sub-list li a { display: block; padding: .5rem 0; font-size: 1rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .mob-sub-list li a::before { content: '→ '; color: var(--orange); font-size: .85rem; }
  .mob-sub-list li a:hover { color: var(--orange); }

  .mob-actions { display: flex; flex-direction: column; gap: .85rem; padding-top: .5rem; }
  .mob-call, .mob-quote { width: 100%; justify-content: center; min-height: 54px; font-size: 1rem; }
  .mob-call { background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; }
  .mob-btn-row { display: flex; gap: .75rem; }
  .mob-btn-row .mob-quote { flex: 1; justify-content: center; }
  .mob-email-btn {
    flex: 1; justify-content: center;
    background: transparent;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    min-height: 54px; font-size: 1rem;
    transition: all .2s;
  }
  .mob-email-btn:hover { background: var(--orange); color: #000; }

  .hero-right  { display: none; }
  .hero-body   { padding: 3rem 1.5rem 2rem; }
  .legacy-grid { grid-template-columns: 1fr; gap: 4rem; }
  .vision-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links  { grid-template-columns: 1fr 1fr; }

  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 1.05rem; }

  .header-logo img { height: 38px; }
  .header-actions .btn-orange { display: none; }

  .pillars-grid   { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }

  .hero-line-1, .hero-line-2 { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-line-3, .hero-line-4 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-sub    { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .pillar-title  { font-size: 2rem; }

  .legacy-img-accent { display: none; }
  .legacy-stats { flex-direction: column; gap: 1.5rem; }

  .vision-title  { font-size: 2.2rem; }
  .vision-body   { font-size: 1.05rem; }

  .footer-links  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .wpforms-field-container { grid-template-columns: 1fr !important; }
  .wpforms-field-container > .wpforms-field-textarea,
  .wpforms-submit-container { grid-column: 1 !important; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 480px)
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-body  { padding: 2.5rem 1.25rem 1.5rem; }

  .btn        { min-height: 56px; font-size: 1.1rem; }
  .btn-lg     { min-height: 62px; font-size: 1.2rem; }

  .equipment-grid { grid-template-columns: 1fr; }

  .stat-item   { padding: 1.25rem; }
  .stat-number { font-size: 2.5rem; }

  .section-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .contact-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .vision-title  { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  .pillar-title { font-size: 1.85rem; }
  .pillar-body  { padding: 1.35rem 1.5rem 1.75rem; }

  .mob-main { font-size: 1.3rem; }
  .mobile-nav-list a.sub { font-size: 1.05rem; }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 3px 4px;
}
.lang-switcher a {
    padding: 3px 9px;
    border-radius: 10px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all .2s;
    font-size: 1.0rem;
    font-weight: 400;
}
.lang-switcher a.active,
.lang-switcher a:hover {
    background: #F5A31A;
    color: #111;
}

/* Project points */
.project-points {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.project-points li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.project-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.project-card:hover .project-points li { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   EQUIPMENT SPLIT — video left / content right
════════════════════════════════════════════════════════════ */
.equipment-split {
    display: flex;
    align-items: stretch;
    margin-top: 3rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg);
}
.equipment-split-video {
    flex: 0 0 55%;
    max-width: 55%;
    overflow: hidden;
    display: flex;
}
.equipment-split-video video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.equipment-split-content {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.equipment-split-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.1;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.equipment-split-title em {
    font-style: normal;
    color: var(--orange);
}
.equipment-split-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--muted);
    line-height: 1.8;
}
.equipment-split-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0;
    margin: 0.25rem 0 0.5rem;
}
.equipment-split-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}
.equipment-split-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}
@media (max-width: 1200px) {
    .equipment-split { flex-direction: column; }
    .equipment-split-video { flex: unset; max-width: 100%; width: 100%; }
    .equipment-split-video video { min-height: 300px; }
    .equipment-split-content { padding: 2.5rem 2rem; }
}
@media (max-width: 480px) {
    .equipment-split-video video { min-height: 220px; }
    .equipment-split-content { padding: 2rem 1.25rem; }
}

/* CONTACT HERO CENTERED */
.contact-hero {
    min-height: 50vh !important;
    display: flex;
    align-items: center;
}

/* center text properly */
.contact-hero .hero-left {
    text-align: center;
}

/* tighten spacing */
.contact-hero .hero-headline {
    margin-bottom: 12px;
}

.contact-hero .hero-sub {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

/* optional: lighter background */
.contact-hero .hero-video {
    opacity: 0.4 !important;
}

/* TRUE CENTER FIX */
.contact-hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* kill left/right column behaviour */
.contact-hero-center .hero-left {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* make headline centered properly */
.contact-hero-center .hero-headline {
    display: block;
    text-align: center;
}

/* tighten text */
.contact-hero-center .hero-sub {
    margin: 15px auto 0;
    max-width: 600px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px; /* default = English */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5A31A;
  color: #000;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Arabic override */
body.lang-ar #scrollTopBtn {
  right: auto;
  left: 20px;
}

