/* ============================================================
   RJP SURVEYORS — Main Stylesheet
   Colour scheme: Dark Blue · White · Grey · Orange Accent
   ============================================================ */

/* ---------- 1. RESET & ROOT VARIABLES ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #0d2b55;
  --primary-mid:   #1a3d7a;
  --primary-light: #2056a8;
  --accent:        #f97316;
  --accent-dark:   #ea6c0a;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light-grey:    #e8edf5;
  --mid-grey:      #9ca3af;
  --grey:          #6b7280;
  --dark-grey:     #374151;
  --text:          #1e293b;
  --text-light:    #64748b;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-md:  0 10px 25px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.08);
  --shadow-lg:  0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 30px 60px rgba(0,0,0,.15);

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --max-w: 1280px;
  --section-gap: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-light); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---------- 3. LAYOUT UTILITIES ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section  { padding: var(--section-gap) 0; }
.section-alt { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4  { gap: 16px; }
.gap-8  { gap: 32px; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- 5. HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(13,43,85,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; color: var(--white); }

.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-cta { margin-left: 12px; }

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 40px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); color: var(--accent); }
.mobile-menu .btn { margin-top: 16px; font-size: 1rem; }

/* ---------- 6. HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,43,85,.85) 0%,
    rgba(13,43,85,.65) 50%,
    rgba(26,61,122,.55) 100%
  );
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating geometric shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  animation: floatShape 8s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; top: -10%; right: -5%; animation-delay: 0s; }
.shape-2 { width: 250px; height: 250px; bottom: 20%; left: -5%; animation-delay: 3s; }
.shape-3 { width: 150px; height: 150px; top: 40%; right: 20%; animation-delay: 6s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero-card:hover { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
.hero-card img {
  width: 100%; height: 320px;
  object-fit: cover;
  opacity: 0.9;
}
.hero-card-body { padding: 24px; }
.hero-card-body h4 { color: var(--white); margin-bottom: 8px; }
.hero-card-body p  { color: rgba(255,255,255,.65); font-size: 0.9rem; }

.hero-stats-float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-stats-float strong { display: block; font-size: 1.6rem; line-height: 1; }
.hero-stats-float span  { font-size: 0.78rem; opacity: 0.9; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ---------- 7. STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ---------- 8. SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  group: true;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,43,85,.6) 100%);
}

.service-icon-badge {
  position: absolute;
  top: 16px; left: 16px;
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
}
.service-icon-badge svg { width: 24px; height: 24px; color: var(--white); }

.service-body { padding: 24px; }
.service-body h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ---------- 9. WHO WE WORK FOR ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.client-card:hover::before { transform: scaleX(1); }
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.client-icon {
  width: 64px; height: 64px;
  background: rgba(13,43,85,.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.client-card:hover .client-icon {
  background: var(--accent);
}
.client-icon svg {
  width: 30px; height: 30px;
  color: var(--primary);
  transition: color var(--transition);
}
.client-card:hover .client-icon svg { color: var(--white); }

.client-card h4 {
  font-size: 0.95rem;
  color: var(--primary);
}

/* ---------- 10. COVERAGE MAP ---------- */
.coverage-section { background: var(--primary); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-text h2 { color: var(--white); margin-bottom: 20px; }
.coverage-text p  { color: rgba(255,255,255,.7); margin-bottom: 32px; }

.coverage-regions { display: flex; flex-direction: column; gap: 12px; }
.coverage-region {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}
.coverage-region:hover {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.4);
}
.coverage-region svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

#uk-map {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,.1);
}

/* ---------- 11. PROCESS SECTION ---------- */
.process-timeline {
  position: relative;
  margin-top: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 72px);
  background: linear-gradient(to bottom, var(--accent), var(--primary-light));
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.process-step:nth-child(odd)  .step-content { grid-column: 1; text-align: right; padding-right: 48px; }
.process-step:nth-child(odd)  .step-spacer  { grid-column: 2; }
.process-step:nth-child(odd)  .step-empty   { grid-column: 3; }
.process-step:nth-child(even) .step-empty   { grid-column: 1; }
.process-step:nth-child(even) .step-spacer  { grid-column: 2; }
.process-step:nth-child(even) .step-content { grid-column: 3; text-align: left;  padding-left: 48px; }

.step-spacer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.step-dot {
  width: 56px; height: 56px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(249,115,22,.12);
  z-index: 1;
  position: relative;
  transition: all var(--transition);
}
.step-dot:hover {
  background: var(--accent);
  transform: scale(1.1);
}
.step-dot:hover svg { color: var(--white); }
.step-dot svg { width: 22px; height: 22px; color: var(--accent); }

.step-content {
  padding-bottom: 24px;
}
.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.step-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.step-empty { /* placeholder column */ }

/* ---------- 12. ABOUT SECTION ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-imagery { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 160px; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 28px; left: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; font-weight: 800; }
.about-badge span  { font-size: 0.78rem; opacity: 0.9; letter-spacing: 0.03em; }

.about-text { }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 20px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(249,115,22,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--accent); }
.feature-text h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.feature-text p  { font-size: 0.88rem; margin: 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--light-grey);
}
.about-stat { }
.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 0.82rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ---------- 13. TEAM SECTION ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
}
.team-photo-placeholder .avatar-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder .avatar-icon svg { width: 44px; height: 44px; }

.team-role-badge {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.team-info { padding: 20px 18px 24px; }
.team-info h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; }
.team-info .role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.team-info p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- 14. TESTIMONIALS ---------- */
.testimonials-section { background: var(--primary); }
.testimonials-section .section-title  { color: var(--white); }
.testimonials-section .section-label  { background: rgba(249,115,22,.2); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.65); }

.testimonials-carousel { position: relative; margin-top: 56px; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: all 0.5s ease;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 18px; height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.92rem; color: var(--white); }
.author-info span  { font-size: 0.8rem;  color: rgba(255,255,255,.5); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.t-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--white);
}
.t-btn:hover { background: var(--accent); border-color: var(--accent); }
.t-btn svg { width: 18px; height: 18px; }
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--transition);
}
.t-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ---------- 15. CONTACT / ENQUIRY FORM ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: rgba(13,43,85,.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-detail-text strong { display: block; font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.contact-detail-text span  { font-size: 0.9rem; color: var(--text-light); }
.contact-detail-text a { color: var(--text-light); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--accent); }

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark-grey);
  letter-spacing: 0.02em;
}
label .req { color: var(--accent); }

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,61,122,.1);
}
input.error, select.error, textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
textarea { min-height: 120px; resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.file-upload-area {
  border: 2px dashed var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
  position: relative;
}
.file-upload-area:hover {
  border-color: var(--primary-light);
  background: rgba(26,61,122,.03);
}
.file-upload-area.dragover {
  border-color: var(--accent);
  background: rgba(249,115,22,.05);
}
.file-upload-area input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon {
  width: 44px; height: 44px;
  background: rgba(13,43,85,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.upload-icon svg { width: 22px; height: 22px; color: var(--primary); }
.upload-text strong { display: block; font-size: 0.9rem; color: var(--primary); margin-bottom: 4px; }
.upload-text span  { font-size: 0.82rem; color: var(--mid-grey); }
.upload-selected { margin-top: 10px; font-size: 0.83rem; color: var(--accent); font-weight: 600; }

.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-light);
}
.gdpr-check input[type="checkbox"] {
  width: 18px; min-width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--primary);
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; color: #22c55e; }
.form-success h3 { color: var(--primary); margin-bottom: 10px; }
.form-success p   { color: var(--text-light); }

.field-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 2px;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
  background: #08182e;
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li a svg { width: 14px; height: 14px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ---------- 17. SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- 18. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- 19. PAGE BANNER (inner pages) ---------- */
.page-banner {
  background: var(--primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner h1 { color: var(--white); }
.page-banner p  { color: rgba(255,255,255,.7); margin-top: 16px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- 20. CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1.05rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.5); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 21. MAP LEAFLET OVERRIDES ---------- */
.leaflet-container { font-family: inherit; }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ---------- 22. RESPONSIVE BREAKPOINTS ---------- */

/* Large tablets */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid  { grid-template-columns: repeat(4, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Tablet */
@media (max-width: 860px) {
  :root { --section-gap: 72px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-trust { flex-wrap: wrap; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid  { grid-template-columns: repeat(2, 1fr); }

  .coverage-inner { grid-template-columns: 1fr; }
  #uk-map { height: 380px; }

  .process-timeline::before { left: 28px; transform: none; }
  .process-step {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto;
  }
  .process-step:nth-child(odd)  .step-content,
  .process-step:nth-child(even) .step-content {
    grid-column: 2; grid-row: 1;
    text-align: left;
    padding-left: 24px;
    padding-right: 0;
  }
  .process-step:nth-child(odd)  .step-spacer,
  .process-step:nth-child(even) .step-spacer {
    grid-column: 1; grid-row: 1;
    justify-content: flex-start;
    padding-left: 4px;
  }
  .step-dot { width: 48px; height: 48px; }
  .process-step:nth-child(odd)  .step-empty,
  .process-step:nth-child(even) .step-empty { display: none; }

  .about-inner    { grid-template-columns: 1fr; }
  .about-imagery  { display: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-track { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }
  .enquiry-form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 520px) {
  :root { --section-gap: 56px; }

  .container { padding: 0 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .clients-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-form-wrap { padding: 24px 16px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 10px; }
}

/* ---------- 23. UTILITY / HELPER CLASSES ---------- */
.text-accent  { color: var(--accent); }
.text-white   { color: var(--white); }
.text-primary { color: var(--primary); }
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.hidden  { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Loading animation */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
