/* ============================================================
   Falcon Fast Logistics — falconfast.co.uk
   Brand: navy #041591 on white · amber accent · Barlow Condensed / Inter
   ============================================================ */

:root {
  --navy: #041591;
  --navy-dark: #030b52;
  --navy-deep: #020838;
  --amber: #f7a823;
  --amber-dark: #e0930f;
  --ink: #14203c;
  --muted: #55617e;
  --line: #e3e7f1;
  --bg-soft: #f4f6fb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(4, 21, 145, 0.10);
  --font-head: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #c6cdf3;
  font-size: 13.5px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px; flex-wrap: wrap; padding-top: 4px; padding-bottom: 4px;
}
.topbar a { color: #ffffff; text-decoration: none; }
.topbar a:hover { color: var(--amber); }
.topbar .tb-group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar svg { width: 13px; height: 13px; fill: var(--amber); flex: none; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 14px rgba(2, 8, 56, 0.35);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 34px; width: auto; }
@media (max-width: 520px) { .brand img { height: 26px; } }

.nav-toggle {
  display: none; background: none; border: 2px solid rgba(255,255,255,.5);
  border-radius: 8px; color: #fff; font-size: 22px; line-height: 1;
  padding: 6px 12px; cursor: pointer;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: #dfe4ff; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 10px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav a.active { color: var(--amber); }
.main-nav a.nav-cta {
  background: var(--amber); color: var(--navy-deep); margin-left: 10px;
  font-weight: 700;
}
.main-nav a.nav-cta:hover { background: #ffbe4d; color: var(--navy-deep); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy-dark); flex-direction: column; align-items: stretch;
    padding: 10px 18px 18px; gap: 2px; box-shadow: 0 14px 24px rgba(2,8,56,.45);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; color: #fff;
  min-height: 560px; display: flex; align-items: center;
  background-size: cover; background-position: center 38%;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: transparent;
}
.hero .kicker, .hero h1, .hero p.lead { text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 3px 20px rgba(0,0,0,.50); }
.hero .container { position: relative; padding-top: 84px; padding-bottom: 60px; }
.hero-inner { max-width: 700px; }

.kicker {
  display: inline-block; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .22em; font-weight: 600;
  font-size: 15px; color: var(--amber); margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 5vw, 58px); line-height: 1.06; letter-spacing: .01em;
  margin-bottom: 18px;
}
.hero p.lead { font-size: 19px; color: #fff; max-width: 540px; margin-bottom: 30px; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 15.5px;
  padding: 14px 28px; border-radius: 8px; transition: transform .15s, background .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--navy-deep); box-shadow: 0 8px 20px rgba(247,168,35,.35); }
.btn-amber:hover { background: #ffbe4d; }
.btn-outline { border: 2px solid rgba(255,255,255,.85); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0a23c2; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Stats band ---------- */
.stats-band { background: transparent; border-bottom: 1px solid var(--line); }
.stats-band .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; padding-top: 26px; padding-bottom: 26px;
}
.stat { text-align: center; padding: 6px 10px; }
.stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: 44px; line-height: 1;
  color: var(--navy);
}
.stat .lbl { font-size: 13.5px; color: #5a6274; margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 800px) { .stats-band .container { grid-template-columns: repeat(2, 1fr); row-gap: 26px; } }

/* Stats floated transparently over the hero photo (home) */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 34px; padding: 24px 18px;
  background: rgba(2,8,40,.48); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.hero-stats .stat .num { color: var(--amber); text-shadow: 0 1px 4px rgba(0,0,0,.60); }
.hero-stats .stat .lbl { color: #eef1fb; text-shadow: 0 1px 3px rgba(0,0,0,.55); }
@media (max-width: 800px) { .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 22px; } }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 660px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 4vw, 44px); line-height: 1.08; color: var(--navy-dark);
}
.section-head p { color: var(--muted); margin-top: 12px; font-size: 17px; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .card-img { height: 210px; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card .card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card h3 {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  font-size: 24px; color: var(--navy-dark); margin-bottom: 10px; letter-spacing: .02em;
}
.card p { color: var(--muted); font-size: 15.5px; flex: 1; }
.card .card-link {
  margin-top: 18px; font-weight: 700; font-size: 14.5px; text-decoration: none;
  color: var(--navy); text-transform: uppercase; letter-spacing: .06em;
}
.card .card-link:hover { color: var(--amber-dark); }

/* ---------- Feature (why choose us) ---------- */
.feature { text-align: left; padding: 34px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature .f-icon {
  width: 58px; height: 58px; border-radius: 12px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature .f-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--amber); stroke-width: 1.8; }
.feature h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 23px; color: var(--navy-dark); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.split .split-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.split h2 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 40px); line-height: 1.1; color: var(--navy-dark); margin-bottom: 16px;
}
.split p { color: var(--muted); margin-bottom: 14px; }
.checklist { list-style: none; margin: 18px 0 26px; }
.checklist li { padding-left: 34px; position: relative; margin-bottom: 12px; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--navy);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 9px; height: 5px;
  border-left: 2.5px solid var(--amber); border-bottom: 2.5px solid var(--amber);
  transform: rotate(-45deg);
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative; color: #fff; min-height: 300px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,8,56,.55) 0%, rgba(2,8,56,.88) 100%);
}
.page-banner .container { position: relative; padding-top: 70px; padding-bottom: 44px; }
.page-banner h1 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 54px); line-height: 1.05;
}
.crumbs { font-size: 14px; color: #b9c1ef; margin-bottom: 8px; }
.crumbs a { color: #b9c1ef; text-decoration: none; }
.crumbs a:hover { color: var(--amber); }

/* ---------- Service page layout ---------- */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; } }
.svc-main h2 {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  font-size: 30px; color: var(--navy-dark); margin: 34px 0 12px;
}
.svc-main h2:first-child { margin-top: 0; }
.svc-main p { color: #33405f; margin-bottom: 16px; }
.svc-main img { border-radius: var(--radius); margin: 10px 0 20px; }

.aside-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 30px 28px; margin-bottom: 24px;
}
.aside-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 24px; margin-bottom: 12px; }
.aside-card p { color: #ccd3f8; font-size: 15px; margin-bottom: 16px; }
.aside-card a.btn { width: 100%; text-align: center; }
.aside-card .tel {
  display: block; font-family: var(--font-head); font-size: 30px; font-weight: 700;
  color: var(--amber); text-decoration: none; margin: 6px 0 16px;
}
.aside-list {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px;
}
.aside-list h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 21px; color: var(--navy-dark); margin-bottom: 12px; }
.aside-list ul { list-style: none; }
.aside-list li { border-bottom: 1px solid var(--line); }
.aside-list li:last-child { border-bottom: none; }
.aside-list a { display: block; padding: 11px 2px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }
.aside-list a:hover { color: var(--navy); padding-left: 6px; transition: padding .15s; }
.aside-list a.here { color: var(--navy); }

/* ---------- Locations ---------- */
.loc-card .card-body address { font-style: normal; color: var(--muted); font-size: 15px; margin: 6px 0 16px; }
.loc-card .btn { align-self: flex-start; font-size: 14px; padding: 10px 20px; }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr; } }
.gal-grid figure {
  border-radius: var(--radius); overflow: hidden; position: relative; margin: 0;
  aspect-ratio: 4 / 3; background: var(--bg-soft);
}
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-grid figure:hover img { transform: scale(1.06); }

/* ---------- Fleet band (full-width image) ---------- */
.fleet-band {
  position: relative; color: #fff; min-height: 320px;
  display: flex; align-items: center;
  background-size: cover; background-position: center 55%;
}
.fleet-band::before {
  content: ""; position: absolute; inset: 0;
  background: transparent;
}
.fleet-band .kicker, .fleet-inner h2, .fleet-inner p { text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 3px 20px rgba(0,0,0,.50); }
.fleet-band .container { position: relative; padding-top: 50px; padding-bottom: 50px; }
.fleet-inner { max-width: 560px; }
.fleet-inner h2 {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 4.4vw, 46px); line-height: 1.06; margin: 6px 0 14px;
}
.fleet-inner p { color: #fff; font-size: 18px; margin-bottom: 26px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; background: linear-gradient(110deg, var(--navy-deep), var(--navy) 70%); }
.cta-band .container {
  padding-top: 64px; padding-bottom: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.cta-band p { color: #c9d0f5; margin-top: 8px; }
.cta-band .tel-big {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4vw, 44px);
  color: var(--amber); text-decoration: none; display: block; line-height: 1.1;
}

/* ---------- Contact page ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; text-align: left;
}
.contact-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 23px; color: var(--navy-dark); margin-bottom: 6px; }
.contact-card .role { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.contact-card a { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15.5px; margin: 4px 0; }
.contact-card a:hover { color: var(--navy); }
.contact-card svg { width: 16px; height: 16px; fill: var(--navy); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #aeb6e4; font-size: 15px; }
.site-footer .foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px;
  padding: 64px 0 44px;
}
@media (max-width: 900px) { .site-footer .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .foot-grid { grid-template-columns: 1fr; } }
.site-footer img.f-logo { height: 56px; margin-bottom: 18px; }
.site-footer h4 {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  color: #fff; font-size: 18px; margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #aeb6e4; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0; font-size: 13.5px; color: #7d86bb;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
