/* ============================================================
   FENCING COMPANY DERBY — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162032;
  --navy-light: #1e2e42;
  --amber:      #e8a020;
  --amber-dark: #c4851a;
  --amber-pale: #fef3dc;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --grey-light: #e8ecf2;
  --grey-mid:   #8a96a3;
  --text:       #1a2535;
  --text-light: #4a5568;

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg:  0 12px 48px rgba(13,27,42,0.18);
  --transition: 0.22s ease;

  --max-w: 1160px;
  --section-pad: 80px 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: var(--grey-light);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--amber);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--amber); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo-main span { color: var(--amber); }
.logo-sub {
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--grey-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--navy-light);
  color: var(--amber);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  padding: 9px 18px !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232,160,32,0.04) 40px,
      rgba(232,160,32,0.04) 41px
    );
}
.hero-accent {
  position: absolute;
  left: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
  display: block;
}
.hero-desc {
  color: var(--grey-light);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-mid);
}
.trust-pill svg { color: var(--amber); width: 16px; height: 16px; }

/* ── HERO FORM BOX ── */
.hero-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-form-header {
  background: var(--amber);
  padding: 18px 24px;
  text-align: center;
}
.hero-form-header h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.hero-form-header p {
  font-size: 13px;
  color: var(--navy-mid);
  margin-top: 2px;
}
.hero-form-body { padding: 24px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--amber);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(13,27,42,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SECTION TITLES ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.section-title em { color: var(--amber); font-style: normal; }
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 14px;
  max-width: 600px;
  line-height: 1.7;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ── SERVICES SECTION ── */
.services-section { padding: var(--section-pad); background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--grey-light);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 180px;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--amber);
  gap: 8px;
}
.service-img-placeholder svg { width: 40px; height: 40px; opacity: 0.7; }
.service-img-placeholder span {
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-card-body { padding: 22px; }
.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── WHY US ── */
.why-section { padding: var(--section-pad); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img-block {
  position: relative;
}
.why-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}
.why-main-img img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--navy);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-float .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.why-badge-float .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dark);
}
.why-icon svg { width: 22px; height: 22px; }
.why-feature h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { padding: var(--section-pad); background: var(--navy); }
.process-section .section-title { color: var(--white); }
.process-section .section-label { background: rgba(232,160,32,0.2); }
.process-section .section-desc { color: var(--grey-mid); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0,
    var(--amber) 12px,
    transparent 12px,
    transparent 24px
  );
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--grey-mid); line-height: 1.6; }

/* ── AREAS ── */
.areas-section { padding: var(--section-pad); background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.area-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--amber);
}
.area-chip svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }
.area-chip:hover svg { opacity: 1; }
.areas-cta { margin-top: 32px; text-align: center; }

/* ── QUOTE / CTA SECTION ── */
.quote-section { padding: var(--section-pad); background: var(--white); }
.quote-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.quote-inner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.quote-info .section-title { color: var(--white); }
.quote-info .section-desc { color: var(--grey-mid); }
.quote-contacts { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--grey-light);
  font-size: 15px;
}
.qc-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,160,32,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.qc-icon svg { width: 20px; height: 20px; }
.qc-label { font-size: 11px; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.qc-val { font-weight: 600; color: var(--white); }
.qc-val a { color: var(--amber); }

/* ── TALLY FORM ── */
.tally-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px;
}
.tally-header {
  background: var(--amber);
  margin: -28px -28px 24px;
  padding: 16px 28px;
  text-align: center;
}
.tally-header h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.tally-header p {
  font-size: 13px;
  color: var(--navy-mid);
  margin-top: 2px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--section-pad); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: 12px; color: var(--grey-mid); }

/* ── MAP SECTION ── */
.map-section { padding: var(--section-pad); background: var(--off-white); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-info h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.map-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.map-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dark);
}
.map-detail-icon svg { width: 18px; height: 18px; }
.map-detail-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.map-detail-text span { font-size: 14px; color: var(--text-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: var(--grey-mid);
  padding: 60px 0 0;
  border-top: 3px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-main { font-size: 18px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-nap { font-size: 13px; line-height: 2; }
.footer-nap strong { color: var(--grey-light); }
.footer-nap a { color: var(--amber); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-light);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--grey-mid);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--grey-mid);
}
.footer-bottom a { color: var(--amber); }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-light);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--amber); }
.breadcrumb-sep { color: var(--grey-mid); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(232,160,32,0.03) 30px,
    rgba(232,160,32,0.03) 31px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero p {
  font-size: 17px;
  color: var(--grey-mid);
  max-width: 640px;
  line-height: 1.7;
}

/* ── INLINE FORM SECTION ── */
.form-section { padding: var(--section-pad); background: var(--off-white); }
.form-section-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.form-section-head {
  background: var(--amber);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.form-section-head h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}
.form-section-head p { font-size: 14px; color: var(--navy-mid); }
.form-section-body { padding: 40px; }

/* ── SERVICE & AREA PAGE LAYOUT (shared) ── */
.service-content-section,
.area-content-section { padding: var(--section-pad); }
.service-layout,
.area-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.service-body h2,
.area-body h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.service-body h2:first-child,
.area-body h2:first-child { margin-top: 0; }
.service-body h3,
.area-body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 28px 0 10px;
}
.service-body p,
.area-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-body ul,
.area-body ul {
  margin: 14px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-body ul li,
.area-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.service-body ul li::before,
.area-body ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.service-body .highlight-box,
.area-body .highlight-box {
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
}
.service-body .highlight-box strong,
.area-body .highlight-box strong { color: var(--amber-dark); }
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--amber);
  margin: 28px 0;
}
.img-placeholder svg { width: 48px; height: 48px; opacity: 0.6; }
.img-placeholder span {
  font-size: 12px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CONTENT IMAGES ── */
.content-figure { margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.content-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.service-card-img img,
.shc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-sidebar,
.area-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-card-head {
  background: var(--navy);
  padding: 16px 20px;
}
.sidebar-card-head h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.sidebar-card-body { padding: 20px; }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 14px;
}
.sidebar-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.sc-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-dark);
}
.sc-icon svg { width: 16px; height: 16px; }
.sc-label {
  font-size: 11px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sc-val { font-weight: 700; color: var(--navy); font-size: 15px; }
.sc-val a { color: var(--amber); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--grey-light);
}
.sidebar-link:hover { background: var(--navy); color: var(--amber); }
.sidebar-link span { font-size: 16px; }
.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.component-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.component-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.component-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.related-services,
.related-areas { padding: 60px 0; background: var(--off-white); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.related-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.related-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Areas hub */
.areas-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.area-hub-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.area-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.area-hub-card h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.area-hub-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.area-hub-meta {
  font-size: 12px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.area-services-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.area-services-mini a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 20px;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.area-services-mini a:hover {
  background: var(--navy);
  color: var(--amber);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-card a.phone { color: var(--amber-dark); font-weight: 700; font-size: 18px; }
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.map-embed-wrap iframe { width: 100%; height: 420px; display: block; }

@media (max-width: 1024px) {
  .service-layout,
  .area-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .service-sidebar,
  .area-sidebar { position: static; }
  .related-grid,
  .areas-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .components-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .related-grid,
  .areas-hub-grid,
  .contact-cards { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-amber { color: var(--amber); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-box { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-inner { padding: 32px 24px; }
  .form-section-head { padding: 20px 24px; }
  .form-section-body { padding: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-badge-float { position: static; margin-top: 16px; display: inline-flex; gap: 12px; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav a {
  color: var(--grey-light);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-light);
  display: block;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav .nav-cta {
  background: var(--amber);
  color: var(--navy);
  text-align: center;
  border-radius: var(--radius);
  margin-top: 20px;
  padding: 16px;
  border-bottom: none;
}
