
:root{
  --black:#0b0b0b;
  --black2:#000;
  --red:#b11212;
  --red2:#7a0f0f;
  --white:#fff;
  --muted:rgba(255,255,255,.78);
  --card:#ffffff;
  --cardShadow: 0 10px 30px rgba(0,0,0,.12);
  --radius:14px;
  --container: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

/* utilities */
.container{max-width:var(--container); margin:0 auto; padding:0 20px;}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  background:var(--red);
  color:var(--white);
  font-weight:700;
  letter-spacing:.02em;
  border:0;
  cursor:pointer;
}
.btn:hover{background:var(--red2)}
.btn-outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
}
.btn-outline:hover{border-color:var(--red); background:rgba(177,18,18,.12)}

.badge-line{
  width:46px; height:3px; background:var(--red);
  border-radius:3px;
  margin-bottom:14px;
}
.section-title{
  font-size:40px; line-height:1.05; margin:0 0 12px 0;
}
.section-sub{color:rgba(255,255,255,.78); margin:0}

/* top bar */
.topbar{
  background:#050505;
  font-size:13px;
  padding:6px 0;
}
.topbar .row{display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap}
.topbar .item{display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.85)}
.topbar svg{width:14px; height:14px; fill:var(--red)}

/* header */
.header{
  background: rgba(0,0,0,.85);
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .name{
  font-weight:900; letter-spacing:.06em; font-size:22px;
  color:var(--red);
}
.brand .tag{font-size:11px; color:rgba(255,255,255,.7); letter-spacing:.08em}
.nav{
  display:flex; align-items:center; gap:22px;
}
.nav a{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.12em;
  color:rgba(255,255,255,.88);
  position:relative;
  padding:10px 2px;
}
.nav a:hover{color:#fff}
.nav a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--red);
  border-radius:2px;
}
.nav .has-dd{
  display:flex; align-items:center; gap:6px;
}
.nav .caret{
  width:10px; height:10px; fill:rgba(255,255,255,.8);
}
.header-actions{display:flex; align-items:center; gap:12px}
.contact-pill{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.12em;
}
.contact-pill:hover{border-color:rgba(177,18,18,.7); background:rgba(177,18,18,.12)}
.burger{
  display:none;
  background:transparent; border:0; padding:8px;
  border-radius:10px;
}
.burger span{
  display:block; width:24px; height:2px; background:#fff; margin:5px 0;
}

/* dropdown (desktop) */
.dd{
  position:relative;
}
.dd-menu{
  position:absolute;
  top:100%; left:0;
  min-width:220px;
  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  padding:10px;
  display:none;
}
.dd:hover .dd-menu{display:block}
.dd-menu a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-transform:none;
  letter-spacing:0;
  font-size:13px;
  color:rgba(255,255,255,.9);
}
.dd-menu a:hover{background:rgba(177,18,18,.15)}

/* hero */
.hero{
  position:relative;
  height:560px;
  background:
    linear-gradient(to right, rgba(0,0,0,.70), rgba(0,0,0,.22)),
    url('logistics_container_terminal.jpg') center/cover no-repeat;
  display:flex; align-items:center;
}
.hero .inner{display:grid; grid-template-columns: 1.1fr .9fr; align-items:center; gap:22px;}
.hero h1{margin:0 0 18px 0; font-size:44px; line-height:1.08}
.hero .cta{margin-top:8px}

/* services section */
.services{
  background:#f4f4f4;
  color:#111;
  padding:70px 0 54px;
}
.services h2{margin:0 0 10px 0; font-size:34px}
.services .muted{color:#777; font-size:13px}
.cards{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background:var(--card);
  border-radius:14px;
  box-shadow: var(--cardShadow);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.card .thumb{height:190px; overflow:hidden}
.card .thumb img{width:100%; height:100%; object-fit:cover}
.card .body{padding:18px 18px 16px}
.card h3{
  margin:0 0 8px 0;
  color:var(--red);
  font-size:18px;
}
.card p{margin:0 0 14px 0; color:#444; font-size:13px; line-height:1.45}
.card .actions{display:flex; justify-content:flex-start}
.card .btn{border-radius:10px; padding:10px 14px; font-size:12px}
.center-link{
  margin-top:18px;
  display:flex; justify-content:center;
  color:#111;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  gap:10px;
}
.center-link::after{
  content:"";
  width:56px; height:2px; background:rgba(0,0,0,.28); border-radius:2px; align-self:center;
}

/* industries overlay section */
.industries{
  position:relative;
  padding:70px 0;
  background:
    linear-gradient(90deg, rgba(139,17,17,.92), rgba(120,14,14,.92)),
    url('logistics_highway_trucks.jpg') center/cover no-repeat;
}
.industries .row{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.industries h2{margin:0; font-size:38px}
.industries .sub{margin-top:10px; color:rgba(255,255,255,.85); font-size:13px; max-width:520px}
.ind-icons{
  margin-top:22px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.ind-pill{
  flex: 1 1 170px;
  display:flex; align-items:center; gap:10px;
  padding:14px 14px;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  min-width: 170px;
}
.ind-pill svg{width:22px; height:22px; fill:#fff}
.ind-pill span{font-weight:800; font-size:12px}
.industries .right{
  display:flex; align-items:flex-end; justify-content:flex-end;
  min-height: 220px;
  background: url('logistics_container_terminal.jpg') center/cover no-repeat;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.industries .right::before{
  content:"";
  position:absolute;
}
.industries .right .overlay{
  width:100%;
  padding:18px;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
}
.industries .right small{display:block; color:rgba(255,255,255,.85); font-size:12px; margin-bottom:10px}
.industries .right .btn{border-radius:12px}

/* coverage section */
.coverage{
  background:#fff;
  color:#111;
  padding:70px 0;
}
.coverage-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap:18px;
  align-items:stretch;
  margin-top:22px;
}
.mini-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.mini-card .thumb{height:150px}
.mini-card .thumb img{width:100%; height:100%; object-fit:cover}
.mini-card .label{
  padding:12px 14px;
  text-align:center;
  color:var(--red);
  font-weight:900;
  font-size:13px;
}
.coverage-panel{
  position:relative;
  background:linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.70)),
             url('coverage_southern_africa.jpg') center/cover no-repeat;
  border-radius:14px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.coverage-panel h3{margin:0 0 8px 0; font-size:26px}
.coverage-panel h3 span{color:var(--red)}
.coverage-panel p{margin:0 0 16px 0; color:#444; font-size:13px; line-height:1.5}
.coverage-panel .btn{align-self:flex-start; border-radius:12px; padding:10px 16px; font-size:12px}

/* procurement strip */
.proc-strip{
  position:relative;
  padding:0;
  background:
    linear-gradient(to right, rgba(0,0,0,.70), rgba(0,0,0,.30)),
    url('minerals_copper.jpg') center/cover no-repeat;
}
.proc-strip .inner{
  padding:70px 0;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.proc-strip h2{margin:0 0 10px 0; font-size:36px}
.proc-strip p{margin:0; color:rgba(255,255,255,.82); font-size:13px; line-height:1.55}
.proc-strip .contact-box{
  justify-self:end;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:18px 18px 16px;
  max-width: 360px;
}
.contact-line{
  display:flex; gap:10px; align-items:flex-start; margin:10px 0;
  color:rgba(255,255,255,.88); font-size:13px;
}
.contact-line svg{width:16px; height:16px; fill:var(--red); margin-top:2px}

/* footer like screenshot */
.footer{
  background:#000;
  padding:54px 0 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:22px;
}
.footer h4{margin:0 0 12px 0; letter-spacing:.08em; text-transform:uppercase; font-size:12px; color:rgba(255,255,255,.85)}
.footer a{display:block; padding:6px 0; color:rgba(255,255,255,.75); font-size:13px}
.footer a:hover{color:#fff}
.footer .small{color:rgba(255,255,255,.72); font-size:13px; line-height:1.55}
.footer .brandmark{font-weight:900; color:var(--red); letter-spacing:.06em; font-size:20px; margin-bottom:8px}
.footer-bottom{margin-top:26px; color:rgba(255,255,255,.55); font-size:12px}

/* whatsapp floating */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  z-index: 2000;
}
.whatsapp svg{width:26px; height:26px; fill:#fff}

/* responsive */
@media (max-width: 1000px){
  .hero .inner{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr; }
  .industries .row{grid-template-columns: 1fr}
  .coverage-grid{grid-template-columns: 1fr}
  .proc-strip .inner{grid-template-columns: 1fr}
  .proc-strip .contact-box{justify-self:stretch}
  .footer-grid{grid-template-columns: 1fr 1fr}
  .nav{display:none}
  .burger{display:block}
}
.mobile-nav{
  position:fixed;
  top:0; right:-100%;
  width:min(360px, 86vw);
  height:100vh;
  background:#0b0b0b;
  border-left:1px solid rgba(255,255,255,.08);
  padding:18px;
  transition:right .25s ease;
  z-index: 1900;
}
.mobile-nav.open{right:0}
.mobile-nav a{
  display:block;
  padding:14px 10px;
  border-radius:12px;
  margin:6px 0;
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
  letter-spacing:.10em;
  font-size:12px;
}
.mobile-nav a:hover{background:rgba(177,18,18,.18)}
.backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index: 1800;
}
.backdrop.open{opacity:1; pointer-events:auto}
body.lock{overflow:hidden}


/* ===== FINAL TEXT SIZE REFINEMENTS ===== */
.hero h1{font-size:42px}
.section-title{font-size:36px}
.services h2{font-size:32px}
.card h3{font-size:17px}
.card p{font-size:13.5px}
.ind-pill span{font-size:12.5px}
.coverage-panel h3{font-size:24px}
.footer h4{font-size:11.5px}
.footer a{font-size:12.5px}
.footer .small{font-size:12.5px}

/* tighten vertical rhythm */
.services{padding:64px 0}
.industries{padding:64px 0}
.coverage{padding:64px 0}

/* ===== FOOTER VISUAL POLISH ===== */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{
  align-items:flex-start;
}
.footer .brandmark{
  margin-bottom:6px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:16px;
}
