/* ══════════════════════════════════════
   Save Business Rates — Shared Stylesheet
   Edit this file to change colours, fonts,
   nav, or footer across the entire site.
   ══════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BRAND TOKENS ── */
:root {
  --navy:       #0d2b4e;
  --blue:       #1a6bbf;
  --light-blue: #e8f2fc;
  --green:      #f72585;
  --green-dark: #c4006a;
  --text:       #222;
  --muted:      #555;
  --border:     #dde4ec;
  --white:      #ffffff;
  --bg:         #f5f8fc;
}

/* ── BASE ── */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER / NAV ── */
header {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.logo span { color: #5bc4ff; }
.logo:hover { text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: #fff; text-decoration: none; }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark); text-decoration: none; }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); text-decoration: none; }

/* ── PAGE HERO (UBR / content pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3f6b 100%);
  color: var(--white);
  padding: 56px 24px 60px;
  text-align: center;
}
.badge {
  display: inline-block;
  background: rgba(91,196,255,0.18);
  border: 1px solid rgba(91,196,255,0.4);
  color: #5bc4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #5bc4ff; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; }
.page-hero .updated { margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── SECTION LABELS ── */
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ── */
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 1rem;
  transition: transform 0.15s;
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: #081c33;
  color: rgba(255,255,255,0.55);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.83rem;
}
footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE — nav collapse ── */
@media (max-width: 620px) {
  nav ul { display: none; }
}
