/* ============================================================
   GWX Cargo — Theme CSS  v1.1
   Navy #0A1931 | Gold #FFB800 | Inter
   Mobile-first, no horizontal overflow
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;font-size:16px;line-height:1.6;color:#1e293b;background:#fff;overflow-x:hidden;max-width:100vw}
body > .gwx-topbar:first-of-type,
body > .gwx-header:first-of-type{margin-top:0!important}
#gwx-page-wrap{padding-top:0}
img{max-width:100%;height:auto;display:block}
a{color:var(--gwx-navy);text-decoration:none;transition:color .2s}
a:hover{color:var(--gwx-gold)}
button,input,select,textarea{font-family:inherit}
ul{list-style:none}
/* Better touch UX */
button, [role="button"], .gwx-btn, .gwx-track-btn { -webkit-tap-highlight-color: transparent; }

/* ── Container ──────────────────────────────────────────── */
.gwx-container{width:100%;max-width:1200px;margin-inline:auto;padding-inline:20px}

/* ── Buttons ────────────────────────────────────────────── */
.gwx-btn{display:inline-flex;align-items:center;gap:.4rem;padding:.65rem 1.4rem;border-radius:6px;font-weight:700;font-size:.875rem;border:2px solid transparent;cursor:pointer;transition:all .22s;text-decoration:none;line-height:1.2;white-space:nowrap}
.gwx-btn-primary{background:var(--gwx-gold);color:#000;border-color:var(--gwx-gold)}
.gwx-btn-primary:hover{background:#e6a500;border-color:#e6a500;color:#000}
.gwx-btn-navy{background:var(--gwx-navy);color:#fff;border-color:var(--gwx-navy)}
.gwx-btn-navy:hover{background:var(--gwx-navy-2);border-color:var(--gwx-navy-2);color:#fff}
.gwx-btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.65)}
.gwx-btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}
.gwx-btn-sm{padding:.5rem 1rem;font-size:.8125rem}
.gwx-btn-lg{padding:.875rem 2rem;font-size:1rem}

/* ── Status badges ──────────────────────────────────────── */
.gwx-badge{display:inline-block;padding:.2rem .7rem;border-radius:9999px;font-size:.72rem;font-weight:700;letter-spacing:.03em}
.gwx-badge-pending    {background:#fef9c3;color:#854d0e}
.gwx-badge-created    {background:#e2e8f0;color:#475569}
.gwx-badge-picked_up  {background:#e0f2fe;color:#0369a1}
.gwx-badge-in_transit {background:#fef3c7;color:#92400e}
.gwx-badge-customs    {background:#ede9fe;color:#5b21b6}
.gwx-badge-out_for_delivery{background:#f0fdf4;color:#15803d}
.gwx-badge-delivered  {background:#dcfce7;color:#166534}
.gwx-badge-exception  {background:#fee2e2;color:#991b1b}
.gwx-badge-returned   {background:#ffedd5;color:#9a3412}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════ */
.gwx-topbar{background:var(--gwx-navy);color:rgba(255,255,255,.78);font-size:.8125rem;padding:.45rem 0;border-bottom:1px solid rgba(255,255,255,.07)}
.gwx-topbar__inner{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap}
.gwx-topbar__contact{display:flex;gap:1.25rem;flex-wrap:wrap}
.gwx-topbar__contact a,.gwx-topbar__contact span,.gwx-topbar__menu a{color:rgba(255,255,255,.78);display:inline-flex;align-items:center;gap:.35rem}
.gwx-topbar__contact a:hover,.gwx-topbar__menu a:hover{color:var(--gwx-gold)}
.gwx-topbar__menu{display:flex;gap:.875rem;align-items:center}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.gwx-header{background:#fff;z-index:1000;box-shadow:0 2px 14px rgba(15,23,42,.08);border-bottom:1px solid #eef2f7}
.gwx-header.is-sticky{position:sticky;top:0}
.gwx-header.no-topbar{border-top:none}
/* Prevent header from sliding under the WP admin toolbar when logged in.
   Use #wpadminbar presence to avoid "phantom" top spacing when admin bar is disabled. */
body.admin-bar #wpadminbar ~ .gwx-header.is-sticky{top:32px}
@media(max-width:782px){body.admin-bar #wpadminbar ~ .gwx-header.is-sticky{top:46px}}
.gwx-header__inner{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;padding-block:.75rem}

/* Logo */
.gwx-logo{display:flex;align-items:center;gap:.625rem;flex-shrink:0;text-decoration:none}
.gwx-logo img{height:48px;width:auto}
.gwx-logo__text{display:flex;flex-direction:column;line-height:1.15}
.gwx-logo__name{font-size:1.1rem;font-weight:800;color:var(--gwx-navy);letter-spacing:-.02em;white-space:nowrap}
.gwx-logo__name span{color:var(--gwx-gold)}
.gwx-logo__tagline{font-size:.6rem;color:#64748b;letter-spacing:.1em;text-transform:uppercase}

/* Nav */
.gwx-nav{flex:1;min-width:0;margin-left:auto}
.gwx-nav>ul{display:flex;gap:.125rem;align-items:center;flex-wrap:wrap}
.gwx-nav>ul>li{position:relative}
.gwx-nav>ul>li>a{display:flex;align-items:center;gap:.25rem;padding:.45rem .75rem;color:#334155;font-size:.8125rem;font-weight:600;border-radius:8px;transition:all .2s;white-space:nowrap}
.gwx-nav>ul>li>a:hover,.gwx-nav>ul>li.current-menu-item>a{color:var(--gwx-navy);background:#f1f5f9}
.gwx-nav>ul>li.current-menu-item>a{color:var(--gwx-navy);background:rgba(255,184,0,.18)}
.gwx-nav .sub-menu{position:absolute;top:calc(100% + 4px);left:0;min-width:210px;background:#fff;border-radius:8px;box-shadow:0 8px 32px rgba(0,0,0,.14);padding:.4rem 0;list-style:none;opacity:0;visibility:hidden;transform:translateY(6px);transition:all .18s;z-index:999}
.gwx-nav li:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.gwx-nav .sub-menu li a{display:block;padding:.55rem 1rem;color:#334155;font-size:.8125rem}
.gwx-nav .sub-menu li a:hover{color:var(--gwx-navy);background:#f1f5f9}

/* Header actions */
.gwx-header__actions{display:flex;align-items:center;justify-content:flex-end;gap:.625rem;flex-shrink:0;margin-left:auto}
.gwx-menu-toggle{display:none;background:none;border:none;cursor:pointer;color:var(--gwx-navy);font-size:1.25rem;padding:.2rem;line-height:1}
.gwx-btn-outline-dark{background:transparent;color:var(--gwx-navy);border-color:#cbd5e1}
.gwx-btn-outline-dark:hover{background:#f1f5f9;color:var(--gwx-navy);border-color:#94a3b8}
.gwx-icon-btn{width:40px;height:40px;border-radius:10px;border:1px solid #e2e8f0;background:#fff;display:inline-flex;align-items:center;justify-content:center;color:var(--gwx-navy);transition:all .2s}
.gwx-icon-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.gwx-menu-toggle{min-width:44px;min-height:44px;display:none;align-items:center;justify-content:center}

/* ═══════════════════════════════════════════════════════════
   HERO — single flat background (no stacked absolute layers,
   avoids stacking-context/rendering glitches on mobile GPUs)
═══════════════════════════════════════════════════════════ */
.gwx-hero{
  position:relative;overflow:hidden;min-height:520px;display:flex;align-items:center;
  background-color:#0A1931;
  background-image:linear-gradient(90deg,rgba(7,21,36,.93) 0%,rgba(7,21,36,.75) 55%,rgba(7,21,36,.35) 100%),linear-gradient(105deg,#071524 0%,#0A1931 45%,#0d2550 100%);
  background-size:cover;background-position:center;
}
.gwx-hero--photo{background-image:linear-gradient(90deg,rgba(7,21,36,.93) 0%,rgba(7,21,36,.75) 55%,rgba(7,21,36,.35) 100%),var(--gwx-hero-photo,none),linear-gradient(105deg,#071524 0%,#0A1931 45%,#0d2550 100%)}
.gwx-hero__wrap{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center;padding-block:4rem 3.5rem}
.gwx-hero__copy{max-width:520px}
.gwx-hero__h1{font-size:clamp(1.875rem,4.5vw,3.125rem);font-weight:800;color:#fff;line-height:1.12;letter-spacing:-.03em;margin-bottom:1.125rem}
.gwx-hero__h1 em{color:var(--gwx-gold);font-style:normal;display:block}
.gwx-hero__sub{font-size:.9375rem;color:rgba(255,255,255,.72);line-height:1.7;margin-bottom:1.875rem;max-width:440px}
.gwx-hero__ctas{display:flex;gap:.875rem;flex-wrap:wrap}

/* Hero buttons — match screenshot style exactly */
.gwx-hero__btn{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.375rem;border-radius:5px;font-weight:700;font-size:.8125rem;text-transform:uppercase;letter-spacing:.04em;cursor:pointer;transition:all .22s;text-decoration:none;white-space:nowrap;border:2px solid transparent}
.gwx-hero__btn--gold{background:var(--gwx-gold);color:#000;border-color:var(--gwx-gold)}
.gwx-hero__btn--gold:hover{background:#e6a500;color:#000}
.gwx-hero__btn--outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.6)}
.gwx-hero__btn--outline:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff}

/* Hero visual / branded panel */
.gwx-hero__visual{display:flex;align-items:center;justify-content:center}
.gwx-hero__photo{width:100%;max-height:440px;object-fit:cover;border-radius:12px;box-shadow:0 24px 60px rgba(0,0,0,.4)}
.gwx-hero__brand-panel{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2.5rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;backdrop-filter:blur(8px);text-align:center;min-height:280px;width:100%}
.gwx-hero__brand-name{font-size:1.5rem;font-weight:800;color:#fff;letter-spacing:.04em;margin-top:1rem;line-height:1.2;text-transform:uppercase}
.gwx-hero__brand-name span{color:var(--gwx-gold)}
.gwx-hero__brand-tag{font-size:.8125rem;color:rgba(255,255,255,.6);margin-top:.5rem;letter-spacing:.06em}

/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP — 4 icon boxes, white bg
═══════════════════════════════════════════════════════════ */
.gwx-features-strip{background:#fff;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0;padding:1.375rem 0}
.gwx-features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.gwx-feat{display:flex;align-items:flex-start;gap:.875rem;padding:1rem 1.5rem;border-right:1px solid #e2e8f0}
.gwx-feat:last-child{border-right:none}
.gwx-feat__icon{width:42px;height:42px;border-radius:50%;border:2px solid var(--gwx-gold);display:flex;align-items:center;justify-content:center;color:var(--gwx-gold);font-size:1rem;flex-shrink:0}
.gwx-feat__title{font-size:.9rem;font-weight:700;color:var(--gwx-navy);margin-bottom:.2rem}
.gwx-feat__desc{font-size:.8rem;color:#64748b;line-height:1.5}

/* ═══════════════════════════════════════════════════════════
   SECTION BASES
═══════════════════════════════════════════════════════════ */
.gwx-section{padding:4rem 0}
.gwx-section--white{background:#fff}
.gwx-section--gray{background:#f8fafc}
.gwx-section--navy{background:var(--gwx-navy);color:#fff}
.gwx-section-label{display:inline-block;color:var(--gwx-gold);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.5rem}
.gwx-section-label--light{color:rgba(255,184,0,.9)}
.gwx-section-title{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:800;color:var(--gwx-navy);letter-spacing:-.025em;line-height:1.18;margin-bottom:.75rem}
.gwx-section-title--light{color:#fff}
.gwx-section-desc{color:#64748b;font-size:.9375rem;line-height:1.65}

/* Services header — 2 col */
.gwx-svc-header{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:end;margin-bottom:2.5rem}
.gwx-svc-header__right{display:flex;flex-direction:column;align-items:flex-start;gap:1rem}
.gwx-svc-header__right p{color:#64748b;font-size:.9rem;line-height:1.65}

/* Services 4-col × 2-row grid */
.gwx-svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.gwx-svc-card{display:flex;align-items:flex-start;gap:.875rem;padding:1.25rem;border:1px solid #e2e8f0;border-radius:10px;background:#fff;transition:box-shadow .22s,transform .22s}
.gwx-svc-card:hover{box-shadow:0 8px 28px rgba(10,25,49,.1);transform:translateY(-3px)}
.gwx-svc-card__icon{width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,var(--gwx-navy),var(--gwx-navy-2));display:flex;align-items:center;justify-content:center;color:var(--gwx-gold);font-size:1.0625rem;flex-shrink:0}
.gwx-svc-card__title{font-size:.875rem;font-weight:700;color:var(--gwx-navy);margin-bottom:.25rem;line-height:1.35}
.gwx-svc-card__desc{font-size:.78rem;color:#64748b;line-height:1.55}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US — navy bg, 4 gold circles
═══════════════════════════════════════════════════════════ */
.gwx-why{background:var(--gwx-navy);padding:4.5rem 0}
.gwx-why__inner{display:grid;grid-template-columns:1fr 1.6fr;gap:3rem;align-items:center}
.gwx-why__desc{color:rgba(255,255,255,.72);font-size:.9375rem;margin-top:.75rem;line-height:1.7;max-width:380px}
.gwx-why__stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.gwx-why__stat{display:flex;flex-direction:column;align-items:center;gap:.75rem}
.gwx-why__circle{width:110px;height:110px;border-radius:50%;border:3px solid var(--gwx-gold);background:rgba(255,184,0,.08);display:flex;align-items:center;justify-content:center}
.gwx-why__num{font-size:1.3rem;font-weight:800;color:var(--gwx-gold);text-align:center;line-height:1.1}
.gwx-why__lbl{font-size:.78rem;font-weight:600;color:rgba(255,255,255,.75);text-align:center;text-transform:uppercase;letter-spacing:.05em;line-height:1.4}

/* ═══════════════════════════════════════════════════════════
   INLINE QUOTE FORM — white card
═══════════════════════════════════════════════════════════ */
.gwx-inline-quote{background:#fff;padding:2.5rem 0;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0}
.gwx-inline-quote__inner{display:flex;flex-wrap:wrap;gap:1.75rem;align-items:flex-start}
.gwx-inline-quote__label{flex:0 0 220px}
.gwx-inline-quote__label h3{font-size:1.125rem;font-weight:800;color:var(--gwx-navy);margin-bottom:.3rem}
.gwx-inline-quote__label p{font-size:.8125rem;color:#64748b}
.gwx-inline-quote__form{flex:1 1 480px;display:flex;flex-wrap:wrap;gap:.625rem;align-items:center;min-width:0}
.gwx-inline-quote__form input,
.gwx-inline-quote__form select{flex:1 1 150px;min-width:130px;padding:.65rem .875rem;border:1.5px solid #e2e8f0;border-radius:6px;font-size:.875rem;outline:none;color:#1e293b;background:#fff;transition:border-color .2s}
.gwx-inline-quote__form input:focus,.gwx-inline-quote__form select:focus{border-color:var(--gwx-navy)}
.gwx-inline-quote__form input::placeholder{color:#94a3b8}
.gwx-inline-quote__btn{flex:0 0 auto;background:var(--gwx-gold);color:#000;border:none;border-radius:6px;padding:.7rem 1.25rem;font-size:.8125rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em;cursor:pointer;white-space:nowrap;transition:background .2s}
.gwx-inline-quote__btn:hover{background:#e6a500}
.gwx-quote-result{margin-top:.75rem;width:100%}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════════════ */
.gwx-dashboard{display:grid;gap:1.5rem}
.gwx-dashboard-hero{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;margin-bottom:1.25rem}
.gwx-dashboard-hero__title{font-size:1.375rem;font-weight:800;color:var(--gwx-navy);margin-bottom:.25rem}
.gwx-dashboard-hero__desc{color:#64748b;font-size:.9rem}
.gwx-dashboard-hero__actions{display:flex;gap:.75rem;flex-wrap:wrap}
.gwx-dash-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gwx-dash-stats--5{grid-template-columns:repeat(5,1fr)}
.gwx-dash-stat{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:1.25rem 1.375rem;display:flex;align-items:center;gap:.875rem}
.gwx-dash-stat__icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.125rem;flex-shrink:0}
.gwx-dash-stat__icon--navy{background:rgba(10,25,49,.08);color:var(--gwx-navy)}
.gwx-dash-stat__icon--gold{background:rgba(255,184,0,.15);color:#b38000}
.gwx-dash-stat__icon--green{background:#dcfce7;color:#16a34a}
.gwx-dash-stat__icon--red{background:#fee2e2;color:#dc2626}
.gwx-dash-stat__num{font-size:1.625rem;font-weight:800;color:var(--gwx-navy);line-height:1}
.gwx-dash-stat__lbl{font-size:.78rem;color:#64748b}
.gwx-admin-overview{display:grid;gap:1rem}
.gwx-admin-overview__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gwx-admin-kpi{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);border:1px solid #e2e8f0;border-radius:14px;padding:1.125rem;display:flex;gap:.875rem;align-items:flex-start}
.gwx-admin-kpi__icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.gwx-admin-kpi__value{font-size:1.55rem;font-weight:800;color:var(--gwx-navy);line-height:1}
.gwx-admin-kpi__label{font-size:.82rem;font-weight:700;color:var(--gwx-navy);margin-top:.25rem}
.gwx-admin-kpi__meta{font-size:.78rem;color:#64748b;margin-top:.35rem;line-height:1.45}
.gwx-admin-kpi--warning .gwx-admin-kpi__icon{background:#fef3c7;color:#92400e}
.gwx-admin-kpi--gold .gwx-admin-kpi__icon{background:rgba(255,184,0,.15);color:#b38000}
.gwx-admin-kpi--danger .gwx-admin-kpi__icon{background:#fee2e2;color:#b91c1c}
.gwx-admin-kpi--success .gwx-admin-kpi__icon{background:#dcfce7;color:#15803d}
.gwx-admin-panels{display:grid;grid-template-columns:1.2fr 1fr;gap:1rem}
.gwx-admin-panel{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:1.125rem}
.gwx-admin-panel__head{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1rem;flex-wrap:wrap}
.gwx-admin-panel__head h3{font-size:1rem;font-weight:800;color:var(--gwx-navy);margin-bottom:.2rem}
.gwx-admin-panel__head p{font-size:.84rem;color:#64748b}
.gwx-admin-queue{display:grid;gap:.75rem}
.gwx-admin-queue__item{display:flex;justify-content:space-between;gap:1rem;align-items:center;border:1px solid #e2e8f0;border-radius:12px;padding:.875rem 1rem;background:#f8fafc}
.gwx-admin-queue__meta{display:grid;gap:.3rem}
.gwx-admin-queue__top{display:flex;align-items:center;gap:.625rem;flex-wrap:wrap}
.gwx-admin-queue__top code{font-size:.82rem;font-weight:700;color:var(--gwx-navy)}
.gwx-admin-queue__route{font-size:.88rem;color:#475569}
.gwx-admin-queue__actions{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:flex-end}
.gwx-admin-queue__empty{padding:1rem;border:1px dashed #cbd5e1;border-radius:12px;color:#64748b;background:#f8fafc}

.gwx-table-wrap{background:#fff;border:1px solid #e2e8f0;border-radius:12px;overflow:hidden}
.gwx-table-head{padding:1.125rem 1.375rem;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #e2e8f0;flex-wrap:wrap;gap:.75rem}
.gwx-table-head h3{font-size:.9375rem;font-weight:700;color:var(--gwx-navy)}
.gwx-dash-tools{display:flex;gap:.625rem;align-items:center}
.gwx-table{width:100%;border-collapse:collapse;min-width:560px}
.gwx-table th{background:#f8fafc;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:#64748b;padding:.625rem .875rem;text-align:left;white-space:nowrap}
.gwx-table td{padding:.875rem;border-bottom:1px solid #f1f5f9;font-size:.875rem;vertical-align:middle}
.gwx-table tr:last-child td{border-bottom:none}
.gwx-table tr:hover td{background:#fafafa}
.gwx-table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.gwx-dash-cards{display:none}
.gwx-dash-card{background:#fff;border-top:1px solid #e2e8f0;padding:1rem}
.gwx-dash-card__top{display:flex;justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:.7rem}
.gwx-dash-card__tracking{font-size:.82rem;font-weight:700;word-break:break-all}
.gwx-dash-card__route{font-size:.94rem;font-weight:700;color:var(--gwx-navy);line-height:1.45}
.gwx-dash-card__route span{color:var(--gwx-gold)}
.gwx-dash-card__meta{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-top:.85rem}
.gwx-dash-card__meta label{display:block;font-size:.7rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.15rem}
.gwx-dash-card__meta strong{font-size:.88rem;color:var(--gwx-navy)}
.gwx-dash-card__actions{display:grid;grid-template-columns:1fr 1fr;gap:.625rem;margin-top:1rem}
.gwx-dash-card__actions .gwx-btn{justify-content:center;width:100%}
.gwx-dash-card-empty{padding:1.25rem;color:#64748b;text-align:center}
.gwx-admin-modal{width:min(100%,1080px);max-height:min(90vh,980px);overflow:auto}
.gwx-admin-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:.875rem}
.gwx-admin-summary__item{padding:.9rem 1rem;border:1px solid #e2e8f0;border-radius:12px;background:#f8fafc}
.gwx-admin-summary__item label{display:block;font-size:.72rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.3rem}
.gwx-admin-summary__item strong{font-size:.95rem;color:var(--gwx-navy);line-height:1.4;word-break:break-word}
.gwx-admin-block{border:1px solid #e2e8f0;border-radius:14px;padding:1rem 1rem 1.125rem;background:#fff}
.gwx-admin-block__head{margin-bottom:.875rem}
.gwx-admin-block__head h4{font-size:.98rem;font-weight:800;color:var(--gwx-navy);margin-bottom:.2rem}
.gwx-admin-block__head p{font-size:.82rem;color:#64748b;line-height:1.45}
.gwx-admin-form-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.875rem}
.gwx-admin-form-grid--3{grid-template-columns:repeat(3,1fr)}
.gwx-admin-form-grid__wide{grid-column:span 3}
.gwx-admin-events{display:grid;gap:.75rem}
.gwx-admin-events__head{display:flex;justify-content:space-between;align-items:center;gap:.75rem}
.gwx-admin-event-row{border:1px solid #e2e8f0;border-radius:12px;padding:12px;background:#f8fafc}
.gwx-admin-event-grid{display:grid;grid-template-columns:2fr 2fr 3fr 1fr 1fr 1fr;gap:8px;align-items:end}
.gwx-admin-event-grid label{display:block;font-size:.72rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.04em;margin-bottom:4px}
.gwx-admin-event-grid input{width:100%}
.gwx-admin-event-remove{margin-top:8px;border:none;background:none;color:#b91c1c;font-weight:700;cursor:pointer}

/* ═══════════════════════════════════════════════════════════
   TRACKING
═══════════════════════════════════════════════════════════ */
.gwx-track-panel{background:var(--gwx-navy);border-radius:16px;padding:2rem;display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.gwx-track-panel h2{color:#fff;font-size:1.375rem;font-weight:800;margin-bottom:.625rem}
.gwx-track-panel>div>p{color:rgba(255,255,255,.7);margin-bottom:1.25rem;font-size:.9rem}
.gwx-track-form-row{display:flex;gap:.5rem}
.gwx-track-input{background:rgba(255,255,255,.09);border:1.5px solid rgba(255,255,255,.2);border-radius:8px;padding:.75rem .9375rem;color:#fff;font-size:.9375rem;outline:none;font-family:inherit;transition:border-color .2s;width:100%}
.gwx-track-input::placeholder{color:rgba(255,255,255,.38)}
.gwx-track-input:focus{border-color:var(--gwx-gold)}
.gwx-track-btn{background:var(--gwx-gold);color:#000;border:none;border-radius:8px;padding:.75rem 1.25rem;font-size:.9rem;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:.4rem;transition:background .2s;font-family:inherit;white-space:nowrap}
.gwx-track-btn:hover{background:#e6a500}
.gwx-tracking-result{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #e2e8f0;margin-top:1.25rem}
.gwx-tr-header{background:var(--gwx-navy);padding:1rem 1.375rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem}
.gwx-tr-header h3{color:#fff;font-size:.9375rem;font-weight:700}
.gwx-tr-number{color:var(--gwx-gold);font-size:.875rem;font-weight:600;font-family:monospace}
.gwx-tr-body{padding:1.375rem}
.gwx-tr-meta{display:grid;grid-template-columns:repeat(3,1fr);gap:.875rem;padding-bottom:1.125rem;margin-bottom:1.125rem;border-bottom:1px solid #e2e8f0}
.gwx-tr-meta-item label{font-size:.7rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;display:block;margin-bottom:.2rem}
.gwx-tr-meta-item span{font-size:.9rem;font-weight:600;color:var(--gwx-navy)}
#gwx-shipment-map,#gwx-map,.gwx-map-embed{border-radius:10px;overflow:hidden}
.gwx-route-summary{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:.875rem;margin:0 0 1rem}
.gwx-route-summary__item{padding:.9rem 1rem;border:1px solid #e2e8f0;border-radius:12px;background:#f8fafc}
.gwx-route-summary__item label{display:block;font-size:.7rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem}
.gwx-route-summary__item strong{font-size:.92rem;color:var(--gwx-navy);line-height:1.45}
.gwx-map-fallback{height:100%;display:flex;flex-direction:column;background:#f8fafc}
.gwx-map-fallback__note{padding:.75rem 1rem;background:#eff6ff;border-bottom:1px solid #bfdbfe;color:#1e40af;font-size:.82rem;font-weight:600}
.gwx-map-fallback__frame{width:100%;height:100%;min-height:320px;border:0;display:block;flex:1}
.gwx-progress{margin-bottom:1.5rem}
.gwx-progress-steps{display:flex;position:relative;justify-content:space-between}
.gwx-progress-steps::before{content:'';position:absolute;top:17px;left:0;right:0;height:3px;background:#e2e8f0;z-index:0}
.gwx-progress-fill{position:absolute;top:17px;left:0;height:3px;background:var(--gwx-gold);z-index:1;transition:width .5s ease}
.gwx-progress-step{display:flex;flex-direction:column;align-items:center;position:relative;z-index:2}
.gwx-progress-step-dot{width:36px;height:36px;border-radius:50%;background:#fff;border:3px solid #e2e8f0;display:flex;align-items:center;justify-content:center;font-size:.7rem;color:#64748b;transition:all .3s;margin-bottom:.4rem}
.gwx-progress-step.active .gwx-progress-step-dot{background:var(--gwx-gold);border-color:var(--gwx-gold);color:#000}
.gwx-progress-step.done .gwx-progress-step-dot{background:var(--gwx-navy);border-color:var(--gwx-navy);color:#fff}
.gwx-progress-step-lbl{font-size:.625rem;font-weight:600;color:#64748b;text-align:center;max-width:56px;line-height:1.3}
.gwx-progress-step.active .gwx-progress-step-lbl{color:var(--gwx-navy)}
.gwx-events{margin-top:.875rem}
.gwx-event{display:flex;gap:.875rem;padding:.75rem 0;border-bottom:1px solid #f1f5f9}
.gwx-event:last-child{border-bottom:none}
.gwx-event__dot{width:10px;height:10px;border-radius:50%;background:#e2e8f0;flex-shrink:0;margin-top:.375rem}
.gwx-event:first-child .gwx-event__dot{background:var(--gwx-gold)}
.gwx-event__time{font-size:.78rem;color:#64748b;white-space:nowrap;min-width:110px}
.gwx-event__desc{font-size:.875rem;font-weight:500;color:var(--gwx-navy)}
.gwx-event__loc{font-size:.78rem;color:#64748b;display:flex;align-items:center;gap:.2rem;margin-top:.125rem}

/* ═══════════════════════════════════════════════════════════
   QUOTE FORM
═══════════════════════════════════════════════════════════ */
.gwx-quote-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden}
.gwx-quote-card__header{background:var(--gwx-navy);padding:1.375rem 1.75rem;display:flex;align-items:center;gap:.625rem}
.gwx-quote-card__header h2{color:#fff;font-size:1.125rem;margin:0}
.gwx-quote-card__header i{color:var(--gwx-gold);font-size:1.125rem}
.gwx-quote-body{padding:1.75rem}
.gwx-form-row{display:grid;grid-template-columns:1fr 1fr;gap:.875rem;margin-bottom:.875rem}
.gwx-form-row.three{grid-template-columns:1fr 1fr 1fr}
.gwx-form-row.full{grid-template-columns:1fr}
.gwx-field{display:flex;flex-direction:column;gap:.3rem}
.gwx-field label{font-size:.78rem;font-weight:600;color:var(--gwx-navy)}
.gwx-field input,.gwx-field select,.gwx-field textarea{padding:.65rem .875rem;border:1.5px solid #e2e8f0;border-radius:7px;font-size:.9rem;outline:none;font-family:inherit;background:#fff;color:#1e293b;transition:border-color .2s}
.gwx-field input:focus,.gwx-field select:focus,.gwx-field textarea:focus{border-color:var(--gwx-navy)}
.gwx-field-group{background:#f8fafc;border-radius:8px;padding:1.125rem;margin-bottom:.875rem}
.gwx-field-group h4{font-size:.72rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.75rem;display:flex;align-items:center;gap:.3rem}
.gwx-field-group h4 i{color:var(--gwx-gold)}
.gwx-quote-result{background:var(--gwx-navy);border-radius:10px;padding:1.375rem;margin-top:1.25rem;display:none}
.gwx-quote-result.visible{display:block}
.gwx-quote-result h3{color:var(--gwx-gold);margin-bottom:.875rem;font-size:1rem}
.gwx-quote-result-row{display:flex;justify-content:space-between;color:rgba(255,255,255,.82);font-size:.875rem;padding:.25rem 0}
.gwx-quote-result-row.total{color:#fff;font-weight:800;font-size:.9375rem;padding-top:.625rem;border-top:1px solid rgba(255,255,255,.14);margin-top:.2rem}
.gwx-quote-result-row.total span:last-child{color:var(--gwx-gold);font-size:1rem}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.gwx-footer{background:#05101f;color:rgba(255,255,255,.78)}
.gwx-footer__main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr 1.4fr;gap:2.5rem;padding:3.5rem 0 2.5rem}
.gwx-footer__logo-link{display:inline-flex;align-items:center;max-width:100%;margin-bottom:.75rem}
.gwx-footer__logo-image{display:block;max-height:64px;width:auto;max-width:100%}
.gwx-footer__brand .custom-logo-link{display:inline-flex;align-items:center;margin-bottom:.75rem}
.gwx-footer__brand .custom-logo{display:block;max-height:64px;width:auto}
.gwx-footer__brand p{font-size:.85rem;line-height:1.7;color:rgba(255,255,255,.6);margin-block:.75rem 1.125rem}
.gwx-footer__social{display:flex;gap:.5rem}
.gwx-footer__social a{width:34px;height:34px;border-radius:7px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);font-size:.875rem;transition:all .2s}
.gwx-footer__social a:hover{background:var(--gwx-gold);color:#000}
.gwx-footer__col h4{color:#fff;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em;margin-bottom:.875rem;padding-bottom:.5rem;border-bottom:2px solid var(--gwx-gold);display:inline-block}
.gwx-footer__col ul{display:flex;flex-direction:column;gap:.4rem}
.gwx-footer__col ul a{color:rgba(255,255,255,.62);font-size:.85rem;transition:color .2s;display:flex;align-items:center;gap:.35rem}
.gwx-footer__col ul a:hover{color:var(--gwx-gold)}
.gwx-footer__contact-item{display:flex;gap:.5rem;margin-bottom:.5rem;font-size:.85rem;color:rgba(255,255,255,.65);align-items:flex-start}
.gwx-footer__contact-item i{color:var(--gwx-gold);margin-top:.2rem;flex-shrink:0;font-size:.8rem}
.gwx-footer__newsletter input{width:100%;padding:.6rem .875rem;border:1.5px solid rgba(255,255,255,.15);border-radius:6px 0 0 6px;background:rgba(255,255,255,.07);color:#fff;font-size:.85rem;outline:none;border-right:none}
.gwx-footer__newsletter input::placeholder{color:rgba(255,255,255,.35)}
.gwx-footer__newsletter-row{display:flex}
.gwx-footer__newsletter button{background:var(--gwx-gold);border:none;border-radius:0 6px 6px 0;padding:.6rem .875rem;cursor:pointer;color:#000;transition:background .2s}
.gwx-footer__newsletter button:hover{background:#e6a500}
.gwx-footer__bottom{border-top:1px solid rgba(255,255,255,.07);display:flex;justify-content:space-between;align-items:center;padding-block:1.125rem;font-size:.78rem;color:rgba(255,255,255,.42);flex-wrap:wrap;gap:.625rem}
.gwx-footer__bottom a{color:rgba(255,255,255,.42)}
.gwx-footer__bottom a:hover{color:var(--gwx-gold)}
.gwx-footer__bottom-links{display:flex;gap:1.25rem}

/* ═══════════════════════════════════════════════════════════
   LOCATIONS DIRECTORY
═══════════════════════════════════════════════════════════ */
#gwx-locations-map{height:440px;border-radius:12px;overflow:hidden}
.gwx-loc-filters{display:flex;gap:.75rem;margin-bottom:1.5rem;flex-wrap:wrap}
.gwx-loc-filters input,.gwx-loc-filters select{padding:.65rem .875rem;border:1.5px solid #e2e8f0;border-radius:8px;font-size:.875rem;outline:none;background:#fff;color:#1e293b}
.gwx-loc-filters input{flex:1;min-width:220px}
.gwx-loc-filters select{min-width:180px}
.gwx-loc-filters input:focus,.gwx-loc-filters select:focus{border-color:var(--gwx-navy)}
.gwx-loc-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem}
.gwx-loc-card{display:flex;gap:.875rem;padding:1.25rem;border:1px solid #e2e8f0;border-radius:10px;background:#fff;transition:box-shadow .2s,transform .2s}
.gwx-loc-card:hover{box-shadow:0 8px 24px rgba(10,25,49,.08);transform:translateY(-2px)}
.gwx-loc-card__icon{width:42px;height:42px;border-radius:10px;background:linear-gradient(135deg,var(--gwx-navy),var(--gwx-navy-2));display:flex;align-items:center;justify-content:center;color:var(--gwx-gold);font-size:1rem;flex-shrink:0}
.gwx-loc-card h3{font-size:.9rem;font-weight:700;color:var(--gwx-navy);margin-bottom:.2rem;line-height:1.3}
.gwx-loc-card__type{display:inline-block;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#b38000;background:#fef9c3;padding:.1rem .5rem;border-radius:9999px;margin-bottom:.5rem}
.gwx-loc-card p{font-size:.78rem;color:#64748b;display:flex;align-items:center;gap:.35rem;margin-top:.2rem;line-height:1.5}
.gwx-loc-card p i{color:var(--gwx-gold);width:12px;flex-shrink:0}

/* ═══════════════════════════════════════════════════════════
   INVOICE
═══════════════════════════════════════════════════════════ */
.gwx-invoice{font-size:.875rem;max-width:860px;margin:0 auto}
.gwx-invoice-header{background:var(--gwx-navy);color:#fff;padding:1.75rem 2.25rem;display:flex;justify-content:space-between;align-items:flex-start;border-radius:10px 10px 0 0;flex-wrap:wrap;gap:1rem}
.gwx-invoice-header h1{font-size:1.75rem;font-weight:800;color:var(--gwx-gold);letter-spacing:-.03em}
.gwx-invoice-body{background:#fff;border:1px solid #e2e8f0;padding:1.75rem 2.25rem;border-radius:0 0 10px 10px}
.gwx-invoice-parties{display:grid;grid-template-columns:1fr 1fr;gap:1.75rem;margin-bottom:1.375rem}
.gwx-invoice-party h4{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#64748b;margin-bottom:.35rem}
.gwx-invoice-table{width:100%;border-collapse:collapse;margin-block:1.375rem}
.gwx-invoice-table th{background:var(--gwx-navy);color:#fff;padding:.625rem .875rem;font-size:.78rem;text-align:left}
.gwx-invoice-table td{padding:.625rem .875rem;border-bottom:1px solid #e2e8f0}
.gwx-invoice-total{text-align:right;padding-top:.875rem;border-top:2px solid var(--gwx-navy)}
.gwx-grand-total{font-size:1.25rem;font-weight:800;color:var(--gwx-navy)}

/* ═══════════════════════════════════════════════════════════
   NOTICES & HELPERS
═══════════════════════════════════════════════════════════ */
.gwx-notice{padding:.75rem 1rem;border-radius:7px;margin-bottom:.875rem;display:flex;align-items:flex-start;gap:.5rem;font-size:.875rem}
.gwx-notice--success{background:#f0fdf4;color:#166534;border:1px solid #bbf7d0}
.gwx-notice--error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}
.gwx-notice--info{background:#eff6ff;color:#1e40af;border:1px solid #bfdbfe}
.gwx-notice--warning{background:#fffbeb;color:#92400e;border:1px solid #fde68a}
.gwx-notice i{flex-shrink:0;margin-top:.1rem}
.gwx-notice button{border:none;background:none;color:inherit;font-weight:700;text-decoration:underline;cursor:pointer;padding:0}
.gwx-spinner{display:inline-block;width:18px;height:18px;border:2px solid rgba(10,25,49,.15);border-top-color:var(--gwx-navy);border-radius:50%;animation:gwxSpin .65s linear infinite;vertical-align:middle}
@keyframes gwxSpin{to{transform:rotate(360deg)}}
.gwx-hidden{display:none!important}
body.gwx-modal-open{overflow:hidden}

/* ═══════════════════════════════════════════════════════════
   AUTH MODALS
═══════════════════════════════════════════════════════════ */
.gwx-modal-backdrop{position:fixed;inset:0;background:rgba(2,12,33,.55);z-index:5000}
.gwx-modal{position:fixed;inset:0;display:grid;place-items:center;padding:20px;z-index:5001}
.gwx-modal__dialog{position:relative;width:min(100%,460px);background:#fff;border-radius:18px;border:1px solid #e2e8f0;box-shadow:0 24px 70px rgba(2,12,33,.2);padding:28px}
.gwx-modal__close{position:absolute;top:10px;right:10px;width:38px;height:38px;border:none;background:#f8fafc;border-radius:10px;color:#334155;font-size:22px;cursor:pointer}
.gwx-modal__header{margin-bottom:18px}
.gwx-modal__header h3{font-size:1.45rem;font-weight:800;color:var(--gwx-navy);margin-bottom:4px}
.gwx-modal__header p{font-size:.92rem;color:#64748b}
.gwx-modal__form{display:grid;gap:14px}
.gwx-modal__check{display:flex;align-items:center;gap:10px;font-size:.9rem;color:#475569}
.gwx-modal__check input{width:16px;height:16px}
.gwx-modal__switch{margin-top:16px;font-size:.92rem;color:#64748b;text-align:center}
.gwx-modal__switch button{border:none;background:none;color:var(--gwx-navy);font-weight:700;cursor:pointer}
.gwx-map-package{width:34px;height:34px;border-radius:50%;background:var(--gwx-gold);border:3px solid #fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(255,184,0,.35)}
.gwx-map-package span{font-size:16px;line-height:1}
.gwx-route-legend__pkg{width:22px;height:22px;border-radius:50%;background:var(--gwx-gold);display:inline-flex;align-items:center;justify-content:center}

/* ═══════════════════════════════════════════════════════════
   BLOCK EDITOR COLOURS
═══════════════════════════════════════════════════════════ */
.has-gwx-navy-background-color{background-color:var(--gwx-navy)!important}
.has-gwx-gold-background-color{background-color:var(--gwx-gold)!important}
.has-gwx-navy-color{color:var(--gwx-navy)!important}
.has-gwx-gold-color{color:var(--gwx-gold)!important}
.has-gwx-white-color{color:#fff!important}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — tablet 768–1024
═══════════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .gwx-hero__wrap{grid-template-columns:1fr;gap:2rem}
  .gwx-hero__visual{display:none}
  .gwx-hero__copy{max-width:100%}
  .gwx-hero__sub{max-width:100%}
  .gwx-svc-grid{grid-template-columns:repeat(2,1fr)}
  .gwx-svc-header{grid-template-columns:1fr}
  .gwx-why__inner{grid-template-columns:1fr}
  .gwx-why__stats{grid-template-columns:repeat(4,1fr)}
  .gwx-why__desc{max-width:100%}
  .gwx-inline-quote__label{flex-basis:100%}
  .gwx-inline-quote__form{flex-basis:100%}
  .gwx-footer__main{grid-template-columns:1fr 1fr;gap:2rem}
  .gwx-dash-stats{grid-template-columns:repeat(2,1fr)}
  .gwx-admin-overview__grid{grid-template-columns:repeat(2,1fr)}
  .gwx-admin-panels{grid-template-columns:1fr}
  .gwx-admin-summary,.gwx-admin-form-grid,.gwx-admin-form-grid--3{grid-template-columns:repeat(2,1fr)}
  .gwx-admin-form-grid__wide{grid-column:span 2}
  .gwx-track-panel{grid-template-columns:1fr}
  .gwx-features-grid{grid-template-columns:1fr 1fr}
  .gwx-feat{border-right:none;border-bottom:1px solid #e2e8f0;padding:.875rem 1rem}
  .gwx-feat:nth-child(odd){border-right:1px solid #e2e8f0}
  .gwx-feat:last-child,.gwx-feat:nth-last-child(2){border-bottom:none}
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — mobile <768px
═══════════════════════════════════════════════════════════ */
@media(max-width:767px){
  /* Prevent ANY horizontal overflow */
  html,body{overflow-x:hidden;max-width:100vw}
  html{background:var(--gwx-navy)}
  body{background:#fff}
  .gwx-container{padding-inline:16px}

  /* Base mobile typography & tap targets (avoid iOS zoom) */
  body{font-size:16px}
  button,input,select,textarea{font-size:16px}
  .gwx-btn,.gwx-track-btn{min-height:44px}

  /* Topbar (keep visible on mobile) */
  .gwx-topbar{display:block}
  .gwx-topbar__inner{flex-direction:column;align-items:flex-start}
  .gwx-topbar__contact{gap:.75rem}

  /* Header */
  .gwx-header.is-sticky{top:0!important}
  .gwx-header{margin-top:0!important}
  .gwx-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;z-index:998;padding:.75rem 1rem;box-shadow:0 8px 24px rgba(15,23,42,.15);border-top:1px solid #eef2f7}
  .gwx-nav.is-open{display:block}
  .gwx-nav>ul{flex-direction:column;gap:.125rem}
  .gwx-nav>ul>li>a{padding:.6rem .875rem;font-size:.875rem}
  .gwx-nav .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:#f8fafc;border-radius:10px;margin:.25rem 0 .25rem .875rem;padding:.25rem 0;border:1px solid #eef2f7}
  .gwx-nav .sub-menu li a{color:#334155;font-size:.8125rem}
  .gwx-nav .sub-menu li a:hover{background:#eef2f7;color:var(--gwx-navy)}
  .gwx-menu-toggle{display:flex}
  .gwx-header__inner{position:relative;justify-content:space-between}
  .gwx-logo img{height:40px}

  /* Hero */
  .gwx-hero{min-height:auto}
  .gwx-hero__wrap{padding-block:2.5rem 2rem}
  .gwx-hero__h1{font-size:1.75rem}
  .gwx-hero__sub{font-size:.875rem}
  .gwx-hero__ctas{flex-direction:column;gap:.625rem}
  .gwx-hero__btn{justify-content:center;text-align:center}
  .gwx-hero__btn{width:100%}

  /* Features */
  .gwx-features-grid{grid-template-columns:1fr 1fr}
  .gwx-feat{padding:.75rem .875rem;border-right:none;border-bottom:1px solid #e2e8f0}
  .gwx-feat:nth-child(odd){border-right:1px solid #e2e8f0}
  .gwx-feat:last-child,.gwx-feat:nth-last-child(2){border-bottom:none}
  .gwx-feat__icon{width:36px;height:36px;font-size:.875rem}

  /* Services */
  .gwx-svc-grid{grid-template-columns:1fr}
  .gwx-svc-header{grid-template-columns:1fr;gap:1rem}
  .gwx-section{padding:2.5rem 0}
  .gwx-section-title{font-size:1.4rem}

  /* Why choose us */
  .gwx-why{padding:2.5rem 0}
  .gwx-why__stats{grid-template-columns:1fr 1fr;gap:1rem}
  .gwx-why__circle{width:88px;height:88px}
  .gwx-why__num{font-size:1.05rem}

  /* Inline quote */
  .gwx-inline-quote__form input,.gwx-inline-quote__form select{flex-basis:100%}
  .gwx-inline-quote__btn{width:100%}

  /* Dashboard */
  .gwx-dashboard-hero{align-items:stretch}
  .gwx-dashboard-hero__copy,.gwx-dashboard-hero__actions{width:100%}
  .gwx-dashboard-hero__actions{display:grid;grid-template-columns:1fr;gap:.625rem}
  .gwx-dashboard-hero__actions .gwx-btn{width:100%;justify-content:center}
  .gwx-admin-summary,.gwx-admin-form-grid,.gwx-admin-form-grid--3{grid-template-columns:1fr}
  .gwx-admin-form-grid__wide{grid-column:span 1}
  .gwx-admin-queue__item{flex-direction:column;align-items:flex-start}
  .gwx-admin-queue__actions{width:100%;justify-content:stretch}
  .gwx-admin-queue__actions .gwx-btn{flex:1;justify-content:center}
  .gwx-route-summary{grid-template-columns:1fr}
  .gwx-dash-stats{grid-template-columns:1fr 1fr}
  .gwx-dash-stats{grid-template-columns:1fr 1fr}
  .gwx-dash-stat{padding:1rem}
  .gwx-dash-stat__num{font-size:1.3rem}
  .gwx-table-head{padding:1rem}
  .gwx-dash-tools{width:100%;display:grid;grid-template-columns:1fr;gap:.625rem}
  #gwx-dash-search{width:100%!important}
  #gwx-dash-filter{width:100%!important}
  .gwx-table-scroll{display:none}
  .gwx-dash-cards{display:block}

  /* Tracking */
  .gwx-tr-meta{grid-template-columns:1fr 1fr}
  .gwx-track-form-row{flex-direction:column}
  .gwx-track-btn{width:100%!important}
  #gwx-shipment-map{height:320px!important}
  #gwx-map,.gwx-map-embed{height:320px!important}
  #gwx-locations-map{height:320px!important}
  .gwx-track-panel{padding:1.25rem;border-radius:14px}
  .gwx-tr-body{padding:1rem}
  .gwx-progress-step-lbl{max-width:48px}

  /* Quote form */
  .gwx-form-row,.gwx-form-row.three{grid-template-columns:1fr}
  .gwx-field-group{padding:1rem}
  .gwx-quote-body{padding:1.25rem}

  /* Invoice */
  .gwx-invoice-parties{grid-template-columns:1fr}
  .gwx-invoice-header{flex-direction:column}
  .gwx-invoice-header{padding:1.25rem 1.25rem}
  .gwx-invoice-body{padding:1.25rem 1.25rem}
  .gwx-invoice-table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}

  /* Footer */
  .gwx-footer__main{grid-template-columns:1fr;gap:1.75rem;padding:2.5rem 0 1.5rem}
  .gwx-footer__bottom{flex-direction:column;text-align:center}
  .gwx-footer__bottom-links{justify-content:center}
  .gwx-modal{padding:14px}
  .gwx-modal__dialog{padding:22px 18px}
}

@media(max-width:400px){
  .gwx-hero__h1{font-size:1.5rem}
  .gwx-features-grid{grid-template-columns:1fr}
  .gwx-feat{border-right:none!important}
  .gwx-why__stats{grid-template-columns:1fr 1fr}
  .gwx-dash-stats{grid-template-columns:1fr}
  .gwx-admin-overview__grid{grid-template-columns:1fr}
  .gwx-dash-card__meta,.gwx-dash-card__actions{grid-template-columns:1fr}
  .gwx-tr-meta{grid-template-columns:1fr}
  .gwx-admin-events__head{align-items:stretch;flex-direction:column}
  .gwx-admin-event-grid{grid-template-columns:1fr}
}

/* ── Mobile header button collapse ────────────────────────── */
@media(max-width:767px){
  .gwx-hide-mobile{display:none!important}
  .gwx-hide-mobile-sm{display:none}
  .gwx-header__actions{gap:.5rem;margin-left:auto}
}
@media(max-width:380px){
  .gwx-logo__tagline{display:none}
  .gwx-logo img{height:36px}
  .gwx-logo__name{font-size:1rem}
}

/* ═══════════════════════════════════════════════════════════
   REDESIGN OVERRIDES — header / footer shell
═══════════════════════════════════════════════════════════ */
.gwx-site-topbar{position:relative;z-index:30;background:#08182d;color:#d9e2ef;border-bottom:1px solid rgba(255,255,255,.08)}
.gwx-site-topbar__inner{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;padding:10px 0}
.gwx-site-topbar__left,.gwx-site-topbar__right{display:flex;align-items:center;gap:14px 18px;flex-wrap:wrap}
.gwx-site-topbar__left a,.gwx-site-topbar__meta,.gwx-site-topbar__links a,.gwx-site-topbar__status{display:inline-flex;align-items:center;gap:8px;color:#d9e2ef;font-size:13px}
.gwx-site-topbar__left a:hover,.gwx-site-topbar__links a:hover{color:#fff}
.gwx-site-topbar__left i,.gwx-site-topbar__meta i{color:var(--gwx-gold);font-size:12px}
.gwx-site-topbar__links{display:flex;align-items:center;gap:14px;list-style:none;margin:0;padding:0}
.gwx-site-topbar__dot{width:7px;height:7px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.2)}

.gwx-site-header{backdrop-filter:blur(16px) saturate(1.2);background:rgba(248,250,252,.86);border-bottom:1px solid rgba(226,232,240,.9);box-shadow:0 8px 24px -20px rgba(0,0,0,.4)}
.gwx-site-header .gwx-header__inner{padding:0;min-height:76px}
.gwx-site-brand{display:flex;align-items:center}
.gwx-site-brand .custom-logo-link,.gwx-site-brand__fallback{display:inline-flex;align-items:center;gap:12px}
.gwx-site-brand .custom-logo{max-height:50px;width:auto}
.gwx-site-brand__mark{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,var(--gwx-navy),var(--gwx-navy-2));color:#fff;box-shadow:0 10px 30px -12px rgba(10,25,49,.25)}
.gwx-site-brand__text{display:flex;flex-direction:column;line-height:1.05}
.gwx-site-brand__text strong{font-size:20px;font-weight:800;letter-spacing:-.02em;color:var(--gwx-navy)}
.gwx-site-brand__text em{font-style:normal;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#64748b;margin-top:2px}

.gwx-site-nav{display:flex;justify-content:center}
.gwx-site-nav>ul{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.gwx-site-nav>ul>li>a{padding:8px 12px;border-radius:999px;font-size:14px;font-weight:600;color:#334155;background:transparent}
.gwx-site-nav>ul>li>a:hover,.gwx-site-nav>ul>li.current-menu-item>a,.gwx-site-nav>ul>li.current-menu-parent>a{background:#fff;color:var(--gwx-navy);box-shadow:0 8px 20px -16px rgba(10,25,49,.45)}
.gwx-site-nav .sub-menu{top:calc(100% + 10px);border:1px solid #e2e8f0;border-radius:16px;padding:10px;background:#fff;box-shadow:0 24px 60px -24px rgba(10,25,49,.35)}
.gwx-site-nav .sub-menu li a{padding:10px 12px;border-radius:12px}
.gwx-site-nav .sub-menu li a:hover{background:#f8fafc}

.gwx-site-header__actions{gap:10px}
.gwx-site-header__theme-toggle{width:40px;height:40px;border-radius:12px;border:1px solid #e2e8f0;background:#fff;color:var(--gwx-navy);display:inline-flex;align-items:center;justify-content:center;cursor:pointer}
.gwx-site-header__theme-toggle:hover{background:#f8fafc;border-color:#cbd5e1}
.gwx-site-header .gwx-btn{border-radius:999px}
.gwx-site-header .gwx-btn-outline-dark{border-color:#d7dee7;background:#fff}
.gwx-site-header .gwx-btn-outline-dark:hover{background:#f8fafc;border-color:#c1ccd8}
.gwx-site-header .gwx-menu-toggle{width:44px;height:44px;border-radius:12px;border:1px solid #e2e8f0;background:#fff}

.gwx-site-footer{background:#0b1224;color:#cbd5e1}
.gwx-site-footer .gwx-footer__main{grid-template-columns:1.5fr .9fr .9fr 1fr 1.2fr;gap:26px;padding:44px 0 22px}
.gwx-site-footer__fallback{display:inline-flex;align-items:center;gap:10px;margin-bottom:10px;color:#fff}
.gwx-site-footer__mark{width:34px;height:34px;border-radius:10px;display:grid;place-items:center;background:linear-gradient(135deg,var(--gwx-navy),var(--gwx-navy-2));color:#fff}
.gwx-site-footer__fallback-text{display:flex;flex-direction:column;line-height:1.05}
.gwx-site-footer__fallback-text strong{font-size:18px;font-weight:800}
.gwx-site-footer__fallback-text em{font-style:normal;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#94a3b8}
.gwx-site-footer .gwx-footer__brand p{max-width:36ch;color:#94a3b8}
.gwx-site-footer .gwx-footer__col h4{border-bottom:0;margin-bottom:10px;padding-bottom:0;color:#fff;font-size:14px;letter-spacing:0;text-transform:none}
.gwx-site-footer__menu,.gwx-site-footer .menu{display:grid;gap:8px;list-style:none;margin:0;padding:0}
.gwx-site-footer__menu a,.gwx-site-footer .menu a{color:#cbd5e1;font-size:14px}
.gwx-site-footer__menu a:hover,.gwx-site-footer .menu a:hover{color:#fff}
.gwx-site-footer__widgets{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding:10px 0 24px;border-top:1px solid rgba(255,255,255,.08)}
.gwx-site-footer__widget-col{min-width:0}
.gwx-site-footer__widget-col .widget{padding:16px;border:1px solid rgba(255,255,255,.1);border-radius:16px;background:rgba(255,255,255,.04)}
.gwx-site-footer__widget-col .widget-title{color:#fff!important;font-size:14px!important;margin-bottom:10px!important;text-transform:none!important;letter-spacing:0!important}
.gwx-site-footer__widget-col a{color:#cbd5e1}
.gwx-site-footer__widget-col a:hover{color:#fff}
.gwx-site-footer .gwx-footer__bottom{border-top:0;padding:16px 0;color:#94a3b8}
.gwx-site-footer .gwx-footer__bottom a{color:#94a3b8}
.gwx-site-footer .gwx-footer__bottom a:hover{color:#fff}

@media(max-width:980px){
  .gwx-site-topbar__inner{justify-content:center}
  .gwx-site-topbar__right{justify-content:center}
  .gwx-site-header .gwx-header__inner{min-height:72px}
  .gwx-site-nav{position:fixed;top:calc(72px + 1px);right:16px;left:16px;display:none;z-index:999;background:#fff;border:1px solid #e2e8f0;border-radius:24px;box-shadow:0 24px 60px -24px rgba(10,25,49,.35);padding:16px}
  body.admin-bar #wpadminbar ~ .gwx-site-header .gwx-site-nav{top:calc(72px + 33px)}
  .gwx-site-nav.is-open{display:block}
  .gwx-site-nav>ul{display:grid;gap:6px}
  .gwx-site-nav>ul>li>a{width:100%;justify-content:flex-start;padding:14px 12px;border-radius:14px}
  .gwx-site-nav .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;padding:0 0 0 12px;margin-top:4px}
  .gwx-site-nav .sub-menu li a{padding:10px 0}
}

@media(max-width:767px){
  .gwx-site-topbar{display:none}
  .gwx-site-brand .custom-logo{max-height:42px}
  .gwx-site-brand__text strong{font-size:18px}
  .gwx-site-brand__text em{display:none}
  .gwx-site-footer .gwx-footer__main{grid-template-columns:1fr;gap:20px;padding:32px 0 18px}
  .gwx-site-footer__widgets{grid-template-columns:1fr}
}
