/* ============================================================
   London Boss Parking — Parking Enforcement Services
   Palette: Navy + Blue + Compliance Green | Yellow ~3% | Red ~6%
   Typography: Outfit (all weights)
   ============================================================ */

/* Outfit, self-hosted. Google Fonts was the site's only third-party request;
   serving the face ourselves removes it entirely, so the Content-Security-Policy
   can stay at font-src 'self' and there is no CDN left to be compromised. */
@font-face{
  font-family:'Outfit';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:'Outfit';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/assets/fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
  /* Core brand */
  --navy:      #0A1B33;   /* deep authority navy */
  --navy-2:    #0E274A;   /* raised navy panel   */
  --blue:      #1F5FC4;   /* brand blue          */
  --blue-lt:   #3E82E6;   /* bright blue         */
  --green:     #17916B;   /* compliance green    */
  --green-lt:  #21B583;   /* bright green        */
  --yellow:    #FFCE1A;   /* hi-vis accent (~3%) */
  --red:       #E02839;   /* PCN / warning (~6%) */

  /* Neutrals */
  --paper:     #F6F8FB;
  --paper-2:   #EDF1F7;
  --ink:       #0B1524;
  --ink-soft:  #33445C;
  --line:      #DCE3ED;
  --white:     #FFFFFF;

  /* System */
  --wash: linear-gradient(180deg, rgba(10,27,51,.72), rgba(10,27,51,.82));
  --container: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10,27,51,.06);
  --shadow-md: 0 18px 44px -18px rgba(10,27,51,.28);
  --shadow-lg: 0 40px 90px -30px rgba(10,27,51,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}

/* subtle film grain for a premium finish */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* Typography scale */
h1, h2, h3, h4 { line-height: 1.06; font-weight: 800; letter-spacing: -.03em; color: var(--navy); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--yellow); border-radius: 2px;
}
.eyebrow.on-dark { color: var(--green-lt); }

.section { padding: clamp(72px, 9vw, 130px) 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  letter-spacing: -.01em; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff; box-shadow: 0 14px 30px -12px rgba(31,95,196,.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(31,95,196,.8); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-yellow { background: var(--yellow); color: var(--navy); font-weight: 700; }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(255,206,26,.7); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: .82rem; font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; height: 42px; }
.topbar a { color: rgba(255,255,255,.82); transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.topbar .tb-left { display: flex; align-items: center; gap: 10px; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-lt); box-shadow: 0 0 0 3px rgba(33,181,131,.2); }
.topbar .tb-right { display: flex; gap: 22px; }
.topbar .tb-right span.sep { opacity: .3; }
@media (max-width: 720px){ .topbar .tb-right { display: none; } }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }

/* ---- Typographic wordmark logo ---- */
.brand { display: flex; align-items: center; gap: 13px; }
.logo-accent {
  flex: none; width: 6px; height: 40px; border-radius: 3px;
  background: linear-gradient(180deg,
      var(--yellow) 0 24%,
      var(--blue)  24% 62%,
      var(--green) 62% 100%);
  box-shadow: 0 5px 12px -5px rgba(31,95,196,.55);
}
.wm-boss {
  background: linear-gradient(100deg,
      var(--yellow) 0%,
      var(--blue)  46%,
      var(--green) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-right: .04em;
}
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wm-name {
  font-size: 1.42rem; font-weight: 800; letter-spacing: -.035em;
  color: var(--navy); white-space: nowrap;
  font-feature-settings: "ss01";
}
.wm-name .wm-light { font-weight: 500; color: var(--ink-soft); }
.wm-sub {
  margin-top: 5px; font-size: .6rem; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap; padding-left: .04em;
}

/* on dark surfaces (footer, drawer) */
.footer .wm-name, .drawer .wm-name { color: #fff; }
.footer .wm-name .wm-light, .drawer .wm-name .wm-light { color: rgba(255,255,255,.72); }
.footer .wm-sub, .drawer .wm-sub { color: var(--green-lt); }
.drawer-top .brand { gap: 13px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: .92rem; }

.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

@media (max-width: 960px){
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: flex; flex-direction: column; padding: 28px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-top .brand-txt b { color: #fff; }
.drawer-close { width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.2); background: transparent; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
.drawer a { color: #fff; font-size: 1.6rem; font-weight: 700; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); letter-spacing: -.02em; }
.drawer .btn { margin-top: 28px; }

/* ============================================================
   HERO — full-bleed Westminster
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: min(90vh, 820px);
  display: flex; align-items: center;
  padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
  /* --hero-img is set inline on the .hero element so the admin editor can swap
     it via the media picker; --wash keeps the dark overlay in front of it. */
  --hero-img: url('/assets/hero.jpg');
  background-image: var(--wash), var(--hero-img);
  background-size: cover; background-position: 60% 28%;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 8%, rgba(31,95,196,.34), transparent 55%),
              linear-gradient(90deg, rgba(10,27,51,.55), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 780px; }
.hero .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.hero .pill svg { width: 15px; height: 15px; color: var(--green-lt); }
.hero h1 {
  color: #fff; font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.02;
  max-width: 15ch;
}
.hero h1 .hl { color: var(--yellow); }
.hero .lede {
  margin-top: 22px; max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 300;
  color: rgba(255,255,255,.9); line-height: 1.6;
}
.hero .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .hero-meta {
  margin-top: 42px; display: flex; gap: 30px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16);
}
.hero .hero-meta .m b { display: block; font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.hero .hero-meta .m span { font-size: .82rem; color: rgba(255,255,255,.72); font-weight: 400; }

/* Coverage marquee under hero */
.coverage-strip {
  background: var(--navy-2); color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.coverage-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.coverage-strip .lbl { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-lt); font-weight: 700; }
.coverage-strip .city { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; }
.coverage-strip .city svg { width: 16px; height: 16px; color: var(--yellow); }
.coverage-strip .divider { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.28); }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { max-width: 660px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 16px; }
.sec-head p { margin-top: 18px; font-size: 1.12rem; color: var(--ink-soft); font-weight: 300; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px 30px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(31,95,196,.12), rgba(23,145,107,.12));
  color: var(--blue); margin-bottom: 22px;
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: .96rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }
.svc-card .num { position: absolute; top: 26px; right: 26px; font-size: .82rem; font-weight: 700; color: var(--line); letter-spacing: .1em; }

/* ============================================================
   STANDARDS / COMPLIANCE (dark)
   ============================================================ */
.standards {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
}
.standards::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(70% 60% at 85% 10%, rgba(31,95,196,.35), transparent 60%),
              radial-gradient(60% 60% at 5% 90%, rgba(23,145,107,.3), transparent 60%);
}
.standards .container { position: relative; z-index: 2; }
.standards-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.standards h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.standards p.intro { margin-top: 20px; color: rgba(255,255,255,.82); font-weight: 300; font-size: 1.1rem; }
.check-list { margin-top: 30px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 2px;
  background: rgba(33,181,131,.18); color: var(--green-lt); display: grid; place-items: center;
}
.check-list .tick svg { width: 15px; height: 15px; }
.check-list b { font-weight: 600; color: #fff; }
.check-list span { color: rgba(255,255,255,.72); font-weight: 300; font-size: .96rem; }

.accred-panel {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 34px; backdrop-filter: blur(6px);
}
.accred-panel h4 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.accred-panel .sub { color: rgba(255,255,255,.6); font-size: .86rem; font-weight: 300; margin-bottom: 24px; }
.accred-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.accred-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 20px 16px; text-align: center;
}
.accred-badge .ico { width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 10px; background: rgba(255,206,26,.16); color: var(--yellow); display: grid; place-items: center; }
.accred-badge .ico svg { width: 22px; height: 22px; }
.accred-badge b { display: block; font-size: .96rem; color: #fff; font-weight: 700; }
.accred-badge span { font-size: .74rem; color: rgba(255,255,255,.6); font-weight: 300; }
.accred-note { margin-top: 18px; font-size: .78rem; color: var(--yellow); opacity: .85; font-weight: 300; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
.step { position: relative; }
.step .n {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 1.35rem; font-weight: 800; color: var(--blue); margin-bottom: 20px;
}
.step h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .95rem; color: var(--ink-soft); font-weight: 300; }
.step::after {
  content: ""; position: absolute; top: 27px; left: 66px; right: -11px; height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
@media (max-width: 860px){ .step::after { display: none; } }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.stat b .u { color: var(--yellow); }
.stat > span { display: block; margin-top: 6px; font-size: .96rem; color: rgba(255,255,255,.85); font-weight: 300; }
@media (max-width: 620px){ .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.city-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end; padding: 28px; color: #fff;
  background: var(--navy-2); box-shadow: var(--shadow-sm);
}
.city-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, rgba(10,27,51,.15), rgba(10,27,51,.88)), var(--city-img);
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease);
}
.city-card:hover::before { transform: scale(1.07); }
.city-card .ci { position: relative; z-index: 1; }
.city-card h3 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.city-card p { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 300; margin-top: 4px; }
.city-card.wide { grid-column: span 2; min-height: 300px; }
@media (max-width: 720px){ .city-card.wide { grid-column: span 1; } }

/* ============================================================
   CONTACT / QUOTE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-info p.intro { margin-top: 18px; font-size: 1.1rem; color: var(--ink-soft); font-weight: 300; max-width: 44ch; }
.contact-list { margin-top: 34px; display: grid; gap: 18px; }
.ci-row { display: flex; gap: 16px; align-items: center; }
.ci-row .ico { flex: none; width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, rgba(31,95,196,.12), rgba(23,145,107,.12)); color: var(--blue); display: grid; place-items: center; }
.ci-row .ico svg { width: 22px; height: 22px; }
.ci-row .t small { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.ci-row .t b { font-size: 1.1rem; font-weight: 600; color: var(--navy); }

.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-md);
}
.quote-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.quote-card .qsub { color: var(--ink-soft); font-weight: 300; margin-bottom: 26px; font-size: .96rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: -.01em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,95,196,.12); background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-card .btn { width: 100%; margin-top: 8px; }
.quote-done {
  display: none; text-align: center; padding: 20px;
  background: rgba(23,145,107,.1); border: 1px solid rgba(23,145,107,.3);
  border-radius: 14px; color: var(--green); font-weight: 600; margin-top: 8px;
}
.quote-done.show { display: block; }
.quote-done.err { background: rgba(224,40,57,.08); border-color: rgba(224,40,57,.32); color: var(--red); }
.form-legal { margin-top: 16px; font-size: .76rem; color: var(--ink-soft); font-weight: 300; text-align: center; }

/* online appeal form sits on the dark appeal section */
.appeal-form { max-width: 640px; margin: 8px auto 0; text-align: left; }
.appeal-or { text-align: center; color: rgba(255,255,255,.72); font-weight: 600; margin: 40px 0 18px; }
a.ap-val { text-decoration: none; word-break: break-word; }
a.ap-val:hover { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: clamp(60px, 7vw, 90px) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-txt b { color: #fff; }
.footer .f-about { margin-top: 20px; font-weight: 300; font-size: .94rem; max-width: 34ch; line-height: 1.7; }
.footer h5 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-weight: 300; font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--yellow); }
.footer .social { display: flex; gap: 12px; margin-top: 20px; }
.footer .social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer .social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer .social svg { width: 18px; height: 18px; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .84rem; font-weight: 300; }
.footer-bot .appeals { color: var(--yellow); opacity: .9; }

/* ============================================================
   REVEAL
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: .08s; }
html.js .reveal.d2 { transition-delay: .16s; }
html.js .reveal.d3 { transition-delay: .24s; }

/* Scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow)); transition: width .1s linear; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px){
  .standards-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero .hero-meta { gap: 22px; }
  .hero .hero-meta .m b { font-size: 1.4rem; }
  .section { padding: 66px 0; }
}

/* ============================================================
   PAY-TICKET TOP BANNER
   ============================================================ */
.paybar { background: var(--red); color: #fff; }
.paybar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.paybar-msg { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.paybar-msg strong { font-weight: 800; font-size: 1rem; letter-spacing: -.01em; }
.paybar-msg span { color: rgba(255,255,255,.92); font-weight: 400; font-size: .88rem; }
.paybar-actions { display: flex; align-items: center; gap: 16px; }
.paybar-btn { background: #fff; color: var(--red); font-weight: 700; font-size: .82rem; padding: 7px 17px; border-radius: 999px; white-space: nowrap; transition: transform .2s var(--ease); }
.paybar-btn:hover { transform: translateY(-1px); }
.paybar-link { color: #fff; font-weight: 600; font-size: .82rem; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px){ .paybar .container { justify-content: center; text-align: center; } .paybar-msg { justify-content: center; } }

/* ============================================================
   PARKING SPACES / RENTAL
   ============================================================ */
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.space-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.space-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.space-card:hover img { transform: scale(1.05); }
.space-card figcaption { padding: 15px 20px; font-weight: 600; color: var(--navy); font-size: .98rem; }
.space-points { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px; }
.space-points .pt { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink-soft); }
.space-points .pt-ic { width: 24px; height: 24px; border-radius: 7px; background: rgba(23,145,107,.14); color: var(--green); display: grid; place-items: center; font-weight: 800; font-size: .78rem; flex: none; }
@media (max-width: 820px){ .space-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .space-grid { grid-template-columns: 1fr; } .space-card img { height: 220px; } .space-points { gap: 16px; } }

/* ============================================================
   PAY / APPEAL A PARKING CHARGE
   ============================================================ */
.pay-sec { background: var(--navy); color: #fff; }
.pay-sec .sec-head h2 { color: #fff; }
.pay-sec .sec-head p { color: rgba(255,255,255,.85); font-size: 1.18rem; }
.pay-sec .sec-head p b { color: var(--yellow); font-weight: 800; }
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.ticket-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.ticket-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.ticket-card:hover img { transform: scale(1.05); }
.pay-actions { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.pay-note { text-align: center; margin-top: 20px; font-size: .8rem; color: var(--yellow); opacity: .85; font-weight: 300; }
@media (max-width: 820px){ .ticket-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .ticket-grid { grid-template-columns: 1fr; } }

/* Footer appeal button */
.footer-bot .btn-appeal { padding: 9px 22px; font-size: .86rem; }

/* DigiSurf credit */
.powered { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.5); }
.powered a { color: var(--yellow); font-weight: 700; transition: opacity .2s; }
.powered a:hover { opacity: .8; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   PCN PAY / APPEAL PAGE  (v3)
   ============================================================ */
body.pcn { background: var(--paper); }

/* Simplified nav: brand + single CTA */
body.pcn .nav .container { display: flex; align-items: center; justify-content: space-between; }
body.pcn .nav-cta { display: inline-flex; }

/* Hero */
.pcn-hero { padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 88px); }
.pcn-hero .hero-inner { max-width: 860px; }
.pcn-pill { margin-bottom: 22px; }
.pcn-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.pcn-hero .lede { max-width: 640px; margin-top: 20px; }
.pcn-hero .lede b { color: #fff; }

.btn-lg { padding: 18px 40px; font-size: 1.08rem; }

/* Amount cards */
.amount-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 4px; }
.amount-card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 18px 26px; min-width: 190px;
  backdrop-filter: blur(6px);
}
.amount-card .amt-lbl { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.75); text-transform: uppercase; }
.amount-card .amt { display: block; font-size: 2.5rem; font-weight: 800; color: var(--yellow); line-height: 1.1; margin-top: 4px; }

.cta-row { margin-top: 28px; }

/* Section base for PCN */
.pcn-sec { padding: clamp(64px, 8vw, 108px) 0; }
.appeal-sec { background: var(--navy); }
.appeal-sec h2, .appeal-sec .sec-head p { color: #fff; }
.appeal-sec .sec-head p { color: rgba(255,255,255,.82); }

/* Ticket image strip */
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 8px 0 44px; }
.ticket-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.ticket-card img { width: 100%; height: 100%; object-fit: cover; }

/* Payment portal */
.portal {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
}
.portal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.portal-ic {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}
.portal-ic svg { width: 26px; height: 26px; }
.portal-head h3 { font-size: 1.4rem; }
.portal-head p { color: var(--ink-soft); font-size: .95rem; }

.bank-details { border-top: 1px solid var(--line); }
.bd-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.bd-row dt { font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.bd-row dd { font-weight: 700; color: var(--navy); font-size: 1.08rem; text-align: right; }
.bd-row.highlight { background: rgba(31,95,196,.06); border-radius: 12px; padding: 15px 14px; border-bottom: 1px solid var(--line); }
.bd-row.highlight dd { color: var(--blue); font-weight: 600; font-size: .98rem; }
.bd-row .ph, dd.ph, .ap-val.ph, .footer .ph { color: var(--red); font-weight: 700; }
.footer .ph { color: var(--yellow); }

.amount-mini { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 22px; padding-top: 4px; }
.amount-mini span { font-size: .95rem; color: var(--ink-soft); }
.amount-mini b { color: var(--navy); font-size: 1.15rem; }

.portal-note { margin-top: 22px; font-size: .86rem; color: var(--ink-soft); text-align: center; }
.appeal-sec .portal-note { color: rgba(255,255,255,.7); margin-top: 30px; }

/* Appeal cards */
.appeal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.appeal-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 30px; color: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
a.appeal-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: var(--yellow); }
.ap-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--yellow); margin-bottom: 8px; }
.ap-ic svg { width: 24px; height: 24px; }
.ap-lbl { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.ap-val { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1.15; }
.ap-val.ph { font-size: 1.15rem; color: var(--yellow); }
.ap-sub { font-size: .9rem; color: rgba(255,255,255,.6); }

/* Footer tweaks for 2-col */
.pcn-footer .footer-top { grid-template-columns: 1.4fr 1fr; }
.pcn-footer .footer-contact ul { list-style: none; }
.pcn-footer .footer-contact li { margin-bottom: 8px; }

@media (max-width: 720px) {
  .ticket-grid { grid-template-columns: 1fr; }
  .appeal-grid { grid-template-columns: 1fr; }
  .amount-card { flex: 1 1 100%; }
  .bd-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .bd-row dd { text-align: left; }
}

/* ===== Appeal POPLA line ===== */
.appeal-popla { max-width: 760px; margin: 0 auto 26px; text-align: center; color: rgba(255,255,255,.92); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 16px 22px; font-size: 1rem; line-height: 1.6; }
.appeal-popla a { color: var(--yellow); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
