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

:root {
  --navy: #0B1D35;
  --navy-mid: #122340;
  --navy-light: #1a3358;
  --gold: #E8A020;
  --gold-light: #F5B842;
  --white: #FFFFFF;
  --text-muted: #8A9BB0;
  --text-body: #C8D4E3;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(11,29,53,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.logo { 
  display: flex; 
  flex-direction: column; 
  line-height: 1; 
  text-decoration: none; 
  gap: 0.4rem; /* Adds clean spacing between image and text */
}

.logo-img { 
  height: 42px; /* Matches the visual weight of the old 2rem text */
  width: auto; 
  object-fit: contain; 
  display: block; 
}

.logo-text { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.75rem; 
  font-weight: 600; 
  color: var(--text-muted); 
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-body); text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.4rem !important; border-radius: 4px; font-weight: 700 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 0 6%; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,160,32,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,51,88,0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2444 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.0; margin-bottom: 1.5rem; animation: fadeUp 0.6s 0.1s ease both; }
h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.1rem; font-weight: 300; color: var(--text-body); line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust { position: absolute; bottom: 3rem; left: 6%; right: 6%; display: flex; gap: 2.5rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s ease both; z-index: 2; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }
.trust-item .icon { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.95rem; padding: 0.9rem 2rem; border-radius: 5px; text-decoration: none; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 0.9rem 2rem; border-radius: 5px; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
section { position: relative; padding: 6rem 6%; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.section-body { font-size: 1rem; color: var(--text-body); line-height: 1.75; max-width: 560px; }
.gold-divider { width: 48px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; }

/* ─── SERVICES GRID ─── */
.services { background: var(--navy-mid); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--navy-mid); padding: 2.5rem 2rem; transition: background 0.3s; position: relative; overflow: hidden; text-decoration: none; display: block; color: inherit; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--navy-light); }
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.7rem; letter-spacing: 0.02em; }
.service-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── WHY US ─── */
.why-us { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.why-points { display: flex; flex-direction: column; }
.why-point { display: flex; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.why-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(232,160,32,0.2); line-height: 1; min-width: 3rem; }
.why-point h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.why-point p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.why-panel { background: var(--navy-mid); border: 1px solid var(--border); padding: 3rem; position: relative; }
.why-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); }
.panel-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 2rem; line-height: 1.2; }
.no-list { display: flex; flex-direction: column; gap: 1rem; }
.no-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: rgba(232,160,32,0.04); border: 1px solid rgba(232,160,32,0.1); border-radius: 4px; }
.no-icon { width: 32px; height: 32px; background: rgba(232,160,32,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; color: var(--gold); }
.no-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-body); }

/* ─── FLEET ─── */
.fleet { background: var(--navy-mid); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 3rem; }
.fleet-card { background: var(--navy); border: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s, transform 0.3s; }
.fleet-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fleet-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.fleet-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.fleet-card p { font-size: 0.8rem; color: var(--text-muted); }
.fleet-card .dims { font-size: 0.75rem; color: var(--gold); font-weight: 700; margin-top: 0.4rem; }
.fleet-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.25); color: var(--gold); font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1.1rem; border-radius: 100px; }

/* ─── COVERAGE ─── */
.coverage { background: var(--navy); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.coverage-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.zone-card { padding: 1.5rem; background: var(--navy-mid); border: 1px solid var(--border); border-left: 3px solid var(--gold); }
.zone-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.zone-card p { font-size: 0.82rem; color: var(--text-muted); }
.coverage-cta { background: var(--navy-mid); border: 1px solid var(--border); padding: 3rem; }
.coverage-cta p { color: var(--text-body); line-height: 1.75; margin-bottom: 2rem; }

/* ─── FAQ ─── */
.faq { background: var(--navy); }
.faq-list { display: flex; flex-direction: column; margin-top: 3rem; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 700; text-align: left; padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; padding-bottom: 1.5rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── CONTACT FORM ─── */
.contact { background: var(--navy-mid); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--gold); }
.contact-block h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-block a, .contact-block p { color: var(--white); font-weight: 600; font-size: 1rem; text-decoration: none; transition: color 0.2s; }
.contact-block a:hover { color: var(--gold); }
.call-anytime { margin-top: 1rem; padding: 1.2rem 1.5rem; background: rgba(232,160,32,0.08); border: 1px solid rgba(232,160,32,0.2); border-radius: 4px; font-size: 0.85rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 0.6rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
input, textarea, select { background: var(--navy); border: 1px solid var(--border); color: var(--white); font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; padding: 0.85rem 1rem; border-radius: 4px; outline: none; transition: border-color 0.2s; width: 100%; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--gold); color: var(--navy); font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 1rem; padding: 1rem 2rem; border: none; border-radius: 5px; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.25); }

/* ─── PAGE HERO (service + area pages) ─── */
.page-hero { padding: 10rem 6% 6rem; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.page-hero .hero-grid-lines { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; max-width: 750px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { color: var(--text-muted); }
.breadcrumb span.current { color: var(--gold); }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.2rem; animation: none; }
.page-hero p { font-size: 1.05rem; color: var(--text-body); line-height: 1.75; max-width: 620px; margin-bottom: 2rem; }

/* ─── 60-MIN PROMISE BANNER ─── */
.promise-banner {
  background: linear-gradient(135deg, rgba(232,160,32,0.12) 0%, rgba(232,160,32,0.06) 100%);
  border: 1px solid rgba(232,160,32,0.3);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  margin: 2rem 0;
}
.promise-number { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.promise-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.promise-text span { font-size: 0.88rem; color: var(--text-body); }

/* ─── SERVICE DETAIL ─── */
.service-detail { background: var(--navy-mid); }
.detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.detail-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; margin-top: 2.5rem; line-height: 1.2; }
.detail-body h2:first-of-type { margin-top: 0; }
.detail-body p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.97rem; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1.2rem 0 1.5rem; }
.detail-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.93rem; color: var(--text-body); line-height: 1.55; }
.detail-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.detail-panel { background: var(--navy); border: 1px solid var(--border); padding: 2.5rem; position: sticky; top: 6rem; }
.detail-panel h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.2rem; }
.detail-panel p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin-bottom: 1.5rem; }
.panel-trust { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.panel-trust .trust-item { color: var(--text-body); }

/* ─── BOROUGH GRID (same-day page) ─── */
.borough-section { background: var(--navy); }
.borough-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.borough-tag {
  background: rgba(232,160,32,0.07); border: 1px solid rgba(232,160,32,0.2);
  color: var(--text-body); font-size: 0.82rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 100px; transition: all 0.2s;
  text-decoration: none;
}
.borough-tag:hover { background: rgba(232,160,32,0.15); color: var(--gold); }

/* ─── POSTCODE GRID (area pages) ─── */
.postcode-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.postcode-card { background: var(--navy-mid); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 1.5rem; }
.postcode-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--gold); margin-bottom: 0.3rem; }
.postcode-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── INSURANCE BLOCK (dedicated page) ─── */
.insurance-block { background: var(--navy); border: 1px solid var(--border); border-left: 4px solid var(--gold); padding: 2rem; margin: 2rem 0; }
.insurance-block h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 0.8rem; }
.insurance-block p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }

/* ─── VEHICLE DIMENSIONS TABLE (man and van page) ─── */
.vehicle-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.vehicle-table th { background: rgba(232,160,32,0.12); color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 1.2rem; text-align: left; border-bottom: 2px solid rgba(232,160,32,0.3); }
.vehicle-table td { padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--text-body); border-bottom: 1px solid var(--border); }
.vehicle-table tr:hover td { background: rgba(255,255,255,0.02); color: var(--white); }

/* ─── MAP EMBED (area pages) ─── */
.map-section { background: var(--navy-mid); }
.map-wrap { position: relative; border: 1px solid var(--border); overflow: hidden; margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 380px; border: none; filter: invert(0.9) hue-rotate(180deg) saturate(0.5); }
.map-caption { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.8rem; }
.map-caption a { color: var(--gold); text-decoration: none; }

/* ─── VAN PHOTO PLACEHOLDER ─── */
.van-photo-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--navy-mid); border: 2px dashed rgba(232,160,32,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; color: var(--text-muted); text-align: center; padding: 2rem; margin-top: 2rem;
}
.van-photo-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.5; }
.van-photo-placeholder p { font-size: 0.85rem; line-height: 1.5; max-width: 300px; }
.van-photo-placeholder strong { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.05em; }

/* ─── HIGHLIGHT STRIP ─── */
.highlight-strip { background: rgba(232,160,32,0.06); border-top: 1px solid rgba(232,160,32,0.15); border-bottom: 1px solid rgba(232,160,32,0.15); padding: 2rem 6%; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; }
.highlight-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.highlight-item span { color: var(--gold); font-size: 1.2rem; }

/* ─── INTERNAL LINKS STRIP ─── */
.related-links { background: var(--navy); padding: 3rem 6%; }
.related-links h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.8rem; }
.related-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.related-link { background: var(--navy-mid); border: 1px solid var(--border); color: var(--text-body); text-decoration: none; font-size: 0.88rem; font-weight: 600; padding: 0.7rem 1.3rem; border-radius: 4px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.related-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FOOTER ─── */
footer { background: #071422; border-top: 1px solid var(--border); padding: 3rem 6% 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .logo-img { height: 56px; } /* Scales the logo up beautifully for the footer */
.footer-brand .logo-text { font-size: 0.8rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-top: 1rem; max-width: 320px; }
.footer-areas h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.area-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-link { font-size: 0.82rem; color: var(--text-body); text-decoration: none; padding: 0.3rem 0.8rem; border: 1px solid var(--border); border-radius: 100px; transition: all 0.2s; }
.area-link:hover { border-color: var(--gold); color: var(--gold); }
.area-link.soon { opacity: 0.4; cursor: default; pointer-events: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom p span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── HAMBURGER & MOBILE NAV ─── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 98; backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .services-header, .why-grid, .coverage-inner, .contact-inner, .detail-grid, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -100%;
    width: min(320px, 85vw); height: 100vh;
    background: var(--navy-mid); border-left: 1px solid var(--border);
    padding: 5.5rem 2rem 2rem; gap: 0;
    transition: right 0.35s ease; z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 0.95rem; letter-spacing: 0.06em; }
  .nav-links li:last-child { border-bottom: none; padding-top: 1.5rem; }
  .nav-links .nav-cta { display: block; text-align: center; padding: 0.9rem 1rem !important; border-radius: 5px; }
  .hero-trust { gap: 1.2rem; }
  .detail-panel { position: static; }
  .promise-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  nav { padding: 1rem 5%; }
  .coverage-zones, .postcode-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 0.8rem; bottom: 2rem; }
}