/* ============================================
   Britiz Logistics — site stylesheet
   Palette: corporate navy & gold
   ============================================ */

:root {
  --navy: #0a1f3c;
  --navy-2: #12294d;
  --navy-3: #1b3766;
  --gold: #c9a227;
  --gold-light: #e5c158;
  --ink: #1c2530;
  --muted: #5b6b7c;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --line: #e3e8ef;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(10, 31, 60, 0.08);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--navy-3); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }

.brand .mark { width: 42px; height: 42px; flex: none; }

.brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand .wordmark strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand .wordmark span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--navy-3); border-bottom-color: var(--gold); }
.main-nav a.active { color: var(--navy-3); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 162, 39, 0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero .kicker,
.section .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.section .kicker { color: var(--gold); }

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-bar span::before {
  content: "✓";
  color: var(--gold-light);
  margin-right: 8px;
  font-weight: 800;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); }
.section.navy { background: var(--navy); color: #fff; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section.navy .section-head h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section.navy .section-head p { color: rgba(255, 255, 255, 0.78); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.96rem; }
.card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}
.card .card-link:hover { color: var(--navy); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Value list ---------- */
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .tick {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-top: 3px;
}
.value-item h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.value-item p { color: var(--muted); font-size: 0.95rem; }
.section.navy .value-item h3 { color: #fff; }
.section.navy .value-item p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.testimonial .quote-mark { font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.testimonial p { color: var(--muted); font-style: italic; font-size: 0.96rem; }
.testimonial .who { margin-top: 14px; font-weight: 700; color: var(--navy); font-style: normal; font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 300px at 15% 120%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(150deg, var(--navy-2), var(--navy));
  color: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 520px; }

/* ---------- Content pages ---------- */
.prose { max-width: 760px; }
.prose h2 { color: var(--navy); font-size: 1.5rem; font-weight: 800; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #33404f; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; color: #33404f; }
.prose li { margin-bottom: 8px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: #fff;
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact / info blocks ---------- */
.info-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.info-tile h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.info-tile p, .info-tile a { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.info-tile .sub { display: block; color: var(--muted); font-weight: 500; font-size: 0.88rem; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 0.94rem; }
.footer-brand p { font-size: 0.94rem; max-width: 300px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utility ---------- */
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 24px; border-bottom: none; }
  .main-nav .btn { margin: 10px 24px; }
  .nav-toggle { display: block; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .cta-band { padding: 40px 28px; }
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
