/* ════════════════════════════════════════════
   Paschall Logistics Pro — Base Theme CSS v3
   Header · Footer · Global · Elementor-ready
═════════════════════════════════════════════ */

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
    overflow-x: hidden;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--plt-font-b);
  color: var(--plt-text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--plt-red); text-decoration: none; transition: color var(--plt-t); }
a:hover { color: var(--plt-red-dk); }

/* ── CONTAINER ── */
.plt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.plt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--plt-font-h);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .88rem;
  border-radius: 6px;
  padding: 12px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--plt-t);
  white-space: nowrap;
  text-decoration: none;
}
.plt-btn-primary {
  background: var(--plt-red);
  color: #fff !important;
  border-color: var(--plt-red);
}
.plt-btn-primary:hover {
  background: var(--plt-red-dk);
  border-color: var(--plt-red-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,.35);
}
.plt-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(255,255,255,.3);
}
.plt-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
}
.plt-btn-dark {
  background: var(--plt-navy);
  color: #fff !important;
  border-color: var(--plt-navy);
}
.plt-btn-dark:hover {
  background: var(--plt-navy-2);
  transform: translateY(-2px);
}
.plt-btn-outline {
  background: transparent;
  color: var(--plt-navy) !important;
  border-color: var(--plt-navy);
}
.plt-btn-outline:hover {
  background: var(--plt-navy);
  color: #fff !important;
}
.plt-btn-sm { padding: 8px 16px; font-size: .78rem; }
.plt-btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ════════════════════
   TOPBAR
════════════════════ */
.plt-topbar {
  background: var(--plt-navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  font-family: var(--plt-font-b);
}
.plt-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.plt-topbar-left,
.plt-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plt-topbar a {
  color: rgba(255,255,255,.72);
  transition: color var(--plt-t);
}
.plt-topbar a:hover { color: #fff; }
.plt-topbar span   { color: rgba(255,255,255,.72); }
.plt-sep           { color: rgba(255,255,255,.25) !important; }
.plt-topbar-cta {
  color: var(--plt-red) !important;
  font-weight: 700;
  letter-spacing: .03em;
}
.plt-topbar-cta:hover { color: var(--plt-red-lt) !important; }

/* ════════════════════
   HEADER
════════════════════ */
.plt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--plt-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: background var(--plt-t), box-shadow var(--plt-t);
}
.plt-header.scrolled {
  background: rgba(6,15,30,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.plt-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

/* LOGO */
.plt-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.plt-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.plt-logo-text {
  display: flex;
  flex-direction: column;
}
.plt-logo-name {
  font-family: var(--plt-font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.plt-logo-tag {
  font-size: .6rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* NAV */
.plt-nav-wrap { flex: 1; display: flex; justify-content: center; }
.plt-nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.plt-nav li { position: relative; }
.plt-nav li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--plt-font-h);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  transition: all var(--plt-t);
}
.plt-nav li a:hover,
.plt-nav li.current-menu-item > a,
.plt-nav li.current-page-ancestor > a {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.plt-nav li.current-menu-item > a { color: var(--plt-red) !important; background: rgba(200,16,46,.1); }

/* Sub-menu */
.plt-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--plt-navy-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  list-style: none;
  margin: 0; padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .15s;
}
.plt-nav li:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.plt-nav .sub-menu li a {
  font-size: .82rem;
  padding: 8px 12px;
  border-radius: 5px;
  color: rgba(255,255,255,.75);
}
.plt-nav .sub-menu li a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* HEADER CTA */
.plt-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.plt-header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--plt-font-h);
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.85) !important;
  text-decoration: none;
  letter-spacing: .03em;
}
.plt-header-phone:hover { color: #fff !important; }
.plt-header-phone-icon { color: var(--plt-red); }

/* HAMBURGER */
.plt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 0 7px;
  flex-shrink: 0;
}
.plt-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--plt-t);
}
.plt-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.plt-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.plt-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════
   MOBILE NAV
════════════════════ */
.plt-mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--plt-navy);
  z-index: 1100;
  padding: 0;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.plt-mobile-nav.open { transform: translateX(0); }
.plt-mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plt-mobile-close:hover { background: rgba(255,255,255,.2); }
.plt-mobile-nav .plt-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 0;
  padding: 0 0 20px;
}
.plt-mobile-nav .plt-nav li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
.plt-mobile-nav .plt-nav li:last-child { border-bottom: none; }
.plt-mobile-nav .plt-nav li a {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.plt-mobile-nav .plt-nav li a:hover { background: rgba(255,255,255,.06); color: #fff; }
.plt-mobile-nav .sub-menu {
  position: static;
  opacity: 1;
  pointer-events: all;
  transform: none;
  box-shadow: none;
  border: none;
  background: rgba(255,255,255,.05);
  margin: 4px 0;
  border-radius: 6px;
}
.plt-mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.plt-mobile-nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.plt-mobile-nav-logo-text {
  font-family: var(--plt-font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.plt-mobile-portals {
  margin: 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.plt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.plt-overlay.active { opacity: 1; pointer-events: all; }

/* ════════════════════
   FOOTER
════════════════════ */
.plt-footer {
  background: var(--plt-navy);
  color: rgba(255,255,255,.75);
  font-family: var(--plt-font-b);
}
.plt-footer-top { padding: 72px 0 56px; }
.plt-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Brand col */
.plt-footer-brand {}
.plt-footer-logo-link { display: inline-block; margin-bottom: 16px; }
.plt-footer-logo { height: 52px; width: auto; object-fit: contain; }
.plt-footer-logo-text {
  font-family: var(--plt-font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.plt-footer-tagline {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin: 0 0 20px;
}
.plt-footer-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
}
.plt-partner-logo { height: 28px; width: auto; object-fit: contain; }

/* Link cols */
.plt-footer-col h5 {
  font-family: var(--plt-font-h);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0 0 16px;
}
.plt-footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plt-footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--plt-t);
}
.plt-footer-col ul li a:hover { color: #fff; }

/* Contact col */
.plt-footer-contact h5 { /* inherited */ }
.plt-fci {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .86rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.plt-fci-icon { flex-shrink: 0; width: 18px; margin-top: 2px; }
.plt-fci a { color: rgba(255,255,255,.65); }
.plt-fci a:hover { color: #fff; }
.plt-fci strong { color: rgba(255,255,255,.9); }
.plt-footer-open {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--plt-font-h);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--plt-red);
  background: rgba(200,16,46,.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(200,16,46,.25);
}

/* Footer bottom */
.plt-footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.plt-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.plt-footer-bottom-links {
  display: flex;
  gap: 20px;
}
.plt-footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}
.plt-footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ════════════════════
   ELEMENTOR PAGE BODY OVERRIDES
   Make Elementor content respect our brand vars
════════════════════ */
.elementor-section { --e-global-color-primary: var(--plt-navy); }

/* Default button style inside Elementor */
.elementor-button.elementor-button-default,
.elementor-button[data-bg="primary"] {
  background: var(--plt-red) !important;
  border-color: var(--plt-red) !important;
  font-family: var(--plt-font-h) !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
}

/* ════════════════════
   BLOG SINGLE
════════════════════ */
.plt-blog-single {
  padding: 80px 20px;
  max-width: 800px;
}
.plt-blog-single h1 { font-family: var(--plt-font-h); color: var(--plt-navy); margin-bottom: 8px; }
.plt-post-meta     { font-size: .85rem; color: var(--plt-muted); margin-bottom: 32px; }
.plt-post-content  { line-height: 1.8; }

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media (max-width: 1024px) {
  .plt-header-cta .plt-btn-ghost { display: none; }
}

@media (max-width: 900px) {
  .plt-nav-wrap    { display: none; }
  .plt-hamburger   { display: flex; }
  .plt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .plt-topbar        { display: none; }
  .plt-header-inner  { height: 64px; }
  .plt-logo-img      { height: 40px; }
  .plt-header-phone  { display: none; }
  .plt-footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .plt-footer-top    { padding: 48px 0 36px; }
  .plt-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── MOBILE IMPROVEMENTS ── */
@media (max-width: 900px) {
  .plt-header-inner { height: 64px; gap: 12px; }
  .plt-nav-wrap { display: none; }
  .plt-hamburger { display: flex; }
  .plt-header-cta .plt-btn-ghost { display: none; }
  .plt-header-phone span:last-child { display: none; }
  .plt-topbar-inner { flex-direction: column; height: auto; padding: 8px 0; gap: 4px; }
  .plt-topbar-left, .plt-topbar-right { gap: 8px; font-size: .72rem; }
  .plt-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .plt-footer-top { padding: 48px 0 36px; }
}

@media (max-width: 600px) {
  .plt-topbar { display: none; }
  .plt-header-inner { height: 60px; }
  .plt-logo-img { height: 38px; }
  .plt-header-cta .plt-btn { display: none; }
  .plt-header-phone { display: flex; }
  .plt-header-phone .plt-header-phone-icon { font-size: 1rem; }
  .plt-header-phone span:last-child { display: none; }
  .plt-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .plt-footer-top { padding: 40px 0 28px; }
  .plt-footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .plt-footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

}
