/* ═══════════════════════════════════════════════
   KAW INDUSTRIES — style.css
   Fully Responsive — Mobile · Tablet · Desktop
   Black · White · Orange
═══════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@300;400;500;600&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --black:        #080808;
  --white:        #f5f5f0;
  --orange:       #e85d04;
  --orange-dim:   #b84a03;
  --grey-dark:    #111111;
  --grey-mid:     #1a1a1a;
  --grey-line:    #222222;
  --grey-text:    #888880;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  /* Layout tokens — desktop defaults */
  --sidebar-w:  320px;
  --topbar-h:   44px;
  --section-px: 60px;
  --section-py: 100px;
}

/* ── GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── PAGE SWITCHER ── */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--topbar-h);
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--grey-line);
  display: flex; align-items: center;
  padding: 0 24px 0 16px; gap: 16px;
}
.topbar__logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto;
  padding-left: calc(var(--sidebar-w) + 4px);
  cursor: pointer; min-width: 0;
}
.topbar__logo-mark {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px;
  color: var(--orange); letter-spacing: .5px;
}
.topbar__logo-text {
  font-family: var(--font-cond); font-weight: 600;
  font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.topbar__right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.topbar__tag {
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text);
  white-space: nowrap;
}

/* ── REGION DROPDOWN ── */
.region-wrap { position: relative; }
.region-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-text); cursor: pointer;
  padding: 6px 10px;
  border: 1px solid var(--grey-line);
  background: transparent; transition: all .2s;
  user-select: none; white-space: nowrap;
}
.region-btn:hover { color: var(--orange); border-color: var(--orange); }
.region-btn svg { width: 10px; height: 10px; transition: transform .2s; flex-shrink: 0; }
.region-wrap.open .region-btn svg { transform: rotate(180deg); }
.region-wrap.open .region-btn { color: var(--orange); border-color: var(--orange); }
.region-dropdown {
  position: absolute; top: 100%; right: 0;
  padding-top: 6px; background: transparent;
  min-width: 170px; display: none; z-index: 200;
}
.region-wrap.open .region-dropdown { display: block; }
.region-dropdown-inner {
  background: var(--grey-dark);
  border: 1px solid var(--grey-line);
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.region-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px;
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey-text); cursor: pointer;
  border-bottom: 1px solid var(--grey-line);
  transition: all .15s; position: relative;
}
.region-item:last-child { border-bottom: none; }
.region-item:hover { color: var(--white); background: var(--grey-mid); }
.region-item svg { width: 8px; height: 8px; opacity: .5; flex-shrink: 0; }
.africa-sub {
  position: absolute; left: 100%; top: 0;
  padding-left: 4px; background: transparent;
  min-width: 188px; display: none; z-index: 201;
}
.africa-sub-inner {
  background: var(--grey-dark);
  border: 1px solid var(--grey-line);
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  max-height: 320px; overflow-y: auto;
}
.region-item.has-sub:hover .africa-sub { display: block; }
.africa-lang {
  padding: 9px 14px;
  font-family: var(--font-cond); font-size: 11px; letter-spacing: 1px;
  color: var(--grey-text); border-bottom: 1px solid #1d1d1d;
  cursor: pointer; transition: all .15s;
}
.africa-lang:last-child { border-bottom: none; }
.africa-lang:hover { color: var(--orange); padding-left: 20px; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.layout { display: flex; padding-top: var(--topbar-h); min-height: 100vh; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed; top: var(--topbar-h); left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--grey-dark);
  border-right: 1px solid var(--grey-line);
  display: flex; flex-direction: column;
  z-index: 900; overflow-y: auto;
  transition: transform .3s ease;
}
.sidebar::-webkit-scrollbar { width: 2px; }
.sidebar__section { padding: 24px 0 8px; border-bottom: 1px solid var(--grey-line); }
.sidebar__section:last-of-type { border-bottom: none; flex: 1; }
.sidebar__label {
  font-family: var(--font-cond); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: #444; padding: 0 20px 8px;
}
.sidebar__nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-cond); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey-text); cursor: pointer;
  transition: all .2s; border-left: 2px solid transparent;
}
.sidebar__nav-item:hover,
.sidebar__nav-item.active {
  color: var(--white);
  border-left-color: var(--orange);
  background: rgba(232,93,4,.05);
}
.sidebar__nav-item svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.sidebar__bottom { padding: 20px; border-top: 1px solid var(--grey-line); margin-top: auto; }
.sidebar__cert { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #333; line-height: 2; }
.sidebar__cert span { color: var(--orange); }
.main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; }

/* ═══════════════════════════════════════════════
   LOGO
═══════════════════════════════════════════════ */
.topbar {
  height: 90px;
}

.topbar__logo-mark {
  width: 180px;
  height: 70px;
  border: none;
  background: transparent;
}

.topbar__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - var(--topbar-h));
  min-height: 500px;
  overflow: hidden;
}
.hero__slides { position: relative; width: 100%; height: 100%; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  display: flex; align-items: flex-end;
}
.hero__slide.active { opacity: 1; }
.hero__slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  transform: scale(1.05); transition: transform 8s ease;
}
.hero__slide.active .hero__slide-bg { transform: scale(1); }
.slide-1 { background-image: url('../assets/images/GLOBAL1_opt.jpg'); background-color: #1a0a00; }
.slide-2 { background-image: url('../assets/images/GLOBAL 2_opt.jpg'); background-color: #060a0f; }
.slide-3 { background-image: url('../assets/images/global 3_opt.jpg'); background-color: #060608; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.97) 0%, rgba(8,8,8,.55) 40%, rgba(8,8,8,.15) 100%);
}
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,93,4,.035) 1px,transparent 1px), linear-gradient(90deg,rgba(232,93,4,.035) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 clamp(24px,5vw,80px) clamp(48px,7vh,80px) clamp(24px,4vw,60px);
  max-width: 860px; width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--orange); flex-shrink: 0; }
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 110px);
  line-height: .92; letter-spacing: 2px;
  color: var(--white); margin-bottom: 24px;
}
.hero__tagline em { color: var(--orange); font-style: normal; }
.hero__desc {
  font-weight: 300; font-size: clamp(13px, 1.5vw, 15px); line-height: 1.75;
  color: rgba(245,245,240,.72); max-width: 560px; margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__controls {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px; z-index: 10;
}
.hero__dot { width: 4px; height: 20px; background: rgba(245,245,240,.2); cursor: pointer; transition: all .3s; }
.hero__dot.active { background: var(--orange); height: 36px; }
.hero__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grey-line); z-index: 10; }
.hero__progress-bar { height: 100%; background: var(--orange); width: 0%; transition: width 6s linear; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(10px,1.5vh,13px) clamp(18px,2.5vw,28px);
  background: var(--orange); color: var(--white);
  font-family: var(--font-cond); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; cursor: pointer; border: none;
  transition: background .2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-dim); }
.btn-primary svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(9px,1.4vh,12px) clamp(18px,2.5vw,28px);
  background: transparent; color: var(--white);
  font-family: var(--font-cond); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
  border: 1px solid rgba(245,245,240,.22);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ═══════════════════════════════════════════════
   SECTIONS — SHARED
═══════════════════════════════════════════════ */
.section-inner { padding: var(--section-py) var(--section-px); max-width: 1200px; }
.section-label {
  font-family: var(--font-cond); font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--orange); flex-shrink: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95; letter-spacing: 1px; color: var(--white); margin-bottom: 40px;
}
.section-title em { color: var(--orange); font-style: normal; }
.divider { height: 1px; background: var(--grey-line); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.about-text p { color: rgba(245,245,240,.7); line-height: 1.8; margin-bottom: 20px; font-size: clamp(14px,1.4vw,15px); }
.about-certs { display: flex; flex-direction: column; gap: 1px; margin-top: 32px; }
.cert-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--grey-line); }
.cert-item:first-child { border-top: 1px solid var(--grey-line); }
.cert-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.cert-icon svg { width: 16px; height: 16px; }
.cert-text { font-family: var(--font-cond); font-size: 13px; letter-spacing: .5px; color: var(--white); }
.cert-text small { display: block; font-size: 11px; color: var(--grey-text); font-family: var(--font-body); font-weight: 300; margin-top: 2px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--grey-line); }
.about-stat { background: var(--grey-dark); padding: clamp(20px,3vw,32px) clamp(16px,2.5vw,28px); display: flex; flex-direction: column; }
.about-stat__num { font-family: var(--font-display); font-size: clamp(36px,4vw,52px); line-height: 1; color: var(--orange); letter-spacing: 1px; }
.about-stat__label { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); margin-top: 6px; }

/* ── SERVICES ── */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: start; margin-bottom: 60px; }
.services-desc { color: rgba(245,245,240,.6); font-size: clamp(14px,1.4vw,15px); line-height: 1.8; padding-top: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--grey-line); }
.service-card { background: var(--grey-dark); padding: clamp(24px,3vw,40px) clamp(20px,3vw,36px); transition: background .25s; cursor: default; }
.service-card:hover { background: #141414; }
.service-card__icon { color: var(--orange); margin-bottom: 20px; }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title { font-family: var(--font-cond); font-size: clamp(15px,1.5vw,18px); font-weight: 500; letter-spacing: 1px; color: var(--white); text-transform: uppercase; margin-bottom: 12px; }
.service-card__desc { font-size: clamp(13px,1.2vw,14px); line-height: 1.75; color: var(--grey-text); }

/* ── INDUSTRIES ── */
.industries-lead { color: rgba(245,245,240,.6); font-size: clamp(14px,1.4vw,15px); line-height: 1.8; max-width: 640px; margin-bottom: 56px; }
.industries-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--grey-line); }
.industry-tile { background: var(--black); padding: clamp(20px,2.5vw,32px) clamp(16px,2vw,24px); display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: background .2s; cursor: default; border-bottom: 2px solid transparent; }
.industry-tile:hover { background: var(--grey-dark); border-bottom-color: var(--orange); }
.industry-tile__icon { color: var(--orange); }
.industry-tile__icon svg { width: 20px; height: 20px; }
.industry-tile__label { font-family: var(--font-cond); font-size: clamp(10px,1vw,12px); letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.industry-tile__tag { font-size: 10px; color: var(--grey-text); letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-cond); }

/* ── PRODUCTS ── */
.products-filter { display: flex; gap: 2px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); background: transparent; border: 1px solid var(--grey-line); cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { color: var(--white); border-color: var(--orange); background: rgba(232,93,4,.08); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-line); }
.product-card { background: var(--grey-dark); display: flex; flex-direction: column; overflow: hidden; transition: background .25s; }
.product-card:hover { background: #141414; }
.product-card__visual { height: 180px; background: var(--black); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--grey-line); }
.product-card__visual svg { width: 64px; height: 64px; opacity: .15; }
.product-card__cat { position: absolute; top: 14px; left: 14px; font-family: var(--font-cond); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); background: rgba(232,93,4,.1); border: 1px solid rgba(232,93,4,.3); padding: 3px 8px; }
.product-card__body { padding: clamp(16px,2vw,24px); flex: 1; }
.product-card__name { font-family: var(--font-cond); font-size: clamp(14px,1.4vw,16px); font-weight: 500; letter-spacing: .5px; color: var(--white); margin-bottom: 8px; }
.product-card__desc { font-size: 13px; line-height: 1.65; color: var(--grey-text); margin-bottom: 20px; }
.product-card__foot { padding: 14px clamp(16px,2vw,24px); border-top: 1px solid var(--grey-line); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.product-card__material { font-family: var(--font-cond); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-text); }
.product-card__link { font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 5px; transition: gap .2s; }
.product-card__link:hover { gap: 9px; }
.product-card__link svg { width: 10px; height: 10px; }

/* ── ANALYTICS ── */
.analytics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--grey-line); margin-bottom: 60px; }
.analytic-tile { background: var(--black); padding: clamp(24px,3vw,40px) clamp(18px,2.5vw,28px); display: flex; flex-direction: column; gap: 8px; }
.analytic-tile__num { font-family: var(--font-display); font-size: clamp(36px,4vw,48px); line-height: 1; color: var(--white); letter-spacing: 1px; }
.analytic-tile__unit { color: var(--orange); font-size: clamp(20px,2.5vw,28px); }
.analytic-tile__label { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); }
.analytic-tile__trend { display: flex; align-items: center; gap: 5px; font-size: 12px; margin-top: 4px; }
.trend-up { color: #4caf50; }
.trend-up svg { width: 12px; height: 12px; }
.analytics-chart-area { border: 1px solid var(--grey-line); padding: clamp(20px,2.5vw,32px); background: var(--grey-dark); }
.chart-label { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); margin-bottom: 24px; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.bar-col { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.bar { width: 100%; background: var(--grey-line); position: relative; min-height: 4px; transition: background .3s; }
.bar:hover { background: var(--orange); }
.bar-val { font-family: var(--font-cond); font-size: 9px; color: var(--grey-text); letter-spacing: 1px; }
.bar-year { font-family: var(--font-cond); font-size: 9px; color: #333; letter-spacing: 1px; }

/* ── LINKEDIN POSTS ── */
.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.linkedin-card {
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease, border-top-color 0.35s ease;
  cursor: pointer;
  position: relative;
}
.linkedin-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.linkedin-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(232,93,4,0.18), 0 4px 20px rgba(0,0,0,0.5); border-color: rgba(232,93,4,0.35); border-top-color: var(--orange); }
.linkedin-card:hover::before { opacity: 1; }
.linkedin-card__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.linkedin-card__icon { width: 36px; height: 36px; background: #0077b5; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease; }
.linkedin-card:hover .linkedin-card__icon { transform: scale(1.1); }
.linkedin-card__icon svg { width: 20px; height: 20px; display: block; }
.linkedin-card__badge { font-family: var(--font-cond); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(232,93,4,0.35); padding: 3px 9px; border-radius: 2px; white-space: nowrap; }
.linkedin-card__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.linkedin-card__title { font-family: var(--font-cond); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); line-height: 1.25; transition: color 0.25s ease; }
.linkedin-card__desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.5); flex: 1; }
.linkedin-card__footer { padding: 14px 22px 18px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.linkedin-card__tags { font-family: var(--font-cond); font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,0.28); line-height: 1.5; }
.linkedin-card__cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); white-space: nowrap; transition: gap 0.25s ease; }
.linkedin-card__cta svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.25s ease; }
.linkedin-card:hover .linkedin-card__cta { gap: 10px; }
.linkedin-card:hover .linkedin-card__cta svg { transform: translateX(3px); }
/* ── LOCATION ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--grey-line); }
.location-map-placeholder { background: var(--grey-dark); min-height: 360px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.map-pins { position: absolute; inset: 0; background: radial-gradient(circle at 30% 60%,rgba(232,93,4,.15) 0%,transparent 30%), radial-gradient(circle at 70% 40%,rgba(232,93,4,.1) 0%,transparent 25%); }
.map-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,93,4,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(232,93,4,.04) 1px,transparent 1px); background-size: 30px 30px; }
.location-info { background: var(--grey-dark); padding: clamp(28px,4vw,48px) clamp(24px,4vw,44px); }
.office-entry { padding: 24px 0; border-bottom: 1px solid var(--grey-line); display: flex; gap: 20px; }
.office-entry:first-child { padding-top: 0; }
.office-icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.office-icon svg { width: 16px; height: 16px; }
.office-name { font-family: var(--font-cond); font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.office-addr { font-size: 13px; line-height: 1.65; color: var(--grey-text); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,80px); align-items: start; }
.contact-entry { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--grey-line); }
.contact-entry:first-child { border-top: 1px solid var(--grey-line); }
.contact-icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.contact-icon svg { width: 16px; height: 16px; }
.contact-entry__label { font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); margin-bottom: 4px; }
.contact-entry__val { font-size: 14px; color: var(--white); word-break: break-word; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); }
.form-input, .form-select, .form-textarea { background: var(--black); border: 1px solid var(--grey-line); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 300; padding: 11px 14px; transition: border-color .2s; outline: none; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; cursor: pointer; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--grey-line); padding: clamp(32px,5vw,48px) clamp(24px,5vw,60px) 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px,5vw,60px); margin-bottom: 48px; }
.footer-brand__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand__mark { width: 32px; height: 32px; flex-shrink: 0; border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; color: var(--orange); }
.footer-brand__name { font-family: var(--font-cond); font-weight: 600; font-size: 15px; letter-spacing: 3px; text-transform: uppercase; }
.footer-brand__desc { font-size: 13px; line-height: 1.75; color: var(--grey-text); max-width: 280px; margin-bottom: 24px; }
.footer-col__title { font-family: var(--font-cond); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-family: var(--font-cond); font-size: 12px; letter-spacing: 1px; color: var(--grey-text); transition: color .2s; text-transform: uppercase; }
.footer-link:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--grey-line); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: #333; letter-spacing: 1px; font-family: var(--font-cond); text-transform: uppercase; }
.footer-cert { font-family: var(--font-cond); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(232,93,4,.3); padding: 4px 10px; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero__content > * { animation: fadeUp .8s ease both; }
.hero__eyebrow { animation-delay: .2s; }
.hero__tagline { animation-delay: .4s; }
.hero__desc    { animation-delay: .6s; }
.hero__ctas    { animation-delay: .8s; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   CONTINENT LANDING PAGES
═══════════════════════════════════════════════ */
.continent-page { min-height: 100vh; display: flex; flex-direction: column; padding-top: var(--topbar-h); }
.continent-hero { position: relative; height: calc(100vh - var(--topbar-h)); min-height: 480px; overflow: hidden; display: flex; align-items: flex-end; }
.continent-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.continent-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,8,8,.97) 0%,rgba(8,8,8,.55) 45%,rgba(8,8,8,.15) 100%); }
.continent-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,93,4,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(232,93,4,.03) 1px,transparent 1px); background-size: 50px 50px; }
.continent-back {
    position: absolute;
  top: 124px;
  left: 48px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-text); cursor: pointer; transition: all .2s;
  background: rgba(8,8,8,.55); border: 1px solid var(--grey-line);
  padding: 8px 14px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.continent-back:hover { color: var(--orange); border-color: var(--orange); }
.continent-back svg { width: 14px; height: 14px; flex-shrink: 0; }
.continent-content {
  position: relative; z-index: 2;
  padding: 0 clamp(24px,5vw,80px) clamp(40px,6vh,80px) clamp(24px,5vw,80px);
  max-width: 900px; width: 100%;
}
.continent-flag { font-family: var(--font-cond); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.continent-flag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--orange); flex-shrink: 0; }
.continent-name { font-family: var(--font-display); font-size: clamp(48px,9vw,130px); line-height: .88; letter-spacing: 2px; color: var(--white); margin-bottom: 8px; word-break: break-word; }
.continent-name em { color: var(--orange); font-style: normal; }
.continent-tagline { font-family: var(--font-display); font-size: clamp(14px,2.5vw,36px); color: rgba(245,245,240,.35); letter-spacing: 3px; margin-bottom: 28px; word-break: break-word; }
.continent-desc { font-size: clamp(13px,1.4vw,15px); line-height: 1.75; color: rgba(245,245,240,.65); max-width: 580px; margin-bottom: 32px; }
.continent-stats { display: flex; gap: clamp(24px,4vw,48px); margin-bottom: 36px; flex-wrap: wrap; }
.continent-stat__num { font-family: var(--font-display); font-size: clamp(26px,3vw,36px); color: var(--orange); letter-spacing: 1px; }
.continent-stat__label { font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-text); margin-top: 2px; }
.continent-body { background: var(--black); padding: clamp(40px,6vw,80px); }
.continent-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-line); margin-top: 60px; }
.continent-card { background: var(--grey-dark); padding: clamp(24px,3vw,36px); transition: background .2s; }
.continent-card:hover { background: #141414; }
.continent-card__icon { color: var(--orange); margin-bottom: 16px; }
.continent-card__icon svg { width: 20px; height: 20px; }
.continent-card__title { font-family: var(--font-cond); font-size: clamp(14px,1.4vw,16px); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.continent-card__text { font-size: 13px; line-height: 1.7; color: var(--grey-text); }
.continent-map-art { position: absolute; right: 60px; top: 50%; transform: translateY(-45%); width: 42%; opacity: .18; pointer-events: none; }

/* Background images */
.bg-northamerica { background-image: url('../assets/images/NORTH AMERICA  (2)_opt.jpg'); background-color: #0a1020; background-size: cover; background-position: center; }
.bg-southamerica { background-image: url('../assets/images/south america_opt.jpg'); background-color: #0a1a08; background-size: cover; background-position: center; }
.bg-europe       { background-image: url('../assets/images/europe _opt.jpg');       background-color: #10100a; background-size: cover; background-position: center; }
.bg-gulf         { background-image: url('../assets/images/gulf _opt.jpg');         background-color: #1a0e00; background-size: cover; background-position: center; }
.bg-asia         { background-image: url('../assets/images/asia_opt.jpg');         background-color: #0a0a18; background-size: cover; background-position: center; }
.bg-africa       { background-image: url('../assets/images/africa_opt.jpg');       background-color: #150a00; background-size: cover; background-position: center; }
.bg-oceania      { background-image: url('../assets/images/ocenia_opt.jpg');      background-color: #001218; background-size: cover; background-position: center; }

/* Entry animations */
@keyframes cHeroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.continent-flag              { animation: cHeroIn .6s .1s  ease both; }
.continent-name              { animation: cHeroIn .8s .2s  ease both; }
.continent-tagline           { animation: cHeroIn .8s .35s ease both; }
.continent-desc              { animation: cHeroIn .8s .5s  ease both; }
.continent-stats             { animation: cHeroIn .8s .65s ease both; }
.continent-hero .btn-primary { animation: cHeroIn .8s .8s  ease both; }


/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL LAPTOP  ≤ 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 180px; --section-px: 40px; --section-py: 70px; }
  .topbar__logo { padding-left: calc(var(--sidebar-w) + 4px); }
  .topbar__tag { display: none; }                          /* free topbar space */
  .industries-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 40px; }
  .services-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .services-desc { padding-top: 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .analytics-grid { grid-template-columns: repeat(2,1fr); }

  .continent-cards { grid-template-columns: repeat(2,1fr); }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .linkedin-grid { grid-template-columns: repeat(2, 1fr); }
  :root { --sidebar-w: 0px; --section-px: 28px; --section-py: 56px; --topbar-h: 48px; }

  /* Sidebar: hidden by default, slide in when .open */
  .sidebar { transform: translateX(-100%); width: 240px; box-shadow: 4px 0 32px rgba(0,0,0,.6); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .topbar__logo { padding-left: 0; }

  /* Hero */
  .hero__content { padding: 0 24px 48px 24px; }
  .hero__tagline { font-size: clamp(38px,10vw,72px); }
  .hero__controls { display: none; }

  /* Sections */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-header { grid-template-columns: 1fr; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .product-card__visual { height: 140px; }
  .analytics-grid { grid-template-columns: repeat(2,1fr); }

  .location-grid { grid-template-columns: 1fr; }
  .location-map-placeholder { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand__desc { max-width: 100%; }

  /* Continent */
  .continent-back { left: 16px; top: 16px; padding: 7px 12px; font-size: 10px; }
  .continent-content { padding: 0 24px 40px 24px; }
  .continent-name { font-size: clamp(44px,12vw,90px); }
  .continent-tagline { font-size: clamp(12px,4vw,22px); letter-spacing: 2px; }
  .continent-stats { gap: 24px; }
  .continent-body { padding: 40px 24px; }
  .continent-cards { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 480px
═══════════════════════════════════════════════ */

@media (max-width: 480px) {
  .linkedin-grid { grid-template-columns: 1fr; }

  .continent-hero {
    align-items: center; /* center content vertically */
    padding-top: 60px;   /* push content down from topbar */
  }

  .continent-content {
    padding: 80px 20px 40px 20px; /* more top spacing */
  }

  .continent-name {
    font-size: 42px;  /* reduce size */
    line-height: 1;
  }

  .continent-flag {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .continent-tagline {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .continent-back {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 5px 8px;
  }

}

@media (max-width: 480px) {
  :root { --section-px: 20px; --section-py: 44px; }
  body { font-size: 14px; }

  /* Topbar */
  .topbar { padding: 0 16px; gap: 12px; }
  .topbar__logo-text { display: none; }          /* keep only logo mark */

  /* Hero */
  .hero { min-height: 420px; }
  .hero__tagline { font-size: clamp(36px,13vw,60px); line-height: .95; }
  .hero__eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero__desc { display: none; }                 /* too much text at 320px */
  .hero__ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Typography */
  .section-title { font-size: clamp(28px,9vw,44px); margin-bottom: 24px; }

  /* Grids */
  .about-stat-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .analytics-grid { grid-template-columns: 1fr; }

  /* Chart */
  .bar-val, .bar-year { font-size: 8px; }
  .analytics-chart-area { padding: 16px; }

  /* Buttons */
  .filter-btn { padding: 7px 12px; font-size: 10px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Continent */
  .continent-hero { min-height: 380px; }
  .continent-name { font-size: clamp(40px,14vw,72px); }
  .continent-tagline { font-size: 12px; letter-spacing: 1px; }
  .continent-stats { flex-direction: column; gap: 16px; }
  .continent-desc { font-size: 13px; margin-bottom: 24px; }
  .continent-hero .btn-primary { width: 100%; justify-content: center; }
  .continent-back { left: 12px; top: 12px; font-size: 9px; padding: 6px 10px; }
  .continent-cards { grid-template-columns: 1fr; margin-top: 32px; }
  .continent-body { padding: 32px 20px; }
  .product-card__foot { flex-direction: column; align-items: flex-start; }
}
