@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

/* =============================================
   FULL WIDTH RESET
============================================= */
html, body {
  width: 100% !important;
  max-width: none !important;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}


/* =============================================
   ZADA TECHNOLOGY v2.0 — PREMIUM STYLESHEET
   Welch Marketing Ltd
============================================= */

:root {
  --orange: #F5A623;
  --orange-dark: #D4890A;
  --orange-light: rgba(245,166,35,0.12);
  --dark: #141414;
  --dark-2: #1c1c1c;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --charcoal: #3a3a3a;
  --light: #f5f5f3;
  --light-2: #eeeeeb;
  --white: #ffffff;
  --grey: #888;
  --grey-mid: #666;
  --grey-light: #555;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --trans: 0.25s var(--ease);
  --trans-slow: 0.5s var(--ease);
  --max: 1260px;
  --header-h: 88px;
  --orange-gradient: linear-gradient(135deg, #F5A623 0%, #E8920A 100%);
  --dark-gradient: linear-gradient(180deg, #141414 0%, #1c1c1c 100%);
}

*, *::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(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.05; font-weight: 700; }

/* =============================================
   UTILITY
============================================= */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.section-pad { padding: 100px 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--trans);
}
.btn:hover::after { opacity: 1; }

.btn-primary { background: var(--orange-gradient); color: var(--dark); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* PLACEHOLDER IMAGES */
.img-placeholder {
  position: relative;
  background: var(--dark-3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 40px
  );
}
.img-placeholder .ph-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.img-placeholder .ph-size {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.img-placeholder .ph-icon {
  font-size: 28px;
  opacity: 0.2;
  position: relative;
  z-index: 1;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   HEADER
============================================= */
:root { }

#site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  transition: box-shadow 0.22s ease;
}
#site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.1); }
body.admin-bar #site-header { top: 32px; }

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* LOGO — left */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-height: 52px !important;
  filter: none !important;
}
.site-logo a,
.custom-logo-link {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.08);
  border: 2px dashed rgba(245,166,35,0.4);
  padding: 6px 14px;
  height: 44px;
}
.logo-placeholder-icon { font-size: 18px; }
.logo-placeholder-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.2;
}
.logo-placeholder-sub { font-size: 9px; color: rgba(245,166,35,0.6); display: block; }

/* NAV — centre */
.main-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: center !important;
  flex: 1 1 auto;
  height: 100%;
  padding: 0;
  margin: 0 auto !important;
  list-style: none !important;
  gap: 0;
  overflow: visible;
}
.main-nav > li {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  position: relative;
  list-style: none !important;
  margin: 0; padding: 0;
  flex-shrink: 0;
}
.main-nav > li > a {
  display: flex !important;
  align-items: center !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 16px;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.22s ease, border-color 0.22s ease;
  line-height: 1;
}
.main-nav > li > a:hover,
.main-nav > li:hover > a { color: var(--orange); border-bottom-color: var(--orange); }
.main-nav > li.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.45; }
.main-nav > li:hover > a::after { opacity: 1; }

/* DROPDOWN */
.dropdown {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  position: absolute !important;
  top: 100% !important;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 99999;
  padding: 0; margin: 0;
  list-style: none !important;
}
.main-nav > li:hover > .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown li { list-style: none !important; display: block !important; margin: 0; padding: 0; }
.dropdown li a {
  display: block !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 11px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown li a:hover { background: var(--light); color: var(--orange); padding-left: 28px; }
.dropdown li:last-child a { border-bottom: none; }

/* CTA — right */
.header-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px;
  flex-shrink: 0;
}
.header-cta-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--orange);
  color: var(--dark) !important;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  line-height: 1;
}
.header-cta-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,0.35); }

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none !important;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.22s ease; transform-origin: left center; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 60%, #2a1a00 100%);
}

/* Diagonal orange accent */
/* hero decorative lines removed */

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero h1 {
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.35s both;
  max-width: 900px;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 0.8s var(--ease-out) 0.65s both;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 48px;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stat {
  flex: 1;
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   TRUST BAR — SCROLLING
============================================= */
/* =============================================
   TRUST BAR — SCROLLING ACCREDITATIONS
============================================= */
.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  white-space: nowrap;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.trust-track-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: trust-scroll 75s linear infinite;
  will-change: transform;
}

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  padding: 0 32px;
  border-right: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}

.trust-item img {
  height: 56px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
}

.trust-item-ph {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  white-space: nowrap;
}




.trust-item span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* =============================================
   INTRO / WHY ZADA
============================================= */
.intro-section {
  background: var(--light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: 'ZADA';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 280px;
  font-weight: 800;
  color: rgba(0,0,0,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-left h2 {
  font-size: clamp(40px, 4.5vw, 60px);
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.0;
}
.intro-left h2 em { color: var(--orange); font-style: normal; }

.intro-left p {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.intro-left .intro-cta { margin-top: 36px; display: flex; gap: 16px; align-items: center; }

.usp-cards { display: flex; flex-direction: column; gap: 3px; }

.usp-card {
  background: var(--white);
  border-left: 4px solid transparent;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: var(--trans);
  cursor: default;
}
.usp-card:hover {
  border-left-color: var(--orange);
  box-shadow: 4px 0 0 0 var(--orange), 0 4px 24px rgba(0,0,0,0.06);
  transform: translateX(4px);
}

.usp-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 96px;
  transition: var(--trans);
}
.usp-card:hover .usp-num { transform: scale(1.05); }

.usp-body strong {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.usp-body span { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* =============================================
   MANAGING AGENTS
============================================= */
.agents-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.agents-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange-gradient);
}

.agents-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.agents-section h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}
.agents-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.agent-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.agent-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  transition: var(--trans);
  cursor: default;
}
.agent-badge:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.agent-badge.featured {
  border-color: rgba(245,166,35,0.4);
  color: rgba(245,166,35,0.8);
}

.agent-note {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-left: 4px solid var(--orange);
  padding: 20px 28px;
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: left;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.7;
}

/* =============================================
   SECTORS
============================================= */
.sectors-section {
  background: var(--dark-2);
  padding: 120px 0;
  position: relative;
}

.sectors-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  overflow: hidden;
}
.sectors-wave svg { width: 100%; height: 100%; }

.sectors-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

.sectors-header {
  margin-bottom: 56px;
}
.sectors-header h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--orange);
  margin-bottom: 12px;
}
.sectors-header p { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 520px; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.sector-card {
  background: var(--dark-3);
  padding: 36px 28px;
  border-left: 4px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: rgba(245,166,35,0.05);
  transition: var(--trans-slow);
}
.sector-card:hover { border-left-color: var(--orange); transform: translateY(-4px); }
.sector-card:hover::before { height: 100%; }
.sector-card.core { border-left-color: var(--orange); background: var(--dark-4); }

.sector-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--dark);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.sector-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sector-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.sector-card .sector-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(4px);
  transition: var(--trans);
}
.sector-card:hover .sector-link { opacity: 1; transform: translateY(0); }

.sectors-footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sectors-count {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   SERVICES
============================================= */
.services-section {
  background: var(--white);
  padding: 120px 0;
}
.services-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--dark);
  margin-bottom: 16px;
}
.services-header p { font-size: 17px; color: var(--grey); max-width: 540px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans-slow);
}
.service-card:hover { background: #fafaf8; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: var(--orange);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 21px;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.service-card p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 24px; }
.service-link {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}
.service-link:hover { gap: 10px; }

/* =============================================
   TWO REVENUE STREAMS
============================================= */
.streams-section {
  background: var(--dark);
  padding: 100px 0;
}
.streams-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.stream-card {
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.stream-card:first-child { background: var(--orange); }
.stream-card:last-child { background: var(--dark-3); }

.stream-number {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  top: 20px; right: 28px;
  color: currentColor;
}
.stream-card:first-child .stream-number { color: var(--dark); }
.stream-card:last-child .stream-number { color: var(--white); }

.stream-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.stream-card:first-child h3 { color: var(--dark); }
.stream-card:last-child h3 { color: var(--white); }

.stream-card p { font-size: 15px; line-height: 1.75; }
.stream-card:first-child p { color: rgba(26,26,26,0.7); }
.stream-card:last-child p { color: rgba(255,255,255,0.6); }

.stream-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stream-list li {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stream-card:first-child .stream-list li { color: var(--dark); }
.stream-card:last-child .stream-list li { color: rgba(255,255,255,0.7); }
.stream-list li::before { content: '▶'; font-size: 8px; }
.stream-card:first-child .stream-list li::before { color: rgba(26,26,26,0.4); }
.stream-card:last-child .stream-list li::before { color: var(--orange); }

/* =============================================
   CASE STUDIES
============================================= */
.cases-section {
  background: var(--light);
  padding: 120px 0;
}
.cases-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.cases-header h2 { font-size: clamp(36px, 4.5vw, 56px); color: var(--dark); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--trans);
}
.case-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-6px); }

.case-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.case-card:hover .case-img img { transform: scale(1.06); }
.case-sector-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.case-body { padding: 32px; }
.case-body h3 { font-size: 21px; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
.case-body p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 24px; }

.case-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 20px;
}
.case-stat-item { }
.case-stat-item .num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.case-stat-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); }

/* =============================================
   MANUFACTURERS / PARTNERS — MARQUEE
============================================= */
.partners-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 32px;
}

.partners-track-wrap { position: relative; overflow: hidden; }
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 120px; z-index: 2;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.partners-track-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }

.partners-track {
  display: flex;
  gap: 0;
  animation: marquee 80s linear infinite;
  width: max-content;
}

.partner-item {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.5px;
  padding: 0 36px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: var(--trans);
  white-space: nowrap;
  cursor: default;
}
.partner-item:hover { color: var(--orange); }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
  background: var(--dark);
  padding: 120px 0;
}
.testimonials-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; text-align: center; }
.testimonials-section h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  text-align: left;
  transition: var(--trans);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 28px;
  padding-top: 24px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.testimonial-role { font-size: 13px; color: var(--orange); margin-top: 2px; }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--orange-gradient);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 19px;
  color: rgba(26,26,26,0.7);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn-dark { font-size: 15px; padding: 20px 56px; position: relative; animation: pulse-orange 2.5s infinite; }

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 36px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}

.footer-brand .logo-text { color: var(--white); display: block; margin-bottom: 16px; font-size: 24px; }
.footer-brand img, .footer-brand .custom-logo-link { display: block; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; line-height: 1.85; margin-bottom: 24px; max-width: 280px; color: #555555; }

.footer-contact { margin-bottom: 4px; }
.footer-phone {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 2px;
}
.footer-email { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-email:hover { color: var(--orange); }

.footer-address {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.8; }
.footer-copyright a { color: rgba(255,255,255,0.35); margin-left: 16px; }
.footer-copyright a:hover { color: var(--orange); }

.footer-reg-info {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.8;
  text-align: right;
}

.footer-accreds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-accred {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 72px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 60%, #2a1a00 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange-gradient);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: var(--orange); }

.page-hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.0;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.7;
}

/* =============================================
   SERVICE / SECTOR SINGLE PAGE
============================================= */
.single-content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.single-main h2 { font-size: 32px; color: var(--dark); margin: 36px 0 16px; }
.single-main h2:first-child { margin-top: 0; }
.single-main p { font-size: 16px; color: var(--grey-mid); line-height: 1.85; margin-bottom: 16px; }

.features-block {
  background: var(--light);
  border-left: 4px solid var(--orange);
  padding: 36px;
  margin: 40px 0;
}
.features-block h3 { font-size: 22px; color: var(--dark); margin-bottom: 24px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.5;
}
.feature-item::before { content: '▶'; color: var(--orange); font-size: 9px; margin-top: 4px; flex-shrink: 0; }

.mfr-block {
  background: var(--dark);
  padding: 36px;
  margin-top: 40px;
}
.mfr-block h3 { font-size: 20px; color: var(--white); margin-bottom: 20px; }
.mfr-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mfr-chip {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--trans);
}
.mfr-chip:hover { color: var(--orange); border-color: var(--orange); }

/* SIDEBAR */
.single-sidebar {}
.sidebar-cta-box {
  background: var(--dark);
  padding: 36px;
  margin-bottom: 20px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sidebar-cta-box h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; }
.sidebar-cta-box p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.sidebar-phone { font-family: var(--font-heading); font-size: 15px; color: var(--orange); margin-top: 14px; display: block; }

.sidebar-nav-box { background: var(--light); padding: 28px; margin-bottom: 20px; }
.sidebar-nav-box h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.sidebar-nav-box ul li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sidebar-nav-box ul li a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--trans);
}
.sidebar-nav-box ul li a:hover { color: var(--orange); padding-left: 6px; }
.sidebar-nav-box ul li.active a { color: var(--orange); font-weight: 500; }

.sidebar-accreds-box { background: var(--light); padding: 28px; }
.sidebar-accreds-box h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.accred-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.accred-chip {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  padding: 5px 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  transition: var(--trans);
}
.accred-chip:hover { border-color: var(--orange); color: var(--orange); }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 { font-size: 40px; color: var(--dark); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--grey-mid); line-height: 1.85; margin-bottom: 40px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-item h5 {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-detail-item p { font-size: 15px; color: var(--dark); margin: 0; line-height: 1.5; }
.contact-detail-item a { color: var(--dark); }
.contact-detail-item a:hover { color: var(--orange); }

.company-reg-box {
  margin-top: 32px;
  background: var(--light);
  padding: 24px;
  border-left: 4px solid var(--orange);
}
.company-reg-box h5 {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.company-reg-box p { font-size: 13px; color: var(--grey-mid); line-height: 1.8; margin: 0; }

/* CONTACT FORM */
.contact-form-box { background: var(--light); padding: 48px; }
.contact-form-box h3 { font-size: 32px; color: var(--dark); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: var(--trans);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,166,35,0.1); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; font-size: 15px; padding: 18px; margin-top: 8px; }
.form-message { margin-top: 12px; font-size: 14px; text-align: center; font-weight: 500; }

/* =============================================
   SUPPORT PAGE
============================================= */
.support-cards {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 40px 32px;
  text-align: center;
  transition: var(--trans);
}
.support-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.support-card-icon { font-size: 40px; margin-bottom: 20px; }
.support-card h3 { font-size: 24px; color: var(--dark); margin-bottom: 12px; }
.support-card p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 28px; }

/* =============================================
   LOCATION PAGE
============================================= */
.location-content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
}
.location-main h2 { font-size: 32px; color: var(--dark); margin: 36px 0 16px; }
.location-main h2:first-child { margin-top: 0; }
.location-main p { font-size: 16px; color: var(--grey-mid); line-height: 1.85; margin-bottom: 16px; }

.location-services-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.location-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--trans);
}
.location-service-link::before { content: '→'; color: var(--orange); font-size: 13px; }
.location-service-link:hover { color: var(--orange); padding-left: 6px; }

.mfr-seo-block {
  margin-top: 48px;
  background: var(--dark);
  padding: 40px;
}
.mfr-seo-block h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.mfr-seo-block p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

/* AREAS INDEX */
.areas-index {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
}
.areas-region { margin-bottom: 56px; }
.areas-region h3 {
  font-size: 14px;
  font-family: var(--font-heading);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.areas-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-card {
  background: var(--light);
  padding: 18px 20px;
  border-left: 3px solid transparent;
  transition: var(--trans);
}
.area-card:hover { border-left-color: var(--orange); background: var(--light-2); transform: translateX(3px); }
.area-card a { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); display: block; }
.area-card a:hover { color: var(--orange); }
.area-card span { font-size: 12px; color: var(--grey); }

/* =============================================
   EMERGENCY PAGE
============================================= */
.emergency-wrap {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.emergency-inner { max-width: 680px; }
.emergency-badge {
  display: inline-block;
  background: #c0392b;
  color: white;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 32px;
  animation: pulse-orange 2s infinite;
}
.emergency-inner h1 { font-size: clamp(40px, 7vw, 68px); color: var(--white); margin-bottom: 24px; }
.emergency-inner p { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 48px; }
.emergency-phone { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: var(--orange); display: block; margin-bottom: 12px; }
.emergency-alt { font-size: 15px; color: rgba(255,255,255,0.4); }
.emergency-alt a { color: var(--orange); }

/* =============================================
   BLOG / KNOWLEDGE CENTRE
============================================= */
.blog-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card { border: 1px solid rgba(0,0,0,0.07); overflow: hidden; transition: var(--trans); }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--dark-2); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; }
.blog-cat { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }

/* =============================================
   ZADA INTERNATIONAL
============================================= */
.international-section {
  background: var(--dark-2);
  padding: 100px 0;
}
.international-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.international-content h2 { font-size: clamp(36px, 4vw, 52px); color: var(--white); margin-bottom: 20px; }
.international-content p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 16px; }
.international-img {
  height: 400px;
  position: relative;
}

/* =============================================
   POLICY PAGES
============================================= */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 48px;
}
.policy-wrap h2 { font-size: 28px; color: var(--dark); margin: 48px 0 16px; }
.policy-wrap h2:first-child { margin-top: 0; }
.policy-wrap p { font-size: 16px; color: var(--grey-mid); line-height: 1.85; margin-bottom: 16px; }
.policy-wrap ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-wrap ul li { font-size: 16px; color: var(--grey-mid); line-height: 1.85; margin-bottom: 8px; }

/* =============================================
   MOBILE NAV OVERLAY
============================================= */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 100px 32px 40px;
  flex-direction: column;
}
.mobile-open .mobile-nav-overlay { display: flex; }

.mobile-nav-list {}
.mobile-nav-list > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-list > li > a {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  padding: 18px 0;
  letter-spacing: 0.5px;
}
.mobile-nav-list > li > a:hover { color: var(--orange); }

.mobile-sub {
  padding: 0 0 16px 16px;
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  padding: 7px 0;
  transition: var(--trans);
}
.mobile-sub a:hover { color: var(--orange); }

.mobile-nav-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-phone {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .main-nav > li > a { padding: 0 12px; font-size: 12px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
  :root { --header-h: 68px; }

  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .streams-inner { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .single-content-wrap { grid-template-columns: 1fr; }
  .location-content-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .international-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .support-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .areas-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; border-right: none; margin-right: 0; padding-right: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .cases-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px 0; }
  .container { padding: 0 24px; }
  .hero-content { padding: 60px 24px; }
  .intro-inner,.agents-inner,.sectors-inner,.services-inner,.cases-inner,.testimonials-inner { padding: 0 24px; }
  .sector-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(48px, 13vw, 72px); }
  .footer-top { padding: 0 24px; }
  .footer-bottom { padding: 0 24px; }
  .areas-grid-inner { grid-template-columns: 1fr 1fr; }
  .single-content-wrap,.location-content-wrap,.contact-wrap { padding: 48px 24px; }
  .contact-form-box { padding: 32px 24px; }
  .policy-wrap { padding: 48px 24px; }
}

@media (max-width: 380px) {
  .hero-btns { flex-direction: column; }
  .areas-grid-inner { grid-template-columns: 1fr; }
}

/* =============================================
   LOGO PLACEHOLDERS
============================================= */

/* Trust bar label */
.trust-bar-label-wrap {
  display: flex;
  align-items: center;
  padding: 0 24px 0 40px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  margin-right: 0;
}
.trust-bar-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

/* Small logo placeholder in trust bar */
.logo-ph-small {
  width: 36px;
  height: 28px;
  background: rgba(245,166,35,0.08);
  border: 1.5px dashed rgba(245,166,35,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  transition: var(--trans);
  cursor: help;
}
.logo-ph-small:hover { background: rgba(245,166,35,0.15); border-color: var(--orange); }
.logo-ph-small-icon { font-size: 14px; opacity: 0.6; }

/* Partner logo placeholder in marquee */
.partner-item-wrap {
  padding: 0 32px;
  border-right: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.partner-logo-ph {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.06);
  border: 1.5px dashed rgba(245,166,35,0.3);
  padding: 8px 14px;
  border-radius: 2px;
  transition: var(--trans);
  cursor: help;
}
.partner-logo-ph:hover { background: rgba(245,166,35,0.12); border-color: var(--orange); }
.partner-logo-ph-icon { font-size: 14px; opacity: 0.5; }
.partner-logo-ph-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-mid);
  letter-spacing: 0.5px;
}

/* Managing agent logo placeholders */
.agent-badge-ph {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(245,166,35,0.3);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--trans);
  cursor: help;
}
.agent-badge-ph:hover { border-color: var(--orange); background: rgba(245,166,35,0.08); }
.agent-badge-ph-icon { font-size: 14px; opacity: 0.4; }
.agent-badge-ph-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* Accreditation logo placeholders in trust strip / sidebar */
.accred-logo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(245,166,35,0.06);
  border: 1.5px dashed rgba(245,166,35,0.25);
  padding: 10px 14px;
  border-radius: 2px;
  transition: var(--trans);
  cursor: help;
  min-width: 80px;
}
.accred-logo-ph:hover { border-color: var(--orange); background: rgba(245,166,35,0.1); }
.accred-logo-ph-icon { font-size: 18px; opacity: 0.35; }
.accred-logo-ph-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  line-height: 1.3;
}

/* Trust bar layout fix */
.trust-bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

/* =============================================
   FOOTER LOGO PLACEHOLDER
============================================= */
.footer-logo-ph {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245,166,35,0.06);
  border: 1.5px dashed rgba(245,166,35,0.25);
  padding: 12px 16px;
  margin-bottom: 20px;
  width: fit-content;
}

/* =============================================
   AREAS INDEX — region headings styled correctly
============================================= */
.areas-region h2 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-weight: 600;
}

/* =============================================
   HERO OVERLAY — confirms dark overlay is applied
   When you upload a real image, it sits BEHIND this
   overlay automatically. No extra work needed.
============================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
/* The dark background of .hero acts as the overlay */
/* So image at 30% opacity = 70% dark overlay automatically */

/* =============================================
   SEO: H1/H2 hierarchy — correct structure
============================================= */
/* Page hero H1 — primary keyword, large */
.page-hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.0;
  /* H1 contains: "[Service/Location] | Zada Technology" */
}
/* Section headings are H2 — supporting keywords */
.intro-left h2,
.agents-section h2,
.sectors-header h2,
.services-header h2,
.cases-header h2,
.testimonials-section h2,
.cta-banner h2 {
  /* All correctly H2 — secondary headings */
}
/* Card titles H3 — tertiary */
.sector-card h3,
.service-card h3,
.case-body h3 {
  /* Correctly H3 */
}

/* =============================================
   FIXES v11
============================================= */

/* Header layout — logo left, nav centre, cta right */
.site-logo { max-width: 260px; flex-shrink: 0; }
.header-right { flex-shrink: 0; margin-left: auto; }

/* Hero darker overlay */
.hero { background: #0e0e0e; }
.hero-bg { opacity: 0.22 !important; }

/* Page hero — dark gradient, no text, featured image overrides with overlay */
.page-hero { background: #141414; }
.page-hero-bg { opacity: 0.25; }
.page-hero-ph { background: linear-gradient(135deg, #141414 0%, #1e1e1e 70%, #2a1600 100%) !important; }

/* Page hero content — left aligned, max-width contained */
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero h1,
.page-hero-sub,
.breadcrumb { text-align: left !important; }



/* Footer logo spacing */
.footer-brand .custom-logo-link,
.footer-brand .custom-logo-link img,
.footer-brand > a:first-child { margin-bottom: 20px; display: block; }

/* Footer accreditation logos — image slots */
.footer-accreds {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.footer-accred {
  display: flex;
  align-items: center;
  height: 60px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 2px;
}
.footer-accred img {
  height: 44px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
/* Placeholder until real logos uploaded */
.footer-accred-ph {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 0 12px;
  border-radius: 2px;
}
.footer-accred-ph span {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Areas / inner page content — left align with page container */
.areas-index,
.single-content-wrap,
.location-content-wrap,
.policy-wrap,
.cases-inner,
.blog-grid { 
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (max-width: 600px) {
  .areas-index,
  .single-content-wrap,
  .location-content-wrap,
  .policy-wrap { padding-left: 24px; padding-right: 24px; }
  .page-hero-inner { padding: 0 24px; }
}

/* =============================================
   SERVICES DROPDOWN — 2 columns
============================================= */
.main-nav > li:first-child > .dropdown {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-width: 520px;
  left: 0;
  transform: none !important;
}
.main-nav > li:first-child:hover > .dropdown {
  display: grid !important;
  visibility: visible;
  opacity: 1;
  transform: none !important;
}
.main-nav > li:first-child > .dropdown li a {
  padding: 10px 20px;
  font-size: 13px;
}

/* Real logo images in marquee + agents */
.partner-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: none;
  max-width: 150px;
  object-fit: contain;
}

.agent-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
  max-width: 150px;
  object-fit: contain;
}
/* When a real logo is present, give the badge a clean white chip so colour logos read on the dark section */
.agent-badge-ph.has-logo,
.agent-badge-ph:has(.agent-logo-img) {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 14px 20px;
}
.agent-badge-ph.has-logo:hover,
.agent-badge-ph:has(.agent-logo-img):hover {
  border-color: var(--orange);
  background: #fff;
}

/* =============================================
   ANIMATION SAFETY — ensure elements never stay hidden
============================================= */
/* Service cards always visible - no fade */
.service-card { opacity: 1 !important; transform: none !important; }

/* Fallback: if JS doesn't fire within 2s, show everything */
@keyframes forceVisible {
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  animation: forceVisible 0.01s ease 2.5s forwards;
}

/* =============================================
   v12 UPDATES
============================================= */

/* Mobile logo fix - prevent squashing */
@media (max-width: 960px) {
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
  }
}
@media (max-width: 480px) {
  .site-logo img,
  .site-logo .custom-logo,
  .custom-logo-link img {
    height: 32px !important;
    max-height: 32px !important;
    max-width: 130px !important;
  }
  .header-inner { padding: 0 20px !important; }
}

/* Desktop header - all nav items visible, smaller font to fit */
@media (min-width: 961px) {
  .main-nav > li > a {
    padding: 0 11px !important;
    font-size: 12px !important;
    letter-spacing: .8px !important;
  }
  .header-cta-btn {
    padding: 11px 20px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }
}
@media (min-width: 1200px) {
  .main-nav > li > a {
    padding: 0 14px !important;
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
  }
  .header-cta-btn {
    padding: 13px 28px !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
  }
}

/* Martin Reid Control Room service card highlight */
.service-card.martin-reid {
  border-top: 3px solid var(--orange);
  background: #fafaf8;
}

/* Footer bottom text - lighter */
.footer-copyright,
.footer-copyright a,
.footer-reg-info { color: #666666 !important; }
.footer-copyright a:hover { color: var(--orange) !important; }
.footer-accred-ph span { color: #999999 !important; }
.footer-accred-ph { border-color: rgba(0,0,0,.2) !important; }

/* Remove any body/html margins causing side gaps */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* =============================================
   LOGO STRIPS — ALWAYS VISIBLE, NO FILTER
============================================= */
.trust-bar { background: #fff !important; }
.trust-bar::before { background: linear-gradient(to right, #fff, transparent) !important; }
.trust-bar::after  { background: linear-gradient(to left,  #fff, transparent) !important; }
.trust-item img {
  filter: none !important;
  opacity: 1 !important;
  height: 64px !important;
  max-width: 160px !important;
}
.footer-accreds { background: #f8f8f8 !important; border-top: 1px solid rgba(0,0,0,.08) !important; }
.footer-accred img {
  filter: none !important;
  opacity: 1 !important;
  height: 54px !important;
}


/* =============================================
   FOOTER — CLEAN WHITE DESIGN
============================================= */
#site-footer {
  background: #ffffff;
  border-top: 3px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 72px 48px 56px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.footer-phone:hover { color: var(--orange); }

.footer-phone-2 {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-phone-2:hover { color: var(--orange); }

.footer-email {
  display: block;
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-email:hover { text-decoration: underline; }

.footer-address {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--orange); }

/* Accreditations strip */
.footer-accreds-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 48px;
  background: #f8f8f8;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.footer-accred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.footer-accred-item img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
}

.footer-accred-ph {
  padding: 0 16px;
  height: 48px;
  display: flex;
  align-items: center;
  border: 1px dashed rgba(0,0,0,.15);
}

.footer-accred-ph span {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap;
}

/* Bottom bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #888;
}

.footer-bottom-left a {
  font-size: 12px;
  color: #888;
  text-decoration: none;
}
.footer-bottom-left a:hover { color: var(--orange); }

.footer-bottom-right {
  font-size: 12px;
  color: #aaa;
  text-align: right;
}

/* Social bar */
.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 16px 48px 24px;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,.06);
}

.footer-reg-address {
  font-size: 11px;
  color: #bbb;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,.06);
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-social-icon:hover {
  background: var(--orange);
  color: #fff;
}

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 40px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-accreds-bar { padding: 20px 24px; }
  .footer-bottom-bar, .footer-social-bar { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .footer-bottom-right { text-align: left; }
}

/* =============================================
   v4.0 MODERNISATION LAYER
   Accessibility, polish & micro-refinements
   (additive only — no structural changes)
============================================= */

/* Accessible focus states — keyboard users see a clear ring, mouse users don't */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .trust-track-wrap, .partners-track { animation: none !important; }
}

/* Crisper image rendering + prevent layout shift */
img { image-rendering: auto; }

/* Refined, softer card shadows for a more modern feel */
.service-card,
.sector-card,
.case-card,
.support-card,
.usp-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover,
.case-card:hover {
  box-shadow: 0 12px 40px -12px rgba(20,20,20,0.18);
}

/* Smoother sticky-header transition incl. subtle backdrop blur when scrolled */
#site-header {
  backdrop-filter: saturate(140%) blur(0px);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
#site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
}

/* Selection colour on-brand */
::selection { background: rgba(245,166,35,0.28); color: var(--dark); }

/* Buttons: snappier, more tactile press */
.btn:active { transform: translateY(0) scale(0.985); }

/* Links in body copy get a refined underline on hover */
.single-main a:not(.btn):hover,
.policy-wrap a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Better default form field focus across the site */
input:focus, textarea:focus, select:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15) !important;
  outline: none;
}

/* Skip-link for screen readers / keyboard users */
.zada-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 100000;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
}
.zada-skip-link:focus { left: 8px; top: 8px; }

/* Hero polish — refined eyebrow with accent line */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* Section rhythm — a touch more breathing room on large screens for a modern feel */
@media (min-width: 1100px) {
  .intro-section, .sectors-section, .services-section, .cases-section { padding-top: 110px; padding-bottom: 110px; }
}

/* Trust/partner logos render crisper */
.trust-item img, .partner-logo img, .footer-accred-item img { image-rendering: -webkit-optimize-contrast; }

/* Broken/missing logo images degrade gracefully (no ugly browser broken-image icon) */
.partner-logo-img, .agent-logo-img, .trust-item img, .footer-accred-item img {
  max-width: 100%;
}
.partner-logo-img:not([src]), .partner-logo-img[src=""],
.agent-logo-img:not([src]), .agent-logo-img[src=""] { display: none; }

/* =============================================
   MISSION / VISION / VALUES — responsive
============================================= */
.mvv-section { padding: 96px 0; background: var(--dark); }
.mvv-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.mvv-head { text-align: center; margin-bottom: 48px; }
.mvv-title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); color: #fff; }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mvv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px 32px;
}
.mvv-card-primary {
  background: var(--orange);
  border: none;
}
.mvv-card-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.mvv-card-primary .mvv-card-label { color: rgba(26,26,26,.65); }
.mvv-card-text { font-size: 16px; color: rgba(255,255,255,.82); line-height: 1.75; margin: 0; }
.mvv-card-primary .mvv-card-text { color: var(--dark); }

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; gap: 12px; }
  .mvv-card { border-radius: 8px; padding: 32px 26px; }
  .mvv-section { padding: 64px 0; }
  .mvv-inner { padding: 0 22px; }
}

/* =============================================
   RESPONSIVE GRID HELPERS
   Override inline grids on tablet/mobile so
   they stack cleanly instead of crushing.
============================================= */
@media (max-width: 900px) {
  .zada-rgrid-3 { grid-template-columns: 1fr !important; gap: 12px !important; }
  .zada-rgrid-2 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .zada-rgrid-sidebar { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* =============================================
   MOBILE SAFETY NET
   Catches oversized fixed type & padding from
   inline styles on small screens.
============================================= */
@media (max-width: 600px) {
  /* Tame large fixed headings set via inline styles */
  h2[style*="font-size:44px"],
  h2[style*="font-size:48px"],
  h2[style*="font-size:40px"] {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }
  /* Reduce heavy horizontal padding from inline grids */
  .zada-rgrid-sidebar { padding-left: 22px !important; padding-right: 22px !important; }
  /* Prevent any element forcing horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100%; }
}
