/*
Theme Name: DNN Consulting & Projects
Theme URI: https://www.dnnprojects.com
Author: Ronacker Solutions
Author URI: https://ronackersolutions.co.za
Description: Custom WordPress theme for DNN Consulting & Projects — ISO compliance specialists across Southern & Central Africa. Built with scroll animations, counter effects, and full responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dnn-consulting
Tags: one-page, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============ CSS VARIABLES ============ */
:root {
  --navy-deep: #0b1520;
  --navy: #122035;
  --navy-mid: #1a3050;
  --navy-light: #24405e;
  --navy-lighter: #2d4a6e;
  --steel: #3a5a80;
  --steel-light: #4a7098;
  --check-green: #4a9a5a;
  --check-green-light: #5ab86a;
  --check-glow: #6cd080;
  --green-dark: #2a6a3a;
  --red-pin: #d63030;
  --white: #eef2f7;
  --white-pure: #ffffff;
  --text-primary: #e8eef5;
  --text-body: #d0d8e4;
  --text-secondary: #b0bdd0;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ============ LAYOUT ============ */
.dnn-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--check-green-light); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15; margin-bottom: 20px; color: var(--white-pure);
}
.section-subtitle {
  font-size: 17px; color: var(--text-body); line-height: 1.65;
  max-width: 640px; font-weight: 400;
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--check-green), var(--check-green-light));
  color: var(--white-pure); padding: 16px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.4s; box-shadow: 0 4px 20px rgba(74, 154, 90, 0.3);
  border: none; cursor: pointer; white-space: nowrap; font-family: var(--font-body);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 35px rgba(74, 154, 90, 0.5);
  color: var(--white-pure); text-decoration: none;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--check-green-light); padding: 16px 32px;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid rgba(74, 154, 90, 0.3);
  transition: all 0.4s; cursor: pointer; white-space: nowrap; font-family: var(--font-body);
}
.btn-outline:hover {
  border-color: var(--check-green); background: rgba(74, 154, 90, 0.06);
  color: var(--check-glow); text-decoration: none;
}

/* ============ NAVBAR ============ */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: all 0.4s; background: transparent;
}
.site-navbar.scrolled {
  background: rgba(11, 21, 32, 0.94); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 154, 90, 0.1); padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; transition: all 0.3s; }
.site-navbar.scrolled .nav-logo img { height: 44px; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  text-decoration: none; color: var(--text-body); font-size: 14px;
  font-weight: 500; transition: color 0.3s; position: relative; white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--check-green); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--white-pure); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .nav-cta {
  background: linear-gradient(135deg, var(--check-green), var(--check-green-light));
  color: var(--white-pure); padding: 10px 24px; border-radius: 8px;
  font-weight: 700; font-size: 13px; transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(74, 154, 90, 0.3);
}
.nav-menu .nav-cta::after { display: none; }
.nav-menu .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(74, 154, 90, 0.45); }

/* Hamburger */
.hamburger {
  display: none !important; background: none; border: none;
  color: var(--white-pure); font-size: 32px; cursor: pointer;
  padding: 8px; z-index: 1002; line-height: 1;
}

/* Mobile menu */
@media (max-width: 900px) {
  .hamburger { display: block !important; }
  .nav-menu {
    display: none !important; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 21, 32, 0.98); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0; z-index: 1001; padding: 100px 32px 60px;
  }
  .nav-menu.open { display: flex !important; }
  .nav-menu a {
    font-size: 22px; font-weight: 600; color: var(--text-body);
    padding: 20px 0; width: 100%; text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .nav-menu a:hover, .nav-menu a:active { color: var(--check-green-light); }
  .nav-menu a::after { display: none; }
  .nav-menu .nav-cta {
    margin-top: 20px; width: auto; padding: 18px 56px !important;
    font-size: 18px !important; border-radius: 12px !important;
    text-align: center; border-bottom: none;
  }
}

/* ============ HERO ============ */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 35%, var(--navy-mid) 70%, var(--navy-light) 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(74, 154, 90, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 154, 90, 0.4) 1px, transparent 1px);
  background-size: 80px 80px; animation: gridShift 25s linear infinite;
}
@keyframes gridShift { from { transform: translate(0, 0); } to { transform: translate(80px, 80px); } }

.hero-glow-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 154, 90, 0.06), transparent 70%);
  top: -10%; right: -15%; animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 90, 128, 0.08), transparent 70%);
  bottom: -5%; left: -10%; animation: glowFloat 10s ease-in-out 3s infinite;
}
@keyframes glowFloat {
  0%, 100% { opacity: 0.5; transform: scale(1) translate(0, 0); }
  33% { opacity: 0.8; transform: scale(1.05) translate(10px, -10px); }
  66% { opacity: 0.6; transform: scale(0.98) translate(-5px, 5px); }
}

.hero-content { position: relative; z-index: 2; padding-top: 120px; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--check-green-light); margin-bottom: 28px;
  opacity: 0; animation: heroUp 0.7s 0.2s forwards;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--check-green); border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74, 154, 90, 0.6);
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 154, 90, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(74, 154, 90, 0); }
}
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.08; color: var(--white-pure); margin-bottom: 24px;
  opacity: 0; animation: heroUp 0.8s 0.4s forwards;
}
.hero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--check-green-light), var(--check-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--text-body); line-height: 1.75; margin-bottom: 40px;
  opacity: 0; animation: heroUp 0.8s 0.6s forwards;
}
.hero-sub strong { color: var(--check-green-light); font-weight: 600; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: heroUp 0.8s 0.8s forwards;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(74, 154, 90, 0.08);
  opacity: 0; animation: heroUp 0.8s 1s forwards;
}
.hero-stat-number {
  font-family: var(--font-display); font-size: 38px; color: var(--white-pure); display: inline;
}
.hero-stat-plus {
  font-family: var(--font-display); font-size: 22px; color: var(--check-green-light); vertical-align: super;
}
.hero-stat-label {
  font-size: 11px; color: var(--text-body); font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px;
  display: block; white-space: nowrap;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 44px 0;
  border-top: 1px solid rgba(74, 154, 90, 0.05);
  border-bottom: 1px solid rgba(74, 154, 90, 0.05);
  background: rgba(18, 32, 53, 0.5);
}
.trust-bar-label {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-body); margin-bottom: 24px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.logo-block {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 24px; border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--text-body);
  letter-spacing: 2px; opacity: 0.45; transition: all 0.4s;
  height: 54px; min-width: 110px; background: rgba(26, 48, 80, 0.2); white-space: nowrap;
}
.logo-block:hover {
  opacity: 1; border-color: var(--check-green);
  color: var(--white-pure); background: rgba(74, 154, 90, 0.05);
}
.logo-block.sabs { font-size: 20px; letter-spacing: 7px; font-weight: 900; }
.logo-block.dqs { font-size: 24px; font-weight: 900; color: var(--steel-light); letter-spacing: 1px; }

/* ============ ABOUT ============ */
.about-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content p { margin-bottom: 16px; color: var(--text-body); font-size: 16px; line-height: 1.7; }
.about-content p strong { color: var(--check-green-light); }
.about-img-container {
  width: 100%; height: 480px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(74, 154, 90, 0.1); position: relative;
}
.about-img-container img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -20px; left: 30px;
  background: rgba(11, 21, 32, 0.9); backdrop-filter: blur(16px);
  padding: 18px 24px; border-radius: 14px;
  border: 1px solid rgba(74, 154, 90, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.about-badge-number { font-family: var(--font-display); font-size: 34px; color: var(--check-green-light); }
.about-badge-text { font-size: 12px; color: var(--text-body); font-weight: 500; margin-top: 2px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature { display: flex; align-items: flex-start; gap: 10px; padding: 12px; border-radius: 8px; transition: background 0.3s; }
.about-feature:hover { background: rgba(74, 154, 90, 0.04); }
.about-feature-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
  background: rgba(74, 154, 90, 0.1); color: var(--check-green-light);
}
.about-feature-text { font-size: 13px; color: var(--text-body); line-height: 1.5; }
.about-feature-text strong { color: var(--white-pure); display: block; margin-bottom: 2px; }

/* ============ SERVICES ============ */
.services-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy), var(--navy-deep)); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  background: linear-gradient(145deg, rgba(26, 48, 80, 0.35), rgba(18, 32, 53, 0.45));
  border: 1px solid rgba(58, 90, 128, 0.1); border-radius: 14px; padding: 28px 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--check-green), var(--check-green-light));
  transform: scaleX(0); transition: transform 0.5s; transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px); border-color: rgba(74, 154, 90, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.service-icon.quality { background: rgba(58, 90, 128, 0.15); color: var(--steel-light); }
.service-icon.env { background: rgba(74, 154, 90, 0.12); color: var(--check-green-light); }
.service-icon.safety { background: rgba(200, 160, 60, 0.12); color: #d4a840; }
.service-icon.security { background: rgba(200, 80, 80, 0.1); color: #e06060; }
.service-icon.food { background: rgba(230, 140, 50, 0.12); color: #e8a030; }
.service-icon.medical { background: rgba(200, 60, 120, 0.1); color: #e06090; }
.service-icon.rcare { background: rgba(100, 160, 220, 0.1); color: #60a0e0; }
.service-icon.sqas { background: rgba(180, 140, 60, 0.1); color: #c0a040; }
.service-icon.gap { background: rgba(130, 100, 200, 0.1); color: #a080d0; }
.service-icon.ims { background: rgba(60, 180, 180, 0.1); color: #40c0c0; }
.service-card h3 { font-family: var(--font-display); font-size: 17px; color: var(--white-pure); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; }
.service-stat {
  display: inline-block; margin-top: 14px; font-size: 10px; font-weight: 700;
  color: var(--check-green-light); padding: 4px 10px;
  background: rgba(74, 154, 90, 0.06); border-radius: 20px;
  border: 1px solid rgba(74, 154, 90, 0.12);
}

/* ============ IMPACT ============ */
.impact-section {
  padding: 80px 0; position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); overflow: hidden;
}
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 2; }
.impact-item { text-align: center; }
.impact-number { font-family: var(--font-display); font-size: 54px; color: var(--white-pure); line-height: 1; }
.impact-number sup { font-size: 24px; color: var(--check-green-light); vertical-align: super; }
.impact-label { font-size: 12px; color: var(--text-body); font-weight: 600; margin-top: 8px; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.impact-bar { width: 40px; height: 3px; background: var(--check-green); margin: 12px auto 0; border-radius: 2px; }

/* ============ PROCESS ============ */
.process-section { padding: 120px 0; background: var(--navy-deep); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-steps { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.process-card {
  background: linear-gradient(145deg, rgba(26, 48, 80, 0.3), rgba(18, 32, 53, 0.4));
  border: 1px solid rgba(58, 90, 128, 0.1); border-radius: 16px;
  padding: 36px 40px; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.process-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--check-green), var(--check-green-light));
  border-radius: 0 4px 4px 0; opacity: 0.5; transition: opacity 0.4s;
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(74, 154, 90, 0.2); box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3); }
.process-card:hover::before { opacity: 1; }
.process-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.process-number {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--check-green), var(--check-green-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--white-pure); font-weight: 700;
  box-shadow: 0 0 20px rgba(74, 154, 90, 0.25); transition: all 0.4s;
}
.process-card:hover .process-number { box-shadow: 0 0 35px rgba(74, 154, 90, 0.45); transform: scale(1.1); }
.process-card-header h3 { font-family: var(--font-display); font-size: 24px; color: var(--white-pure); }
.process-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.process-desc { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.process-checklist { display: flex; flex-direction: column; gap: 6px; }
.process-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-body); padding: 6px 10px; border-radius: 6px; transition: all 0.3s; }
.process-check:hover { background: rgba(74, 154, 90, 0.04); color: var(--white-pure); }
.process-check-icon {
  width: 20px; height: 20px; border-radius: 5px; display: flex;
  align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
  background: rgba(74, 154, 90, 0.12); color: var(--check-green-light);
}
.process-tags { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.p-tag {
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 6px;
  background: rgba(74, 154, 90, 0.08); border: 1px solid rgba(74, 154, 90, 0.15);
  color: var(--check-green-light);
}

/* ============ TEAM ============ */
.team-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.team-header { text-align: center; margin-bottom: 64px; }
.team-header .section-subtitle { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.team-card {
  background: linear-gradient(180deg, rgba(26, 48, 80, 0.3), rgba(11, 21, 32, 0.5));
  border: 1px solid rgba(58, 90, 128, 0.1); border-radius: 14px; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover { transform: translateY(-10px); border-color: rgba(74, 154, 90, 0.25); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4); }
.team-card.founder { border-color: rgba(74, 154, 90, 0.2); position: relative; }
.team-card.founder::after {
  content: 'FOUNDER'; position: absolute; top: 14px; right: -30px;
  background: linear-gradient(135deg, var(--check-green), var(--check-green-light));
  color: var(--white-pure); font-size: 8px; font-weight: 800;
  letter-spacing: 2px; padding: 4px 38px; transform: rotate(45deg); z-index: 3;
}
.team-photo { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; }
.team-photo-placeholder {
  width: 100%; height: 220px; background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-secondary);
}
.team-info { padding: 18px 14px; }
.team-name { font-family: var(--font-display); font-size: 16px; color: var(--white-pure); margin-bottom: 2px; }
.team-role { font-size: 10.5px; color: var(--check-green-light); font-weight: 600; margin-bottom: 10px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.team-tag {
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
  background: rgba(58, 90, 128, 0.12); border: 1px solid rgba(58, 90, 128, 0.15); color: var(--steel-light);
}
.team-exp { padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.04); font-size: 11px; color: var(--text-body); line-height: 1.4; }
.team-exp-num { font-family: var(--font-display); font-size: 20px; color: var(--check-green-light); display: block; margin-bottom: 2px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 120px 0; background: var(--navy-deep); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card {
  background: rgba(26, 48, 80, 0.2); border: 1px solid rgba(58, 90, 128, 0.08);
  border-radius: 14px; padding: 28px; transition: all 0.4s;
}
.testimonial-card:hover { border-color: rgba(74, 154, 90, 0.15); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 14.5px; color: var(--text-body); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
  padding-left: 18px; border-left: 3px solid var(--check-green);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--steel-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; color: var(--white-pure);
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--white-pure); }
.testimonial-title { font-size: 11px; color: var(--text-body); }
.client-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.03); flex-wrap: wrap;
}
.client-box {
  padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px; font-weight: 700; font-size: 12px; color: var(--text-body);
  letter-spacing: 1px; opacity: 0.5; transition: all 0.4s; background: rgba(26, 48, 80, 0.15);
}
.client-box:hover { opacity: 1; border-color: var(--check-green); color: var(--check-green-light); }
.client-sector { font-size: 9px; color: var(--text-body); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; text-align: center; }

/* ============ REACH ============ */
.reach-section { padding: 120px 0; background: linear-gradient(180deg, var(--navy), var(--navy-deep)); }
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reach-countries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.reach-country {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: rgba(26, 48, 80, 0.2); border: 1px solid rgba(58, 90, 128, 0.08);
  border-radius: 8px; transition: all 0.3s;
}
.reach-country:hover { border-color: var(--red-pin); background: rgba(214, 48, 48, 0.03); }
.reach-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-pin); box-shadow: 0 0 6px rgba(214, 48, 48, 0.4); flex-shrink: 0; }
.reach-country-name { font-size: 12px; font-weight: 600; color: var(--white-pure); white-space: nowrap; }
.reach-country.office .reach-dot { background: var(--check-green); box-shadow: 0 0 6px rgba(74, 154, 90, 0.4); }
.reach-country.office { border-color: rgba(74, 154, 90, 0.15); }
.reach-map-box {
  background: rgba(18, 32, 53, 0.6); border: 1px solid rgba(58, 90, 128, 0.1);
  border-radius: 16px; padding: 20px; min-height: 420px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.reach-map-box img { max-width: 100%; height: auto; }

/* ============ ENQUIRY FORM ============ */
.form-section {
  padding: 120px 0; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(74, 154, 90, 0.04), transparent 60%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 2; }
.form-info { display: flex; flex-direction: column; justify-content: center; }
.form-container {
  background: rgba(11, 21, 32, 0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 154, 90, 0.12); border-radius: 16px; padding: 36px;
}
.form-container h3 { font-family: var(--font-display); font-size: 24px; color: var(--white-pure); margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--text-body); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1px solid rgba(58, 90, 128, 0.2); background: rgba(26, 48, 80, 0.25);
  color: var(--white-pure); font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.3s; outline: none;
}
.form-input:focus { border-color: var(--check-green); }
.form-input::placeholder { color: var(--steel); }
select.form-input { appearance: none; cursor: pointer; }
.form-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.form-checkbox {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-body);
  padding: 8px 14px; border: 1px solid rgba(58, 90, 128, 0.15); border-radius: 8px;
  cursor: pointer; transition: all 0.3s; background: rgba(26, 48, 80, 0.15);
  position: relative; -webkit-tap-highlight-color: transparent; user-select: none;
}
.form-checkbox:hover {
  border-color: var(--check-green); background: rgba(74, 154, 90, 0.05); color: var(--white-pure);
}
.form-checkbox.checked {
  border-color: var(--check-green); background: rgba(74, 154, 90, 0.12); color: var(--check-green-light);
}
.form-checkbox .cb-box {
  width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0; position: relative;
}
.form-checkbox.checked .cb-box {
  background: var(--check-green); border-color: var(--check-green);
}
.form-checkbox.checked .cb-box::after {
  content: '✓'; color: var(--white-pure); font-size: 12px; font-weight: 700;
}
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 8px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--check-green), var(--check-green-light));
  color: var(--white-pure); font-weight: 700; font-size: 15px; font-family: var(--font-body);
  transition: all 0.4s; box-shadow: 0 4px 20px rgba(74, 154, 90, 0.3); margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74, 154, 90, 0.5); }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(74, 154, 90, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--check-green-light); font-size: 18px; flex-shrink: 0;
}
.contact-label { font-size: 14px; font-weight: 700; color: var(--white-pure); }
.contact-value { font-size: 13px; color: var(--text-body); }

/* ============ FOOTER ============ */
.site-footer { padding: 56px 0 24px; border-top: 1px solid rgba(74, 154, 90, 0.06); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 44px; margin-bottom: 12px; }
.footer-text { font-size: 13px; color: var(--text-body); line-height: 1.65; max-width: 300px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--check-green-light); margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--text-body); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white-pure); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--text-body); }
.footer-copy a { color: var(--check-green-light); text-decoration: none; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06); display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--text-body); text-decoration: none; font-size: 13px; font-weight: 700; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--check-green); color: var(--check-green-light); }

/* ============ FOOTER MAPS ============ */
.footer-maps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }

/* ============ WP ADMIN BAR FIX ============ */
.admin-bar .site-navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-navbar { top: 46px; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .reach-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-card-body { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dnn-container { padding: 0 20px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-maps { grid-template-columns: 1fr !important; }
  .reach-countries { grid-template-columns: repeat(2, 1fr); }
  .form-row-2col { grid-template-columns: 1fr; }
  .hero-content { padding-top: 100px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .reach-countries { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
