/* ═══════════════════════════════════════════════════════════
   Malwa Golden Group — Shared Design System
   Fonts: Montserrat (headings) + Inter (body)
   Themes: logistics (blue) | transolutions (red)
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --brand:      #3B5E9C;
  --brand-dk:   #2D4A7F;
  --brand-lt:   #ECF0FA;
  --brand-mid:  #6B85BE;

  --accent:     #F0B429;
  --accent-lt:  #FEF6E4;
  --sage:       #E8EFE8;
  --warm:       #F5F0E8;

  --bg:         #F8F6F2;
  --white:      #FFFFFF;
  --text:       #1C2533;
  --text-muted: #6B7280;
  --border:     #E5E1D8;
  --border-lt:  #F0EDE6;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 8px rgba(0,0,0,0.04);
  --shadow:     0 2px 8px rgba(0,0,0,0.07), 0 4px 20px rgba(0,0,0,0.05);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  --wrap:       1200px;
  --section-v:  72px;
}

[data-theme="transolutions"] {
  --brand:    #CC2229;
  --brand-dk: #A81B21;
  --brand-lt: #FAECEC;
  --brand-mid:#D95560;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── LAYOUT ── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: var(--section-v) 0;
}
.bg-light  { background: var(--bg); }
.bg-white  { background: var(--white); }
.bg-brand  { background: var(--brand); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(32px, 4vw, 48px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 700; letter-spacing: 0; }
p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── SECTION HEADER ── */
.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.sec-head h2 { margin-bottom: 10px; }
.sec-head p  { font-size: 15px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--brand);  color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dk); border-color: var(--brand-dk); }
.btn-white    { background: #fff; color: var(--brand); }
.btn-white:hover  { background: var(--brand-lt); }
.btn-outline  { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand-lt); }
.btn-lg { font-size: 14px; padding: 13px 30px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--brand);
  padding: 7px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar span,
.topbar a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 400;
}
.topbar a:hover { color: #fff; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: auto; }
.nav-icon     { height: 36px; width: 36px; object-fit: contain; border-radius: 4px; }
.nav-wordmark { height: 32px; object-fit: contain; }
.logo-logistics     { display: block; }
.logo-transolutions { display: none; }
[data-theme="transolutions"] .logo-logistics     { display: none; }
[data-theme="transolutions"] .logo-transolutions { display: block; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); background: var(--brand-lt); }

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--brand-dk) !important; }

.nav-switch {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  border: 1px solid var(--border) !important;
  background: transparent !important;
  margin-left: 4px;
}
.nav-switch:hover { border-color: var(--brand) !important; color: var(--brand) !important; background: var(--brand-lt) !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 48px;
}
.page-header .eyebrow { display: block; margin-bottom: 8px; }
.page-header h1 { margin-bottom: 12px; }
.page-header p  { font-size: 16px; max-width: 560px; }

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 460px;
  min-height: 520px;
  gap: 48px;
  align-items: center;
}
.hero-content { padding: 64px 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 4px 12px;
  background: var(--brand-lt);
  border-radius: 100px;
}
.hero-content h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.hero-content .hero-sub {
  font-size: 15px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  color: var(--text-muted);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-images {
  padding: 32px 0;
  display: grid;
  grid-template-rows: 200px 148px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: stretch;
}
.hero-img-full { grid-column: 1 / -1; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  border-radius: var(--radius);
  background: #E8E5DF;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.025) 0px, rgba(0,0,0,0.025) 3px,
    transparent 3px, transparent 12px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.img-ph-label {
  font-family: monospace;
  font-size: 10px;
  color: #aaa;
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
}

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-row {
  display: flex;
  border-left: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-lbl {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text .sec-head { text-align: left; margin: 0 0 24px; }
.about-text p { margin-bottom: 16px; }
.about-points { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-point i {
  width: 36px; height: 36px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.about-point span   { font-size: 13px; color: var(--text-muted); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stats-card {
  background: var(--brand-lt);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stats-card .n {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-card .l {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── SERVICES GRID (home overview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.svc-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-mid);
  transform: translateY(-2px);
}
.svc-card-top {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-icon {
  width: 44px; height: 44px;
  background: var(--brand-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 18px;
}
.svc-card-top h3 { font-size: 15px; font-weight: 700; }
.svc-card-body   { padding: 0 24px 24px; }
.svc-card-body p { font-size: 13px; }

/* ── SERVICES DETAIL (services page) ── */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s;
}
.svc-detail-card:last-child { border-bottom: none; }
.svc-detail-card:hover { background: var(--bg); }
.svc-detail-icon {
  width: 56px; height: 56px;
  background: var(--brand-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 22px;
  flex-shrink: 0;
}
.svc-detail-body h3 { font-size: 18px; margin-bottom: 10px; }
.svc-detail-body p  { margin-bottom: 16px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.svc-list i { color: var(--brand); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-card i {
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}
.why-card h4 { font-size: 14px; margin-bottom: 8px; }
.why-card p  { font-size: 13px; }

/* ── HOW IT WORKS ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 0;
  position: relative;
}
.step-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; border-right: 1px solid var(--border); }
.step-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.06em;
}
.step-card > i {
  color: var(--brand);
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.step-card h4 { font-size: 14px; margin-bottom: 8px; }
.step-card p  { font-size: 12.5px; }
.step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 12px;
  padding: 0;
  z-index: 1;
  flex-shrink: 0;
  position: relative;
  top: 40px;
  width: 0;
}

/* ── CLIENTS PREVIEW ── */
.clients-preview {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.client-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.client-preview-card img {
  max-height: 44px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* ── CLIENTS PAGE ── */
.clients-category { margin-bottom: 48px; }
.clients-cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.clients-cat-label i { color: var(--brand); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.client-card:hover { box-shadow: var(--shadow-sm); border-color: var(--brand-mid); }
.client-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.client-card-text { flex-direction: column; gap: 2px; }
.client-text-name { font-size: 13px; font-weight: 700; color: var(--text); }
.client-text-sub  { font-size: 11px; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--brand);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 10px; font-size: 28px; }
.cta-band p  { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; }
.cta-btns    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── OFFICES COMPACT (stations page) ── */
.offices-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.office-compact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.office-compact-card:hover { box-shadow: var(--shadow-sm); border-color: var(--brand-mid); }
.ofc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ofc-name i { color: var(--brand); font-size: 12px; }
.ofc-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ofc-detail  { font-size: 12.5px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.ofc-contact { font-size: 12.5px; }
.ofc-contact a { color: var(--brand); text-decoration: none; font-weight: 500; }
.ofc-contact a:hover { text-decoration: underline; }

/* ── STATION SEARCH / FILTER ── */
.station-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 13px;
}
.search-wrap input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.search-wrap input:focus { border-color: var(--brand); }
.filter-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover   { border-color: var(--brand); color: var(--brand); }
.filter-btn.active  { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Station list table */
.station-region {
  margin-bottom: 32px;
}
.station-region-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.station-region-title::after {
  content: attr(data-count);
  font-size: 10px;
  background: var(--brand-lt);
  color: var(--brand);
  padding: 1px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.station-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.station-item {
  font-size: 13px;
  color: var(--text);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border-lt);
  transition: background 0.15s, border-color 0.15s;
}
.station-item:hover { background: var(--brand-lt); border-color: var(--brand); color: var(--brand); }
.station-item.hidden { display: none; }

/* ── TRACK PAGE ── */
.track-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.track-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  text-align: center;
}
.track-icon-wrap {
  width: 72px; height: 72px;
  background: var(--brand-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand);
  font-size: 28px;
}
.track-form-box h2 { margin-bottom: 10px; font-size: 24px; }
.track-sub { font-size: 13.5px; margin-bottom: 28px; }
.track-form { display: flex; flex-direction: column; gap: 10px; }
.track-input-wrap { display: flex; gap: 10px; }
.track-input-wrap input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.track-input-wrap input:focus { border-color: var(--brand); }
#trackResult {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}
.track-result-pending {
  background: var(--brand-lt);
  color: var(--brand);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.track-result-error {
  background: #fff3f3;
  color: #c0392b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.track-help { display: flex; flex-direction: column; gap: 16px; }
.track-help-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.track-help-card i { color: var(--brand); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.track-help-card strong { display: block; font-size: 13.5px; margin-bottom: 4px; }
.track-help-card p { font-size: 12.5px; }
.track-contacts { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.track-contacts h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
.track-contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.track-contact-row:last-child { border-bottom: none; }
.track-contact-row i { color: var(--brand); font-size: 13px; }
.track-contact-row:hover { color: var(--brand); }

/* ── CONTACT PAGE ── */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-hq { }
.contact-hq-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.contact-hq-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-hq-addr { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.contact-hq-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-detail-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-row i {
  width: 36px; height: 36px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-detail-label { display: block; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1px; }
.contact-detail-val { font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; }
.contact-detail-val:hover { color: var(--brand); }
.contact-other-offices h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.coo-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.coo-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border-lt); font-size: 13px; }
.coo-row:last-child { border-bottom: none; }
.coo-city { color: var(--text); font-weight: 500; }
.coo-row a { color: var(--brand); text-decoration: none; font-weight: 600; font-size: 12.5px; }
.coo-row a:hover { text-decoration: underline; }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
}
.contact-form-box h3 { font-size: 20px; margin-bottom: 6px; }
.cf-sub { font-size: 13.5px; margin-bottom: 24px; }
.cf-form { display: flex; flex-direction: column; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 12.5px; font-weight: 600; color: var(--text); }
.cf-req { color: var(--brand); }
.cf-group input,
.cf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  background: var(--white);
  resize: vertical;
}
.cf-group input:focus,
.cf-group textarea:focus { border-color: var(--brand); }
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #bbb; }
.cf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.cf-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f0fbf0;
  border: 1px solid #b2dfb2;
  border-radius: var(--radius);
  padding: 20px;
}
.cf-success i { color: #2e7d32; font-size: 20px; margin-top: 2px; }
.cf-success strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.cf-success p { font-size: 13px; color: var(--text-muted); }

/* All offices grid */
.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow 0.15s;
}
.contact-office-card:hover { box-shadow: var(--shadow-sm); }
.contact-office-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.contact-office-header i { color: var(--brand); font-size: 13px; }
.contact-office-header h4 { font-size: 13.5px; font-weight: 700; }
.contact-office-addr  { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.contact-office-phone { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--brand); text-decoration: none; font-weight: 500; }
.contact-office-phone i { font-size: 11px; }
.contact-office-phone:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-logistics     { display: block; }
.footer-transolutions { display: none; }
[data-theme="transolutions"] .footer-logistics     { display: none; }
[data-theme="transolutions"] .footer-transolutions { display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 250px; }
.footer h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --wrap: 100%; }
  .wrap { padding: 0 32px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  :root { --section-v: 48px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-images { display: none; }
  .about-grid  { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid    { grid-template-columns: 1fr 1fr; }
  .track-wrap  { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-offices-grid { grid-template-columns: 1fr; }
  .offices-compact { grid-template-columns: 1fr; }
  .station-list { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-preview { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-row   { flex-direction: column; }
  .step-card   { border-right: 1px solid var(--border); border-radius: 0; border-bottom: none; }
  .step-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .step-card:last-child  { border-radius: 0 0 var(--radius) var(--radius); border-bottom: 1px solid var(--border); }
  .step-divider { display: none; }
  .nav-hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; gap: 2px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { margin-left: 0; }
  .svc-detail-card { grid-template-columns: 1fr; }
}
