/*
Theme Name: Spray Foams Removal
Theme URI: https://sprayfoamsremoval.co.uk/
Author: Spray Foams Removal
Author URI: https://sprayfoamsremoval.co.uk/
Description: Professional spray foam removal specialists across the Midlands. Custom WordPress theme with full SEO, structured data, and location pages.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: sprayfoams
Tags: business, one-page, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  --col-navy:    #0d1b2a;
  --col-dark:    #111827;
  --col-orange:  #e85d04;
  --col-amber:   #f48c06;
  --col-cream:   #fdf6ec;
  --col-white:   #ffffff;
  --col-grey:    #6b7280;
  --col-lgrey:   #f3f4f6;
  --col-border:  #e5e7eb;
  --font-body:   'Atkinson Hyperlegible', sans-serif;
  --font-head:   'Barlow Condensed', sans-serif;
  --radius:      6px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.1);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.18);
  --transition:  all .25s ease;
  --max-w:       1200px;
  --nav-h:       72px;
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--col-dark);
  background: var(--col-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--col-orange); outline-offset: 3px; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }

/* ================================================================
   LAYOUT
================================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } }

/* ================================================================
   SCROLL PROGRESS
================================================================ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--col-orange), var(--col-amber));
  width: 0%; z-index: 9999; transition: width .1s linear;
}

/* ================================================================
   HEADER / NAV
================================================================ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--col-navy);
  box-shadow: var(--shadow-md);
  height: var(--nav-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 48px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.4rem; color: var(--col-white); line-height: 1.1;
}
.site-logo .logo-text span { color: var(--col-orange); }

/* Desktop nav */
#primary-nav { display: flex; align-items: center; gap: 4px; }
#primary-nav > li { position: relative; }
#primary-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius);
  color: rgba(255,255,255,.88); font-family: var(--font-head);
  font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  transition: var(--transition);
}
#primary-nav > li > a:hover,
#primary-nav > li > a.active { color: var(--col-white); background: rgba(255,255,255,.1); }
#primary-nav .has-dropdown > a::after {
  content: '▾'; font-size: .7rem; opacity: .7;
}
/* Dropdown */
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--col-white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px;
  border-top: 3px solid var(--col-orange);
  padding: 8px 0; z-index: 100;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  color: var(--col-dark); font-family: var(--font-body);
  font-size: .925rem; transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--col-lgrey); color: var(--col-orange); }

.nav-cta {
  margin-left: 12px; padding: 10px 20px;
  background: var(--col-orange); color: var(--col-white) !important;
  border-radius: var(--radius); font-weight: 800 !important;
  transition: var(--transition);
}
.nav-cta:hover { background: #c44e02 !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--col-white); border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
#mobile-nav {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--col-navy); z-index: 999; overflow-y: auto;
  padding: 24px 20px 40px;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block; padding: 14px 0;
  color: var(--col-white); font-family: var(--font-head);
  font-weight: 700; font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
#mobile-nav a:hover { color: var(--col-amber); }
#mobile-nav .mob-sub { padding-left: 20px; }
#mobile-nav .mob-sub a { font-size: 1rem; color: rgba(255,255,255,.75); }

@media (max-width: 900px) {
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--col-orange);
  padding: 10px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--col-white); font-family: var(--font-head);
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
}
.trust-item svg { width: 18px; height: 18px; fill: currentColor; }

/* ================================================================
   HERO
================================================================ */
.hero {
  background: var(--col-navy);
  position: relative; overflow: hidden; min-height: 520px;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 800px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,.15); border: 1px solid rgba(232,93,4,.4);
  color: var(--col-amber); border-radius: 100px;
  padding: 6px 14px; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--col-white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--col-orange); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image img { border-radius: 8px; box-shadow: var(--shadow-lg); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--col-orange);
}
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--col-orange); color: var(--col-white);
  border-color: var(--col-orange);
}
.btn-primary:hover { background: #c44e02; border-color: #c44e02; }
.btn-secondary {
  background: transparent; color: var(--col-white);
  border-color: rgba(255,255,255,.4);
}
.btn-secondary:hover { border-color: var(--col-white); background: rgba(255,255,255,.08); }
.btn-outline {
  background: transparent; color: var(--col-orange);
  border-color: var(--col-orange);
}
.btn-outline:hover { background: var(--col-orange); color: var(--col-white); }
.btn-dark {
  background: var(--col-navy); color: var(--col-white);
  border-color: var(--col-navy);
}
.btn-dark:hover { background: #162234; }

/* ================================================================
   SECTION HEADINGS
================================================================ */
.section-label {
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--col-orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--col-navy); margin-bottom: 16px;
}
.section-title span { color: var(--col-orange); }
.section-intro { color: var(--col-grey); font-size: 1.05rem; max-width: 680px; }

/* ================================================================
   SERVICES GRID
================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
.service-card {
  background: var(--col-white); border-radius: 8px;
  border: 1px solid var(--col-border);
  padding: 28px; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--col-orange); }
.service-icon {
  width: 52px; height: 52px; background: var(--col-cream);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.6rem;
}
.service-card h3 { font-size: 1.15rem; color: var(--col-navy); margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--col-grey); line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--col-orange); font-weight: 700;
  font-family: var(--font-head); font-size: .95rem;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ================================================================
   IMAGE ROWS
================================================================ */
.img-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin: 32px 0;
}
.img-row img { border-radius: 6px; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 600px) { .img-row { grid-template-columns: 1fr; } }

/* ================================================================
   PROCESS STEPS
================================================================ */
.process-section { background: var(--col-navy); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 24px; margin-top: 48px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--col-orange); color: var(--col-white);
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step-card h3 { color: var(--col-white); font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--col-cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--col-white); border-radius: 8px;
  padding: 32px; border-left: 4px solid var(--col-orange);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--col-amber); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--col-dark); line-height: 1.7; font-style: italic; }
.testimonial-author { margin-top: 18px; font-weight: 700; color: var(--col-navy); }
.testimonial-author span { color: var(--col-grey); font-weight: 400; font-size: .9rem; }

/* ================================================================
   LOCATIONS GRID
================================================================ */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 16px; }
.location-card {
  background: var(--col-white); border: 1px solid var(--col-border);
  border-radius: 8px; padding: 20px 16px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--col-navy);
}
.location-card:hover { border-color: var(--col-orange); color: var(--col-orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.location-card .icon { font-size: 1.4rem; margin-bottom: 8px; }

/* ================================================================
   BLOG CARDS
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.blog-card {
  background: var(--col-white); border-radius: 8px;
  border: 1px solid var(--col-border); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: .82rem; color: var(--col-grey); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; color: var(--col-navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: .9rem; color: var(--col-grey); line-height: 1.6; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: var(--col-navy);
  padding: 60px 0 48px;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--col-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 680px; }

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb { background: var(--col-lgrey); padding: 10px 0; }
.breadcrumb ol { display: flex; gap: 6px; flex-wrap: wrap; font-size: .85rem; color: var(--col-grey); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.breadcrumb a { color: var(--col-orange); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--col-dark); font-weight: 700; }

/* ================================================================
   SIDEBAR
================================================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--col-navy); color: var(--col-white);
  border-radius: 8px; padding: 24px; box-shadow: var(--shadow-md);
}
.sidebar-card h4 { font-size: 1.1rem; margin-bottom: 16px; color: var(--col-amber); }
.sidebar-card ul li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul a { color: rgba(255,255,255,.8); font-size: .9rem; transition: var(--transition); }
.sidebar-card ul a:hover { color: var(--col-amber); }
.sidebar-phone {
  display: block; font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 900; color: var(--col-amber); margin-top: 12px;
}

/* ================================================================
   LOCATION SERVICES BOX
================================================================ */
.location-services {
  background: var(--col-lgrey); border-radius: 8px; padding: 24px;
  margin: 32px 0; border-left: 4px solid var(--col-orange);
}
.location-services h3 { font-size: 1.1rem; color: var(--col-navy); margin-bottom: 14px; }
.location-services ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 8px; }
.location-services li { padding: 8px 14px; background: var(--col-white); border-radius: var(--radius); border: 1px solid var(--col-border); }
.location-services a { color: var(--col-navy); font-weight: 700; font-size: .9rem; transition: var(--transition); }
.location-services a:hover { color: var(--col-orange); }

/* ================================================================
   MAP
================================================================ */
.map-wrap {
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md); margin: 32px 0;
  aspect-ratio: 16/7;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ================================================================
   FAQ ACCORDION
================================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--col-border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--col-navy); text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--col-orange); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--col-lgrey); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--col-orange); transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--col-orange); color: var(--col-white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--col-grey); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ================================================================
   CONTACT FORM
================================================================ */
.contact-section { background: var(--col-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem; color: var(--col-navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--col-border); font-family: var(--font-body);
  font-size: 1rem; background: var(--col-white); color: var(--col-dark);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--col-orange); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .required { color: var(--col-orange); }
.honeypot-field { display: none !important; }
.form-notice { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .92rem; }
.form-notice.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-notice.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ================================================================
   CTA STRIP
================================================================ */
.cta-strip { background: var(--col-orange); padding: 56px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--col-white); max-width: 600px; }
.cta-strip .btn-dark { background: var(--col-navy); border-color: var(--col-navy); }

/* ================================================================
   FOOTER
================================================================ */
#site-footer { background: var(--col-navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-wrap img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  color: var(--col-amber); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { padding: 4px 0; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--col-white); }
.footer-contact a { color: rgba(255,255,255,.8); display: block; padding: 4px 0; font-size: .9rem; }
.footer-contact a:hover { color: var(--col-amber); }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--col-white); }

/* ================================================================
   CONTENT BODY (inner pages)
================================================================ */
.content-body h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--col-navy); margin: 36px 0 14px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.2rem; color: var(--col-navy); margin: 24px 0 10px; }
.content-body p { margin-bottom: 16px; color: var(--col-dark); line-height: 1.75; }
.content-body ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.content-body ul li { margin-bottom: 6px; color: var(--col-dark); }
.content-body a { color: var(--col-orange); font-weight: 700; }
.content-body a:hover { text-decoration: underline; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.credential-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.cred-badge {
  background: var(--col-lgrey); border-radius: 8px; padding: 18px;
  display: flex; align-items: center; gap: 12px;
  border-left: 4px solid var(--col-orange);
}
.cred-badge .icon { font-size: 1.4rem; }
.cred-badge p { font-size: .88rem; font-weight: 700; color: var(--col-navy); }

/* ================================================================
   PRIVACY PAGE
================================================================ */
.legal-content h2 { font-size: 1.35rem; color: var(--col-navy); margin: 32px 0 12px; }
.legal-content p,
.legal-content li { color: var(--col-dark); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }

/* ================================================================
   SITEMAP PAGE (HTML)
================================================================ */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 32px; margin-top: 40px; }
.sitemap-col h3 { font-size: 1rem; color: var(--col-navy); font-weight: 800; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--col-orange); }
.sitemap-col ul { list-style: none; }
.sitemap-col li { padding: 5px 0; }
.sitemap-col a { color: var(--col-grey); font-size: .9rem; }
.sitemap-col a:hover { color: var(--col-orange); }

/* ================================================================
   RESPONSIVE UTILITIES
================================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 48px 0; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { gap: 16px; }
  .cta-strip-inner { justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .blog-grid,
  .services-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   WORDPRESS ADMIN BAR OFFSET
================================================================ */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ================================================================
   WP ALIGNMENT & GALLERY CLASSES
================================================================ */
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--col-grey); text-align: center; margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item img { border-radius: 4px; }

/* ================================================================
   SKIP LINK (accessibility)
================================================================ */
.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--col-orange); color: white; padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 0; }
