/* ==========================================================================
   GTM Engineering — Modern design system
   Brand: blue #034EA2 / green #2eca6a · Font: Poppins
   Self-contained (no Bootstrap/jQuery dependency). Includes lightweight
   grid shims (.container/.row/.col-*) so it can be reused across pages.
   ========================================================================== */

:root {
  --blue: #034ea2;
  --blue-700: #023a78;
  --blue-800: #012b59;
  --blue-50: #eaf1fb;
  --green: #2eca6a;
  --green-600: #26a356;
  --green-50: #e7f9ef;
  --ink: #0f1b2d;
  --body: #46566b;
  --muted: #7b8794;
  --white: #ffffff;
  --soft: #f4f8fd;
  --soft-2: #eef4fb;
  --line: #e4edf6;
  --dark: #0c1726;
  --dark-2: #14233a;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(2, 23, 53, .06), 0 2px 6px rgba(2, 23, 53, .06);
  --shadow: 0 12px 30px -14px rgba(3, 45, 95, .28);
  --shadow-lg: 0 30px 60px -24px rgba(3, 45, 95, .40);

  --container: 1180px;
  --nav-h: 76px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--green-600); }
ul { list-style: none; padding: 0; }

::selection { background: var(--green); color: #fff; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.row { display: flex; flex-wrap: wrap; gap: 28px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--soft); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-600);
  background: var(--green-50); padding: 7px 14px; border-radius: var(--radius-pill);
}
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 16px 0 12px;
}
.section-head p { font-size: 1.08rem; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--body); }

/* ----- Buttons ----- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--btn-bg) 70%, transparent);
}
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); box-shadow: var(--shadow); }
.btn--blue { --btn-bg: var(--blue); }
.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--outline {
  background: transparent; color: var(--blue); border-color: var(--line);
  box-shadow: none;
}
.btn--outline:hover { border-color: var(--blue); background: var(--blue-50); color: var(--blue); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 6px 24px -16px rgba(3, 45, 95, .5);
  border-bottom-color: var(--line);
}
.site-nav .container { display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 46px; width: 46px; object-fit: contain; }
.brand .wordmark {
  font-size: 1.7rem; font-weight: 800; letter-spacing: .14em; color: var(--blue);
  line-height: 1;
}
.brand .wordmark span { color: var(--green); }
/* Header brand shows the full company name */
.site-nav .brand .wordmark { font-size: 1.4rem; letter-spacing: .08em; }
.site-nav .brand .wordmark::after {
  content: "Engineering"; margin-left: .42em; font-size: .8rem; font-weight: 500;
  letter-spacing: .01em; color: var(--ink);
}
@media (max-width: 380px) { .site-nav .brand .wordmark::after { display: none; } }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 500; color: var(--ink); font-size: .98rem;
}
.nav-menu > li > a:hover,
.nav-menu > li.current > a { color: var(--blue); background: var(--blue-50); }
.nav-menu .caret { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.has-dropdown.open > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 224px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 9px;
  color: var(--body); font-size: .95rem; font-weight: 500;
}
.dropdown a:hover { background: var(--soft); color: var(--blue); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: transparent;
  cursor: pointer; padding: 0; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: clamp(560px, 92vh, 860px);
  display: flex; align-items: center; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--blue-800), var(--blue) 80%);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06); transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(1, 27, 57, .88) 0%, rgba(2, 43, 89, .66) 45%, rgba(3, 45, 95, .25) 100%),
    linear-gradient(0deg, rgba(4, 17, 33, .55), rgba(4, 17, 33, 0) 40%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; padding-top: var(--nav-h); }
.hero .eyebrow { background: rgba(46, 202, 106, .18); color: #cdfbe0; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800;
  margin: 20px 0 18px; letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--green); }
.hero p { font-size: clamp(1.05rem, 1.8vw, 1.32rem); color: rgba(255, 255, 255, .9); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-meta div { line-height: 1.2; }
.hero-meta b { display: block; font-size: 1.7rem; color: #fff; font-weight: 700; }
.hero-meta span { font-size: .9rem; color: rgba(255, 255, 255, .72); }
.hero-dots { position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .45); cursor: pointer; transition: all .25s var(--ease);
}
.hero-dots button.active { background: var(--green); width: 26px; border-radius: 6px; }

/* ==========================================================================
   Service / feature cards
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green)); transform: scaleX(0);
  transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue); margin-bottom: 20px;
}
.card:hover .icon { background: var(--green-50); color: var(--green-600); }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; margin-bottom: 18px; }
.card .more { font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 7px; }
.card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ----- Split / about ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split .media { position: relative; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.badge-since {
  position: absolute; right: -14px; bottom: -14px; background: var(--blue); color: #fff;
  border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow); text-align: center;
}
.badge-since b { display: block; font-size: 1.6rem; line-height: 1; }
.badge-since span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.checklist { display: grid; gap: 12px; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--green-600); margin-top: 3px; }

/* ----- Stats band ----- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat b { display: block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--blue); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .98rem; }

/* ----- CTA band ----- */
.cta {
  position: relative; overflow: hidden; border-radius: clamp(18px, 3vw, 28px);
  background: linear-gradient(120deg, var(--blue-800), var(--blue) 70%);
  color: #fff; padding: clamp(38px, 6vw, 64px); text-align: center;
}
.cta::after {
  content: ''; position: absolute; width: 360px; height: 360px; right: -90px; top: -120px;
  background: radial-gradient(circle, rgba(46, 202, 106, .35), transparent 70%);
}
.cta h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 14px; position: relative; }
.cta p { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 0 auto 26px; position: relative; }
.cta .hero-actions { justify-content: center; margin-top: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: #aeb9c7; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 44px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; letter-spacing: .02em; }
.footer-brand .wordmark { font-size: 1.7rem; font-weight: 800; letter-spacing: .14em; color: #fff; }
.footer-brand .wordmark span { color: var(--green); }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: .96rem; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #aeb9c7; font-weight: 500; }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .96rem; }
.footer-contact svg { flex: none; width: 19px; height: 19px; color: var(--green); margin-top: 3px; }
.footer-contact a { color: #cdd6e2; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
  font-size: .88rem; color: #7e8a99;
}
.footer-bottom .pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-bottom .pills span {
  font-size: .76rem; padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06); color: #aeb9c7;
}

/* ----- Back to top ----- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--green-600); }
.to-top svg { width: 20px; height: 20px; }

/* ----- Reveal on scroll ----- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 14px 18px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu > li > a { padding: 13px 12px; border-radius: 10px; justify-content: space-between; }
  .dropdown {
    position: static; min-width: 0; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 6px 12px; padding: 0 0 0 6px;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .has-dropdown.open .dropdown { max-height: 320px; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Inner pages — header banner, breadcrumb, grids, forms
   ========================================================================== */
.page-header {
  position: relative; overflow: hidden; color: #fff;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(120deg, var(--blue-800) 0%, var(--blue) 78%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 320px at 88% -30%, rgba(46, 202, 106, .32), transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { background: rgba(46, 202, 106, .18); color: #cdfbe0; margin-bottom: 14px; }
.page-header h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); margin: 0; }
.page-header p { color: rgba(255, 255, 255, .85); margin-top: 12px; max-width: 640px; font-size: 1.06rem; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-top: 16px; font-size: .94rem; color: rgba(255, 255, 255, .7);
}
.breadcrumb a { color: #fff; font-weight: 500; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { opacity: .5; }

/* Prose */
.prose { max-width: 820px; }
.prose p { margin-bottom: 1.15rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2rem 0 .9rem; }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 .7rem; }
.prose ul.bullets { display: grid; gap: 12px; margin: 1.2rem 0; }
.prose ul.bullets li { position: relative; padding-left: 30px; color: var(--body); }
.prose ul.bullets li::before {
  content: ''; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
  border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-50);
}

/* Statement / mission-vision cards */
.statement-grid { display: grid; gap: 22px; }
.statement {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm);
  font-size: 1.1rem; color: var(--body); line-height: 1.6;
}
.statement.blue { border-left-color: var(--blue); }
.statement .n { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); margin-bottom: 8px; }
.statement.blue .n { color: var(--blue); }

/* Image / project gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.gallery figure {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery figure:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--soft-2); }
.gallery figcaption { padding: 15px 17px; font-weight: 500; color: var(--ink); font-size: .98rem; }
.project-block { margin-bottom: 56px; }
.project-block > h3 {
  font-size: 1.35rem; margin-bottom: 6px; padding-bottom: 14px; display: inline-block;
  border-bottom: 3px solid var(--green);
}
.project-block .meta { color: var(--muted); margin: 0 0 22px; }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.cert-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 16px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-card a { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.cert-card img { display: block; width: 100%; height: auto; object-fit: contain; }
.cert-card figcaption { margin-top: 12px; color: var(--ink); font-weight: 600; font-size: .98rem; line-height: 1.35; }
.cert-card figcaption span { display: block; margin-top: 3px; color: var(--muted); font-weight: 400; font-size: .85rem; }

/* Awards & recognition (home) */
.award-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 720px; margin: 0 auto; }
.award-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 16px 20px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.award-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.award-card a { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.award-card img { display: block; width: 100%; height: 320px; object-fit: contain; padding: 10px; }
.award-card figcaption { margin-top: 14px; }
.award-card figcaption strong { display: block; color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.award-card figcaption span { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; }
@media (max-width: 620px) { .award-grid { grid-template-columns: 1fr; max-width: 400px; } .award-card img { height: 360px; } }

/* Client logos */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 20px; }
.logo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px;
  display: grid; place-items: center; min-height: 140px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.logo-card img { max-height: 90px; max-width: 100%; object-fit: contain; }

/* Policy / document download cards */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.doc-card {
  display: flex; align-items: flex-start; gap: 16px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0f3; }
.doc-card .doc-ic { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; }
.doc-card .doc-ic svg { width: 24px; height: 24px; }
.doc-card .doc-body { flex: 1; min-width: 0; }
.doc-card .doc-body strong { display: block; color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.doc-card .doc-desc { display: block; margin-top: 5px; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.doc-card .doc-go { flex: none; align-self: center; color: var(--blue); }
.doc-card .doc-go svg { width: 20px; height: 20px; }
.doc-feature {
  display: flex; align-items: center; gap: 22px; max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.doc-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.doc-feature .df-ic { flex: none; width: 56px; height: 56px; border-radius: 14px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; }
.doc-feature .df-ic svg { width: 28px; height: 28px; }
.doc-feature .df-body { flex: 1; min-width: 0; }
.doc-feature .df-body strong { display: block; color: var(--ink); font-weight: 600; font-size: 1.12rem; }
.doc-feature .df-desc { display: block; margin-top: 4px; color: var(--muted); font-size: .94rem; line-height: 1.5; }
.doc-feature .df-btn { flex: none; display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-weight: 600; font-size: .92rem; padding: 11px 18px; border-radius: var(--radius-pill); white-space: nowrap; }
.doc-feature .df-btn svg { width: 18px; height: 18px; }
@media (max-width: 620px) { .doc-feature { flex-direction: column; text-align: center; } .doc-feature .df-btn { width: 100%; justify-content: center; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.info-cards { display: grid; gap: 16px; }
.info-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.info-card .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--blue-50); color: var(--blue); display: grid; place-items: center; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { margin: 0 0 4px; color: var(--ink); font-size: 1.04rem; }
.info-card p, .info-card a { color: var(--muted); font-size: .98rem; margin: 0; }
.info-card a:hover { color: var(--green-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 500; color: var(--ink); margin-bottom: 7px; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--soft);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(3, 78, 162, .12);
}
.field textarea { min-height: 150px; resize: vertical; }
.map-embed { width: 100%; border: 0; border-radius: var(--radius); min-height: 340px; display: block; box-shadow: var(--shadow-sm); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Contact form feedback */
.form-group { position: relative; }
.validation { display: none; color: #d6353b; font-size: .85rem; margin-top: 6px; }
#sendmessage, #errormessage {
  display: none; padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 500;
}
#sendmessage { background: var(--green-50); color: var(--green-600); border: 1px solid #bfe9cd; }
#errormessage { background: #fdecec; color: #c0392b; border: 1px solid #f4c7c3; }
#errormessage a { color: inherit; text-decoration: underline; }
#sendmessage.show, #errormessage.show { display: block; }

/* Organisation chart — display large and readable */
.org-chart-box {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: clamp(16px, 3vw, 34px); overflow-x: auto; text-align: center;
}
.org-chart-box img {
  display: block; width: 100%; max-width: 1100px; min-width: 560px; height: auto; margin: 0 auto;
}

/* Testimonials (public) */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testimonial {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 32px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.testimonial blockquote { margin: 0 0 22px; color: var(--body); font-size: 1.06rem; line-height: 1.7; position: relative; }
.testimonial blockquote::before {
  content: '\201C'; position: absolute; top: -22px; left: -8px; font-size: 3.4rem; line-height: 1;
  color: var(--green); opacity: .35; font-family: Georgia, 'Times New Roman', serif;
}
.testimonial figcaption { display: flex; align-items: center; gap: 14px; }
.testimonial figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.testimonial figcaption strong { display: block; color: var(--ink); }
.testimonial figcaption span { color: var(--muted); font-size: .9rem; }

/* ==========================================================================
   Sectors page
   ========================================================================== */
.sector-block {
  margin-bottom: clamp(32px, 5vw, 52px); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.sector-banner {
  position: relative; min-height: 160px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; background-color: var(--blue-800);
}
.sector-banner.no-img { background: linear-gradient(120deg, var(--blue-800), var(--green-600)); }
.sb-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 23, 53, .85), rgba(2, 23, 53, .2)); }
.sb-text {
  position: relative; z-index: 1; width: 100%; padding: 22px 26px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.sb-text h2 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.9rem); margin: 0; }
.sb-count {
  background: rgba(255, 255, 255, .2); color: #fff; font-weight: 600; font-size: .85rem;
  padding: 5px 13px; border-radius: var(--radius-pill);
}
.sector-projects { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 22px; padding: 24px 26px; }
.sector-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: inherit; }
.sector-card .sc-img { position: relative; aspect-ratio: 4 / 3; background: var(--soft-2); overflow: hidden; }
.sector-card .sc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.sector-card:hover .sc-img img { transform: scale(1.05); }
.sector-card .sc-badge {
  position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(3, 78, 162, .92); color: #fff;
}
.sector-card .sc-body { padding: 15px 17px; }
.sector-card .sc-body h3 { font-size: 1.02rem; line-height: 1.35; margin-bottom: 8px; color: var(--ink); }
.sector-card .sc-body .more { color: var(--blue); font-weight: 600; font-size: .88rem; }
.sector-card:hover .sc-body .more { color: var(--green-600); }
.sector-empty { color: var(--muted); font-style: italic; padding: 22px 26px; }

/* Anchor jump (from Sectors → project) clears the fixed navbar + brief highlight */
.project-block { scroll-margin-top: 96px; }
.project-block.flash > h3 { animation: flashHighlight 1.8s var(--ease); }
@keyframes flashHighlight {
  0%, 100% { background: transparent; }
  18% { background: var(--green-50); box-shadow: -10px 0 0 var(--green-50), 10px 0 0 var(--green-50); }
}
