/* ============================================================
   AL BANY GROUP — Premium EPC Homepage
   Design tokens, layout, components, responsive
   ============================================================ */

/* -------- 1. Tokens -------- */
:root {
  --c-red: #ff0a00;
  --c-red-dark: #cc0800;
  --c-yellow: #ffec1a;
  --c-black: #000000;
  --c-charcoal: #111111;
  --c-graphite: #181818;
  --c-graphite-2: #1e1e1e;
  --c-beige: #d8cece;
  --c-white: #ffffff;
  --c-off: #f7f7f7;
  --c-line: #e6e6e6;
  --c-muted: #6b6b6b;
  --c-ink: #0a0a0a;

  /* Font system:
     --ff-head    → Poppins: clean, bold, modern, corporate (headings & UI)
     --ff-body    → Inter: simple, readable, professional (paragraphs)
     --ff-accent  → Playfair Display: classy serif (premium small accents)
     --ff-tagline → Cinzel: wide-spaced uppercase serif (tagline text only) */
  --ff-head: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-accent: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-tagline: "Cinzel", "Playfair Display", Georgia, serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --h-header: 84px;
  --h-header-scrolled: 68px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* -------- 2. Reset & Base -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}
img,
svg,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-head);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-ink);
}
h1, h2 {
  font-weight: 500;
}
h3, h4 {
  font-weight: 500;
}
p {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* -------- 3. Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding-block: clamp(72px, 9vw, 140px);
  position: relative;
}
.section--dark {
  background: var(--c-graphite);
  color: var(--c-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-white);
}
.section--off {
  background: var(--c-off);
}

/* Section heading */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--c-red);
}
.section--dark .section-eyebrow {
  color: var(--c-yellow);
}
.section--dark .section-eyebrow::before {
  background: var(--c-yellow);
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 18px;
  line-height: 1.18;
}
.section-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-muted);
  max-width: 720px;
  line-height: 1.7;
}
.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg {
  transition: transform 0.4s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--primary:hover {
  background: var(--c-black);
  color: var(--c-yellow);
}
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn--outline:hover {
  background: var(--c-ink);
  color: var(--c-white);
}
.btn--yellow {
  background: var(--c-yellow);
  color: var(--c-black);
}
.btn--yellow:hover {
  background: var(--c-black);
  color: var(--c-yellow);
}
/* Hero Enquire Now — yellow box with leading dash like the SAS reference */
.hero-cta--primary {
  padding: 18px 30px;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(255, 236, 26, 0.32);
}
.hero-cta--primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.hero-cta-dash {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin-right: 4px;
}
/* Larger size used on the hero */
.btn--lg {
  padding: 17px 32px;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn--lg.btn--primary {
  box-shadow: 0 10px 28px rgba(255, 10, 0, 0.4);
}
.btn--lg.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
/* Stronger contrast on hero ghost variant — needs to stand out over video */
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}

/* Inline link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover {
  gap: 14px;
}

/* ============================================================
   4. HEADER + NAV + MEGA MENU
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--h-header);
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header.is-scrolled,
.site-header.mega-open {
  height: var(--h-header-scrolled);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}
.brand-logo {
  height: 46px;
  width: auto;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.site-header.is-scrolled .brand-logo,
.site-header.mega-open .brand-logo {
  height: 40px;
}

/* Default state (over hero): use the mark only, hide tagline for premium look */
.brand-logo-full {
  display: none;
}
.brand-logo-mark {
  display: block;
  height: 84px;
  width: auto;
  border-radius: 4px;
  /* JPEG carries its own white background — keep it visible as supplied */
}
.site-header.is-scrolled .brand-logo-mark,
.site-header.mega-open .brand-logo-mark {
  height: 72px;
}

/* Primary nav */
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.primary-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after,
.nav-item.is-open .nav-link::after {
  transform: scaleX(1);
}
.site-header.is-scrolled .nav-link,
.site-header.mega-open .nav-link {
  color: #ffffff;
}
.nav-cta {
  margin-left: 14px;
}
.nav-cta .btn {
  padding: 11px 22px;
  font-size: 12.5px;
}

/* Mega menu — middle aligned, covers the body content line width */
.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  pointer-events: none;
  width: min(calc(100vw - 2 * var(--gutter)), var(--container));
}
.mega-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--c-white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(-10px) scale(0.985);
  transition: opacity 0.4s var(--ease-out),
    transform 0.45s var(--ease-out), visibility 0.4s;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.mega-panel.is-open {
  opacity: 1;
  transform: translateY(12px) scale(1);
  visibility: visible;
  pointer-events: auto;
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: 320px;
}
.mega-feature {
  padding: 48px 44px;
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.mega-feature-accent {
  width: 36px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: 18px;
}
.mega-feature-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.mega-feature-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
  margin-bottom: 24px;
}
.mega-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 11px 18px;
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}
.mega-feature-cta:hover {
  background: var(--c-red);
}
.mega-feature-cta.is-primary {
  background: var(--c-red);
}
.mega-feature-cta.is-primary:hover {
  background: var(--c-ink);
}
.mega-feature-cta svg {
  transition: transform 0.3s var(--ease);
}
.mega-feature-cta:hover svg {
  transform: translateX(3px);
}

.mega-columns {
  padding: 48px 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: start;
}
/* Visual card spans remaining space */
.mega-visual-card {
  grid-column: span 1;
  align-self: stretch;
}
.mega-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}
.mega-link-list li {
  margin-bottom: 4px;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  transition: all 0.3s var(--ease);
}
.mega-link-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 10, 0, 0.08);
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}
.mega-link:hover {
  color: var(--c-red);
  transform: translateX(4px);
}
.mega-link:hover .mega-link-arrow {
  background: var(--c-red);
  color: var(--c-white);
}

/* Mega visual card — fills blank space in single-column menus */
.mega-visual-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
  flex: 1;
  align-self: stretch;
}
.mega-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mega-visual-card:hover .mega-visual-img {
  transform: scale(1.04);
}
.mega-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.mega-visual-accent {
  width: 32px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.mega-visual-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  font-family: var(--ff-body);
  font-weight: 400;
  margin: 0;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 110;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-white);
  transition: all 0.35s var(--ease);
  margin: 0 auto;
}
.site-header.is-scrolled .mobile-menu-toggle span {
  background: var(--c-ink);
}
.mobile-menu-toggle.is-active span {
  background: var(--c-white);
}
.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100%;
  background: var(--c-charcoal);
  color: var(--c-white);
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
}
.m-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-white);
  text-align: left;
}
.m-link-btn {
  border: none;
  background: none;
}
.m-chev {
  transition: transform 0.35s var(--ease);
}
.m-item.is-open .m-chev {
  transform: rotate(180deg);
}
.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.m-item.is-open .m-sub {
  max-height: 600px;
}
.m-feature-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 4px 14px;
  line-height: 1.6;
}
.m-sublist {
  padding: 0 0 18px 12px;
  border-left: 2px solid var(--c-red);
  margin-left: 4px;
}
.m-sublink {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s var(--ease);
}
.m-sublink:hover {
  color: var(--c-yellow);
}
.mobile-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1080px;
  width: 100%;
  overflow: hidden;
  color: var(--c-white);
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0a url("../public/images/hero-poster.svg") center/cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.is-loaded {
  opacity: 1;
}

/* Hero image slider */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--h-header);
}
.hero-content {
  max-width: 920px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--c-yellow);
}
.hero-title {
  font-size: clamp(38px, 6.4vw, 80px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin-bottom: 28px;
}
.hero-title .word {
  display: inline-block;
  margin-right: 0;
  font-weight: 500;
}
.hero-title .accent {
  color: var(--c-yellow);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
/* Hero CTAs must remain permanently visible — no fade animation. */
.hero-cta,
.hero-ctas .btn {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  animation: none !important;
}
.hero-tagline {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  font-family: var(--ff-tagline);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  z-index: 2;
}
.hero-tagline::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--c-red);
  vertical-align: middle;
  margin-right: 14px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-scroll-indicator:hover {
  color: var(--c-yellow);
  transform: translate(-50%, -3px);
}
.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 20% { transform: translate(-50%, 0); opacity: 1; }
  80%, 100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ============================================================
   6. COMPANY OVERVIEW
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.overview-text .section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
}
.overview-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.overview-text p:first-of-type {
  color: var(--c-ink);
  font-weight: 500;
  font-size: 18px;
}
.overview-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--c-charcoal);
  overflow: hidden;
  border-radius: 4px;
}
.overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.overview-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 10, 0, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.overview-stamp {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: var(--c-yellow);
  padding: 22px 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.overview-stamp strong {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-black);
  line-height: 1;
}
.overview-stamp span {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-black);
  max-width: 110px;
  line-height: 1.4;
}

/* ============================================================
   7. EPC CAPABILITIES (flow)
   ============================================================ */
.epc-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}
.epc-step {
  padding: 32px 24px;
  border-right: 1px solid var(--c-line);
  position: relative;
  transition: background 0.4s var(--ease);
}
.epc-step:last-child {
  border-right: none;
}
.epc-step:hover {
  background: var(--c-off);
}
.epc-step-num {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--c-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.epc-step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}
.epc-step h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.epc-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--c-muted);
}
.epc-step-arrow {
  display: none;
}

/* ============================================================
   8. SERVICES PREVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.service-card {
  background: var(--c-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--c-ink);
  transition: height 0.55s var(--ease);
  z-index: 0;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover,
.service-card:hover h3,
.service-card:hover p {
  color: var(--c-white);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(255, 10, 0, 0.08);
  color: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--c-red);
  color: var(--c-white);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  transition: color 0.4s var(--ease);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-muted);
  flex: 1;
  transition: color 0.4s var(--ease);
}
.service-card .link-arrow {
  color: var(--c-red);
  transition: color 0.4s var(--ease);
}
.service-card:hover .link-arrow {
  color: var(--c-yellow);
}

/* ============================================================
   8b. SERVICES — image-led premium cards
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.svc-card {
  position: relative;
  background: var(--c-white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.svc-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--c-charcoal);
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.svc-card:hover .svc-media img {
  transform: scale(1.08);
}
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.svc-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.svc-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  background: var(--c-white);
}
.svc-body h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease);
}
.svc-card:hover .svc-body h3 {
  color: var(--c-red);
}
.svc-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-muted);
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  transition: gap 0.3s var(--ease);
}
.svc-card:hover .svc-link {
  gap: 12px;
}
.svc-foot {
  margin-top: 40px;
  text-align: center;
}
.svc-foot .link-arrow {
  font-size: 13px;
}

/* ============================================================
   9. INDUSTRIES
   ============================================================ */
/* Industries section — slider (was grid) */
.industries-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.industries-head .section-title {
  margin-bottom: 0;
}
.slider-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.slider-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
  transition: all 0.35s var(--ease);
}
.slider-btn:hover {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
  transform: translateY(-2px);
}
.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}

.industries-slider {
  position: relative;
  overflow: hidden;
}
.industries-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px var(--gutter) 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.industries-track::-webkit-scrollbar { display: none; }
.industries-track:active { cursor: grabbing; }
.industries-track .industry-card {
  flex: 0 0 clamp(260px, 28vw, 360px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
}
@media (max-width: 720px) {
  .industries-track .industry-card {
    flex: 0 0 78vw;
  }
}

/* Legacy class kept for any older references */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.industry-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-charcoal);
  cursor: pointer;
}
.industry-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  opacity: 0.7;
}
.industry-card:hover .industry-card-img {
  transform: scale(1.08);
  opacity: 0.55;
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
.industry-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 28px;
  color: var(--c-white);
}
.industry-card-num {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--c-yellow);
  margin-bottom: 8px;
  display: block;
}
.industry-card h3 {
  font-size: 21px;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.industry-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease) 0.05s, transform 0.4s var(--ease) 0.05s, max-height 0.4s var(--ease);
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}
.industry-card:hover p {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
  margin-top: 10px;
}
.industry-card .link-arrow {
  display: none;
}

/* Explore More CTA button inside industry cards */
.ind-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid var(--c-yellow);
  color: var(--c-yellow);
  font-family: var(--ff-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s, background 0.25s ease;
}
.industry-card:hover .ind-explore-btn {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 221, 0, 0.1);
}
.industry-card:hover .ind-explore-btn svg {
  transform: translateX(3px);
  transition: transform 0.3s var(--ease);
}

/* ============================================================
   10. HSE & QUALITY DARK SECTION
   ============================================================ */
.hse {
  position: relative;
  overflow: hidden;
}
.hse-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}
.hse-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}
.hse-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--c-graphite) 0%,
    rgba(24, 24, 24, 0.92) 50%,
    rgba(255, 10, 0, 0.15) 100%
  );
}
.hse-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.hse-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hse-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 24px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.4s var(--ease);
}
.hse-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--c-red);
  transform: translateY(-3px);
}
.hse-pillar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-yellow);
  margin-bottom: 14px;
}
.hse-pillar h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 8px;
}
.hse-pillar p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   11. GROUP PRESENCE
   ============================================================ */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-top: 40px;
}
.presence-card {
  background: var(--c-white);
  padding: 36px 28px;
  text-align: left;
  transition: all 0.4s var(--ease);
  position: relative;
}
.presence-card:hover {
  background: var(--c-ink);
  color: var(--c-white);
}
.presence-card:hover h3,
.presence-card:hover p {
  color: var(--c-white);
}
.presence-flag {
  width: 44px;
  height: 30px;
  border-radius: 2px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
}
.presence-flag svg,
.presence-flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Saudi Arabia — green base + emblem (from supplied Saudi Arabia Flag.html) */
.flag-sa {
  background: #005c35;
}
.flag-sa-fill {
  position: absolute;
  inset: 0;
  background: #005c35;
}
.flag-sa-emblem {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

/* India — 3 horizontal stripes + Ashoka Chakra
   (faithfully adapted from supplied Indian Flag.html) */
.flag-in {
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ddd;
}
.flag-in-stripe {
  width: 100%;
  height: 33.333%;
  position: relative;
}
.flag-in-saffron { background: #ff9933; }
.flag-in-white {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flag-in-green { background: #138808; }
.flag-in-chakra {
  width: 6.5px;
  height: 6.5px;
  border: 1px solid #000080;
  border-radius: 50%;
  position: relative;
  background:
    /* simple radial dot in centre */
    radial-gradient(circle, #000080 22%, transparent 23%) center/100% 100% no-repeat,
    /* 8 spokes drawn as conic gradient — gives the chakra ring feel */
    conic-gradient(from 0deg, #000080 0deg 1deg, transparent 1deg 15deg,
                              #000080 15deg 16deg, transparent 16deg 30deg,
                              #000080 30deg 31deg, transparent 31deg 45deg,
                              #000080 45deg 46deg, transparent 46deg 60deg,
                              #000080 60deg 61deg, transparent 61deg 75deg,
                              #000080 75deg 76deg, transparent 76deg 90deg,
                              #000080 90deg 91deg, transparent 91deg 105deg,
                              #000080 105deg 106deg, transparent 106deg 120deg,
                              #000080 120deg 121deg, transparent 121deg 135deg,
                              #000080 135deg 136deg, transparent 136deg 150deg,
                              #000080 150deg 151deg, transparent 151deg 165deg,
                              #000080 165deg 166deg, transparent 166deg 180deg,
                              #000080 180deg 181deg, transparent 181deg 195deg,
                              #000080 195deg 196deg, transparent 196deg 210deg,
                              #000080 210deg 211deg, transparent 211deg 225deg,
                              #000080 225deg 226deg, transparent 226deg 240deg,
                              #000080 240deg 241deg, transparent 241deg 255deg,
                              #000080 255deg 256deg, transparent 256deg 270deg,
                              #000080 270deg 271deg, transparent 271deg 285deg,
                              #000080 285deg 286deg, transparent 286deg 300deg,
                              #000080 300deg 301deg, transparent 301deg 315deg,
                              #000080 315deg 316deg, transparent 316deg 330deg,
                              #000080 330deg 331deg, transparent 331deg 345deg,
                              #000080 345deg 346deg, transparent 346deg 360deg);
}
.presence-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.4s var(--ease);
}
.presence-card p {
  font-size: 13px;
  color: var(--c-muted);
  transition: color 0.4s var(--ease);
  line-height: 1.5;
}
.presence-card-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-muted);
  opacity: 0.7;
}
.presence-card:hover .presence-card-tag {
  color: var(--c-yellow);
  opacity: 1;
}

/* ============================================================
   12. CERTIFICATIONS
   ============================================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.cert-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 30px 24px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.cert-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cert-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--c-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-red);
  letter-spacing: -0.02em;
  border: 2px solid var(--c-line);
  transition: all 0.4s var(--ease);
}
.cert-card:hover .cert-mark {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cert-card p {
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.cert-disclaimer {
  font-size: 12px;
  color: var(--c-muted);
  font-style: italic;
  margin-top: 28px;
  text-align: center;
}

/* ============================================================
   13. FINAL CTA SECTION
   ============================================================ */
.cta-block {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 4px;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(255, 10, 0, 0.35) 0%,
    transparent 50%
  );
}
.cta-inner {
  position: relative;
  padding: clamp(56px, 8vw, 100px) clamp(32px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.cta-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--c-white);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.cta-title .accent {
  color: var(--c-yellow);
}
.cta-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.cta-yellow-bar {
  position: absolute;
  top: 0;
  right: 80px;
  width: 6px;
  height: 80px;
  background: var(--c-yellow);
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 30px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  height: 78px;
  width: auto;
  margin-bottom: 22px;
  border-radius: 4px;
  /* JPEG ships with its own white background — leave intact */
}
.footer-brand-text {
  font-family: var(--ff-tagline);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--c-yellow);
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--c-red);
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s var(--ease);
  display: inline-block;
}
.footer-col a:hover {
  color: var(--c-yellow);
  transform: translateX(3px);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--c-red);
  margin-top: 2px;
}
.footer-contact-item div {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item div strong {
  display: block;
  color: var(--c-white);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a:hover {
  color: var(--c-yellow);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.6);
}
.footer-socials a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ============================================================
   15. UTILITIES + REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 1; /* GSAP will override; if no GSAP, IntersectionObserver toggles is-revealed */
}
.no-gsap [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease-out);
}
.no-gsap [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   15a. INNER PAGES — sub-page hero + body
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: var(--c-white);
  overflow: hidden;
  padding-top: var(--h-header);
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}
.inner-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 64px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s var(--ease);
}
.breadcrumb a:hover { color: var(--c-yellow); }
.breadcrumb .sep { opacity: 0.5; }
.inner-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-white);
  max-width: 920px;
}
.inner-hero-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-top: 18px;
  line-height: 1.7;
}

.inner-section {
  padding-block: clamp(56px, 7vw, 96px);
}
.inner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 1023px) {
  .inner-grid { grid-template-columns: 1fr; }
}
.inner-grid h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.inner-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.inner-bullets {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.inner-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--c-off);
  border-left: 3px solid var(--c-red);
  font-size: 14.5px;
  color: var(--c-ink);
  line-height: 1.6;
}
.inner-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.inner-aside {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--c-charcoal);
  border-radius: 4px;
  overflow: hidden;
}
.inner-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-related {
  background: var(--c-off);
  padding-block: clamp(48px, 6vw, 80px);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.related-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 22px 22px;
  border-radius: 4px;
  transition: all 0.35s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.related-card:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.related-card span {
  font-family: var(--ff-head);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.related-card svg { color: var(--c-red); flex-shrink: 0; }
.inner-cta-strip {
  background: var(--c-ink);
  color: var(--c-white);
  text-align: center;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.inner-cta-strip h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.inner-cta-strip .btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   15b. PREMIUM ACCENT (Playfair) — small italic accent text
   ============================================================ */
.accent-serif {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-red);
}

/* ============================================================
   15c. CLIENTS / PARTNERS MARQUEE
   ============================================================ */
.clients {
  background: var(--c-white);
  padding-block: clamp(60px, 7vw, 110px);
  overflow: hidden;
}
.clients-head {
  text-align: center;
  margin-bottom: 56px;
}
.clients-head .section-eyebrow {
  justify-content: center;
}
.clients-head .section-title {
  margin-inline: auto;
  text-align: center;
}
.clients-head .section-sub {
  margin-inline: auto;
  text-align: center;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-row + .marquee-row,
.marquee.marquee-row {
  margin-top: 8px;
}
.marquee-reverse .marquee-track {
  animation-name: marquee-scroll-rev;
  animation-duration: 65s;
}
.client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--c-line);
  opacity: 1;
  transition: transform 0.4s var(--ease);
}
.client-logo:hover {
  transform: translateY(-3px);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   15d. CERTIFICATIONS — real ISO logo cards (photo PNGs)
   ============================================================ */
.certs-grid--logos {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cert-card--logo {
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cert-logo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border-radius: 2px;
}
.cert-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.cert-card--logo:hover .cert-logo-frame {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.cert-card--logo:hover .cert-logo-frame img {
  transform: scale(1.06);
}
.cert-card--logo h4 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}
.cert-card--logo p {
  font-family: var(--ff-body);
  font-size: 12.5px;
  color: var(--c-muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -8px;
}

/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .epc-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .epc-step {
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
  }
  .epc-step:nth-child(2n) {
    border-right: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  :root {
    --h-header: 72px;
    --h-header-scrolled: 64px;
  }
  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .overview-visual {
    aspect-ratio: 16 / 11;
    max-width: 600px;
  }
  .hse-inner {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    height: 90vh;
    min-height: 560px;
  }
  .hero-tagline {
    display: none;
  }
  .epc-flow {
    grid-template-columns: 1fr;
  }
  .epc-step {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
  }
  .hse-pillars {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-card-body p {
    display: none;
  }
  .client-logo {
    width: 160px;
    height: 90px;
    padding: 16px 22px;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo-mark {
    height: 32px;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 28px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .client-logo {
    width: 140px;
    height: 80px;
    padding: 14px 18px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track {
    animation: none !important;
  }
}
.marquee-row + .marquee-row {
  margin-top: 8px;
}
.marquee-reverse .marquee-track {
  animation-name: marquee-scroll-rev;
  animation-duration: 65s;
}
.client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--c-line);
  opacity: 1;
  transition: transform 0.4s var(--ease);
}
.client-logo:hover {
  transform: translateY(-3px);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ============================================================
   15d. CERTIFICATIONS — real ISO logo cards
   ============================================================ */
.certs-grid--logos {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cert-card--logo {
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cert-logo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border-radius: 2px;
}
.cert-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.cert-card--logo:hover .cert-logo-frame {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.cert-card--logo:hover .cert-logo-frame img {
  transform: scale(1.06);
}
.cert-card--logo h4 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
}
.cert-card--logo p {
  font-family: var(--ff-body);
  font-size: 12.5px;
  color: var(--c-muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -8px;
}

/* ============================================================
   16. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .epc-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .epc-step {
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
  }
  .epc-step:nth-child(2n) {
    border-right: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  :root {
    --h-header: 72px;
    --h-header-scrolled: 64px;
  }
  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .overview-visual {
    aspect-ratio: 16 / 11;
    max-width: 600px;
  }
  .hse-inner {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    height: 90vh;
    min-height: 560px;
  }
  .hero-tagline {
    display: none;
  }
  .epc-flow {
    grid-template-columns: 1fr;
  }
  .epc-step {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
  }
  .hse-pillars {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-card-body p {
    display: none;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo-mark {
    height: 30px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   16b. Hide hero scroll indicator on mobile
   ============================================================ */
@media (max-width: 720px) {
  .hero-scroll-indicator {
    display: none !important;
  }
}

/* ============================================================
   17. AL BANY brand name — never line-break
   ============================================================ */
.brand-name,
.albany {
  white-space: nowrap;
}

/* ============================================================
   18. PRODUCT PAGES — premium product grids
   ============================================================ */
.product-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #0f0f0f 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 236, 26, 0.10), transparent 60%);
  z-index: -1;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.20;
  z-index: -2;
}
.product-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-hero .container {
  position: relative;
  z-index: 2;
}
.product-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.product-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.product-hero .breadcrumb a:hover {
  color: var(--c-yellow);
}
.product-hero .breadcrumb .sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}
.product-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: #fff;
}
.product-hero h1 .accent {
  color: var(--c-yellow);
}
.product-hero-lead {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
}

.product-intro {
  padding: 80px 0 30px;
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.product-intro-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--c-black);
}
.product-intro-text p {
  font-family: var(--ff-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0 0 14px;
}
/* ── Dual-image bar (2 images side-by-side above intro text) ── */
.product-dual-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.product-dual-images img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.product-intro-text--wide {
  max-width: 100%;
}
.product-single-image {
  margin-bottom: 36px;
}
.product-single-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
@media (max-width: 600px) {
  .product-dual-images { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
}

.product-intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
}
.product-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-categories {
  padding: 70px 0 60px;
  background: #fafafa;
}
.product-categories-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.product-categories-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--c-black);
}
.product-categories-head p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.10);
  border-color: var(--c-red);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--c-black);
  letter-spacing: -0.003em;
}
.product-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.product-card-body ul li {
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-muted);
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.product-card-body ul li:last-child {
  border-bottom: none;
}
.product-card-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--c-red);
}

/* ============================================================
   19. ENQUIRY FORM CTA
   ============================================================ */
.enquiry-section {
  padding: 80px 0 90px;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  border-top: 1px solid var(--c-line);
}
.enquiry-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.enquiry-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 14px;
}
.enquiry-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-red);
}
.enquiry-left h2 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--c-black);
}
.enquiry-left p {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 22px;
  max-width: 460px;
}
.enquiry-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.enquiry-points li {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-black);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.enquiry-points li:last-child {
  border-bottom: none;
}
.enquiry-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 16px;
  height: 1px;
  background: var(--c-red);
}

.enquiry-form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 36px 36px 32px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.enquiry-form-card h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--c-black);
  letter-spacing: -0.003em;
}
.enquiry-form-card .form-hint {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 0 22px;
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
}
.enquiry-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enquiry-form .field.full {
  grid-column: 1 / -1;
}
.enquiry-form label {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-black);
}
.enquiry-form label .req {
  color: var(--c-red);
  margin-left: 2px;
}
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--c-black);
  background: #fafafa;
  border: 1px solid var(--c-line);
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.enquiry-form select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus,
.enquiry-form select:focus {
  outline: none;
  border-color: var(--c-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 10, 0, 0.10);
}
.enquiry-form .submit-row {
  grid-column: 1 / -1;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.enquiry-form .submit-row .small-print {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--c-muted);
}
.enquiry-form .btn--submit {
  background: var(--c-yellow);
  color: var(--c-black);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.enquiry-form .btn--submit:hover {
  background: #ffe000;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.enquiry-form .form-feedback {
  grid-column: 1 / -1;
  font-family: var(--ff-body);
  font-size: 14px;
  border-radius: 3px;
  padding: 12px 14px;
  display: none;
}
.enquiry-form .form-feedback.is-success {
  display: block;
  background: #e8f7ec;
  color: #1d6e34;
  border: 1px solid #b9e3c4;
}
.enquiry-form .form-feedback.is-error {
  display: block;
  background: #fbe8e8;
  color: #8b1a1a;
  border: 1px solid #f3bcbc;
}

/* ============================================================
   20. MOBILE OPTIMIZATION — global safety + per-section tuning
   ============================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .enquiry-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 18px;
  }
}

@media (max-width: 720px) {
  .product-hero {
    padding: 100px 0 56px;
  }
  .product-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .product-hero-lead {
    font-size: 14.5px;
  }
  .product-intro {
    padding: 56px 0 20px;
  }
  .product-intro-text h2 {
    font-size: clamp(21px, 5vw, 28px);
  }
  .product-categories {
    padding: 50px 0 50px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .enquiry-section {
    padding: 56px 0 60px;
  }
  .enquiry-form-card {
    padding: 24px 22px 22px;
  }
  .enquiry-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .enquiry-form .submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .enquiry-form .btn--submit {
    width: 100%;
    justify-content: center;
  }
  .inner-hero h1 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.1;
  }
  .inner-hero-lead {
    font-size: 14.5px;
  }
  .inner-cta-strip {
    padding: 44px 18px;
  }
  .inner-cta-strip h2 {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.2;
  }
  .btn-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
  .inner-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .inner-aside img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .footer-brand-desc,
  .footer-col ul li a,
  .footer-contact-item div {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .footer-brand-logo {
    height: 32px;
  }
  .footer-brand-text {
    font-size: 13px;
  }
  .footer-col h5 {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .mobile-menu-panel {
    padding-top: 70px;
  }
  .m-list .m-item a {
    font-size: 16px;
    padding: 14px 0;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-title {
    font-size: clamp(30px, 8.5vw, 44px) !important;
    line-height: 1.08 !important;
  }
  .hero-sub {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: clamp(22px, 5.5vw, 30px) !important;
    line-height: 1.18 !important;
  }
  .section-sub {
    font-size: 14.5px !important;
  }
  .industries-slider .slide,
  .industries-slider .industry-slide {
    min-width: 84vw;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 90px 0 44px;
  }
  .product-hero h1 {
    font-size: 28px;
    line-height: 1.1;
  }
  .product-hero .breadcrumb {
    font-size: 11.5px;
  }
  .product-intro-text h2 {
    font-size: 22px;
  }
  .product-intro-text p,
  .product-card-body ul li {
    font-size: 14px;
  }
  .product-card-body h3 {
    font-size: 16px;
  }
  .enquiry-left h2 {
    font-size: 24px;
  }
  .enquiry-form input,
  .enquiry-form textarea,
  .enquiry-form select {
    font-size: 15px;
    padding: 12px 13px;
  }
  .enquiry-form-card h3 {
    font-size: 18px;
  }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .product-hero h1 {
    font-size: 26px;
  }
  .product-card-body {
    padding: 18px 18px 20px;
  }
  .enquiry-form-card {
    padding: 22px 18px 18px;
  }
}

/* ============================================================
   21. CLIENT MARQUEE — force smooth infinite scroll on mobile
   ============================================================ */
.marquee {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.marquee-track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  animation: marquee-scroll 55s linear infinite !important;
  animation-play-state: running !important;
}
.marquee-reverse .marquee-track {
  animation-name: marquee-scroll-rev !important;
  animation-duration: 65s !important;
}
@media (max-width: 720px) {
  .marquee-track {
    animation-duration: 28s !important;
  }
  .marquee-reverse .marquee-track {
    animation-duration: 34s !important;
  }
  .client-logo {
    width: 150px;
    height: 80px;
    padding: 12px 18px;
  }
}
@media (max-width: 480px) {
  .marquee-track {
    animation-duration: 22s !important;
  }
  .marquee-reverse .marquee-track {
    animation-duration: 28s !important;
  }
  .client-logo {
    width: 130px;
    height: 70px;
    padding: 10px 14px;
  }
}
/* Override reduced motion so marquee always runs (mobile fix) */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: marquee-scroll 80s linear infinite !important;
  }
  .marquee-reverse .marquee-track {
    animation: marquee-scroll-rev 90s linear infinite !important;
  }
}

/* ============================================================
   ENQUIRY FORM SECTION
   ============================================================ */
.enq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.enq-info .section-title {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
}
.enq-info-sub {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.enq-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #3a3a3a;
}
.enq-contact-item svg { color: var(--c-red); flex-shrink: 0; }
.enq-contact-item a { color: #3a3a3a; transition: color 0.2s; }
.enq-contact-item a:hover { color: var(--c-red); }

.enq-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.enq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.enq-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.enq-field label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.enq-field label span { color: var(--c-red); }
.enq-field input,
.enq-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--c-ink);
  background: var(--c-white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.enq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.enq-field input:focus,
.enq-field select:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(255,10,0,0.08);
}
.enq-field input::placeholder { color: #aaa; }
.enq-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 14px;
  margin-top: 4px;
}
.enq-note {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  margin-top: -8px;
}
.enq-success {
  text-align: center;
  padding: 40px 20px;
}
.enq-success h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 16px 0 8px;
}
.enq-success p {
  font-size: 14px;
  color: var(--c-muted);
}
@media (max-width: 860px) {
  .enq-wrap { grid-template-columns: 1fr; }
}

/* ── Footer 5-col responsive additions ── */
@media (max-width: 1280px) {
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ── Mega parent link — click hint on hover ── */
.nav-link[aria-haspopup="true"] {
  position: relative;
}
.nav-item.has-mega.is-open > .nav-link::after {
  content: "↗";
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE FLEXBOX OVERHAUL
   Full device adaptability: 1100 / 1024 / 900 / 768 /
   640 / 540 / 480 / 380px
   ============================================================ */

/* ── 1. Global overflow safety ─────────────────────────────
   Every grid/flex child must be able to shrink below its
   content size — otherwise it will blow out the layout.     */
*, *::before, *::after {
  min-width: 0;
}

/* ── 2. Container adaptive padding ─────────────────────────*/
.container {
  padding-inline: clamp(14px, 4.5vw, 56px);
}

/* ── 3. HEADER ──────────────────────────────────────────────*/
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 360px) {
  .brand-logo-mark { height: 26px; }
}

/* ── 4. HERO ────────────────────────────────────────────────*/
@media (max-width: 900px) {
  .hero-content { max-width: 92%; }
}
@media (max-width: 640px) {
  .hero {
    min-height: 100svh; /* safe-area-aware on iOS Safari */
    height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-inner { padding-top: calc(var(--h-header) + 12px); }
}

/* ── 5. COMPANY OVERVIEW → FLEXBOX ─────────────────────────
   Replaces `grid-template-columns: 1fr 1fr` with a flex
   layout that wraps gracefully at any width.                 */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.overview-text  { flex: 1 1 min(420px, 100%); }
.overview-visual {
  flex: 1 1 min(300px, 100%);
  max-width: 100%;
}
@media (max-width: 1023px) {
  .overview-visual {
    aspect-ratio: 16 / 11;
    max-width: 600px;
    margin-inline: auto;
  }
}

/* ── 6. EPC FLOW — extra breakpoint at 900px ───────────────*/
@media (max-width: 960px) {
  .epc-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .epc-step:nth-child(3n) { border-right: none; }
}
@media (max-width: 640px) {
  .epc-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .epc-step:nth-child(3n) { border-right: 1px solid var(--c-line); }
  .epc-step:nth-child(2n) { border-right: none; }
}

/* ── 7. SERVICES — ensure safe wrapping ────────────────────*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
}
.service-card {
  flex: 1 1 min(240px, 100%);
}

/* ── 8. SVC CARDS → FLEXBOX ────────────────────────────────*/
.svc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.svc-card { flex: 1 1 min(300px, 100%); }
@media (max-width: 540px) {
  .svc-card { flex: 1 1 100%; }
}

/* ── 9. INDUSTRIES SECTION HEAD ────────────────────────────*/
@media (max-width: 640px) {
  .industries-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .slider-nav { align-self: flex-end; }
}

/* ── 10. HSE → FLEXBOX ──────────────────────────────────────
   Outer two-column layout and inner 2×2 pillars both become
   flex so they wrap independently at appropriate sizes.      */
.hse-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 96px);
  align-items: flex-start;
}
.hse-inner > * { flex: 1 1 min(340px, 100%); }

.hse-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hse-pillar { flex: 1 1 min(180px, 100%); }

/* ── 11. PRESENCE GRID ──────────────────────────────────────*/
.presence-grid {
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  border: none;
  gap: 1px;
  margin-top: 40px;
}
.presence-card {
  flex: 1 1 min(180px, calc(50% - 1px));
  border: 1px solid var(--c-line);
}
@media (max-width: 480px) {
  .presence-card { flex: 1 1 100%; }
}

/* ── 12. CERTIFICATIONS ─────────────────────────────────────*/
@media (max-width: 540px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .certs-grid--logos { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .certs-grid { grid-template-columns: 1fr; }
  .certs-grid--logos { grid-template-columns: 1fr; }
}

/* ── 13. CTA BLOCK → FLEXBOX ───────────────────────────────*/
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.cta-inner > :first-child { flex: 1.4 1 min(300px, 100%); }
.cta-inner > :last-child  { flex: 1 1 min(200px, 100%); }
@media (max-width: 640px) {
  .cta-actions { justify-content: flex-start; }
  .cta-yellow-bar { display: none; }
}

/* ── 14. FOOTER → FLEXBOX ──────────────────────────────────
   5-column grid → flex-wrap with brand taking more space.   */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { flex: 2 1 min(220px, 100%); }
.footer-col   { flex: 1 1 min(130px, 100%); }

@media (max-width: 640px) {
  .footer-top { gap: 28px; }
  .footer-brand { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .footer-top { gap: 22px; }
  .footer-col { flex: 1 1 calc(50% - 14px); }
}
@media (max-width: 360px) {
  .footer-col { flex: 1 1 100%; }
}

/* ── 15. PRODUCT PAGES ──────────────────────────────────────*/
.product-intro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.product-intro-text  { flex: 1 1 min(300px, 100%); }
.product-intro-image { flex: 1 1 min(260px, 100%); }

/* product-grid: use base grid rules defined above */

/* ── 16. ENQUIRY FORM → FLEXBOX ────────────────────────────*/
.enquiry-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 24px);
}
.enquiry-left      { flex: 1 1 min(280px, 100%); }
.enquiry-form-card { flex: 1 1 min(280px, 100%); }

.enquiry-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.enquiry-form .field      { flex: 1 1 min(180px, 100%); }
.enquiry-form .field.full { flex: 1 1 100%; }
.enquiry-form .submit-row { flex: 1 1 100%; }

/* ── 17. ENQ SECTION → FLEXBOX ─────────────────────────────*/
.enq-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.enq-info      { flex: 1 1 min(280px, 100%); }
.enq-form-wrap { flex: 1 1 min(280px, 100%); }

/* ── 18. INNER PAGE GRID → FLEXBOX ─────────────────────────*/
.inner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.inner-grid > * { flex: 1 1 min(300px, 100%); }

/* ── 19. RELATED CARDS → FLEXBOX ───────────────────────────*/
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.related-card { flex: 1 1 min(200px, 100%); }

/* ── 20. SECTION HEAD ───────────────────────────────────────*/
@media (max-width: 640px) {
  .section-head { margin-bottom: 28px; }
  .section-title { max-width: 100%; }
  .section-sub   { max-width: 100%; }
}

/* ── 21. BUTTON ROW ─────────────────────────────────────────*/
@media (max-width: 540px) {
  .inner-cta-strip .btn-row,
  .btn-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 22. CLIENTS MARQUEE — small screen ────────────────────*/
@media (max-width: 360px) {
  .client-logo { width: 120px; height: 64px; padding: 10px 12px; }
}

/* ── 23. MEGA MENU safe width ───────────────────────────────*/
.mega-menu-container {
  width: min(calc(100vw - 2 * clamp(14px, 4vw, 56px)), var(--container));
}

/* ── 24. MOBILE TOUCH TARGETS ──────────────────────────────
   On touch devices, ensure minimum 44×44 px tap zones.      */
@media (hover: none) and (pointer: coarse) {
  .m-link { min-height: 44px; }
  .m-sublink { min-height: 40px; padding-block: 10px; }
  .slider-btn { width: 52px; height: 52px; }
  .footer-col a { padding-block: 5px; }
}

/* ── 25. EXTRA-SMALL PHONES (≤ 380px) ──────────────────────*/
@media (max-width: 380px) {
  .container { padding-inline: 12px; }
  .hero-title { font-size: clamp(24px, 7.5vw, 30px) !important; }
  .hero-sub { font-size: 14px !important; }
  .hero-ctas .btn { padding: 13px 16px; font-size: 13px; }
  .mobile-menu-panel { padding: 68px 16px 28px; width: min(380px, 94vw); }
  .enquiry-form-card,
  .enq-form-wrap { padding: 20px 16px 18px; }
  .product-hero { padding: 86px 0 38px; }
  .product-hero h1 { font-size: 24px; }
}

/* ── 26. OVERFLOW LOCK ──────────────────────────────────────
   Belt-and-suspenders: nothing ever creates a horizontal bar */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
.site-header,
.mega-menu-container,
.mega-panel,
.mobile-menu {
  max-width: 100vw;
}

/* ============================================================
   RESPONSIVE FLEXBOX OVERHAUL
   Full device adaptability: 1100 / 1024 / 900 / 768 /
   640 / 540 / 480 / 380px
   ============================================================ */

/* 1. Global overflow safety */
*, *::before, *::after { min-width: 0; }

/* 2. Container adaptive padding */
.container { padding-inline: clamp(14px, 4.5vw, 56px); }

/* 3. HEADER */
.header-inner { display: flex; align-items: center; gap: 16px; }
@media (max-width: 360px) { .brand-logo-mark { height: 26px; } }

/* 4. HERO */
@media (max-width: 900px) { .hero-content { max-width: 92%; } }
@media (max-width: 640px) {
  .hero { min-height: 100svh; height: auto; }
  .hero-content { max-width: 100%; }
  .hero-inner { padding-top: calc(var(--h-header) + 12px); }
}

/* 5. COMPANY OVERVIEW -> FLEXBOX */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.overview-text  { flex: 1 1 min(420px, 100%); }
.overview-visual { flex: 1 1 min(300px, 100%); max-width: 100%; }
@media (max-width: 1023px) {
  .overview-visual { aspect-ratio: 16 / 11; max-width: 600px; margin-inline: auto; }
}

/* 6. EPC FLOW - extra breakpoints */
@media (max-width: 960px) {
  .epc-flow { grid-template-columns: repeat(3, 1fr); }
  .epc-step:nth-child(3n) { border-right: none; }
}
@media (max-width: 640px) {
  .epc-flow { grid-template-columns: repeat(2, 1fr); }
  .epc-step:nth-child(3n) { border-right: 1px solid var(--c-line); }
  .epc-step:nth-child(2n) { border-right: none; }
}

/* 7. SERVICES GRID - safe flex fallback */
.services-grid { display: flex; flex-wrap: wrap; }
.service-card { flex: 1 1 min(240px, 100%); }

/* 8. SVC CARDS -> FLEXBOX */
.svc-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.svc-card { flex: 1 1 min(300px, 100%); }
@media (max-width: 540px) { .svc-card { flex: 1 1 100%; } }

/* 9. INDUSTRIES HEAD */
@media (max-width: 640px) {
  .industries-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .slider-nav { align-self: flex-end; }
}

/* 10. HSE -> FLEXBOX */
.hse-inner { display: flex; flex-wrap: wrap; gap: clamp(36px, 6vw, 96px); align-items: flex-start; }
.hse-inner > * { flex: 1 1 min(340px, 100%); }
.hse-pillars { display: flex; flex-wrap: wrap; gap: 20px; }
.hse-pillar { flex: 1 1 min(180px, 100%); }

/* 11. PRESENCE GRID */
.presence-grid {
  display: flex; flex-wrap: wrap;
  background: transparent; border: none;
  gap: 1px; margin-top: 40px;
}
.presence-card { flex: 1 1 min(180px, calc(50% - 1px)); border: 1px solid var(--c-line); }
@media (max-width: 480px) { .presence-card { flex: 1 1 100%; } }

/* 12. CERTIFICATIONS */
@media (max-width: 540px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .certs-grid--logos { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .certs-grid { grid-template-columns: 1fr; }
  .certs-grid--logos { grid-template-columns: 1fr; }
}

/* 13. CTA BLOCK -> FLEXBOX */
.cta-inner {
  display: flex; flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px); align-items: center;
}
.cta-inner > :first-child { flex: 1.4 1 min(300px, 100%); }
.cta-inner > :last-child  { flex: 1 1 min(200px, 100%); }
@media (max-width: 640px) {
  .cta-actions { justify-content: flex-start; }
  .cta-yellow-bar { display: none; }
}

/* 14. FOOTER -> FLEXBOX */
.footer-top {
  display: flex; flex-wrap: wrap;
  gap: 36px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { flex: 2 1 min(220px, 100%); }
.footer-col   { flex: 1 1 min(130px, 100%); }
@media (max-width: 640px) { .footer-top { gap: 28px; } .footer-brand { flex: 1 1 100%; } }
@media (max-width: 480px) { .footer-top { gap: 22px; } .footer-col { flex: 1 1 calc(50% - 14px); } }
@media (max-width: 360px) { .footer-col { flex: 1 1 100%; } }

/* 15. PRODUCT PAGES */
.product-intro-grid { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); align-items: center; }
.product-intro-text  { flex: 1 1 min(300px, 100%); }
.product-intro-image { flex: 1 1 min(260px, 100%); }

/* product-grid: use base grid rules defined above */

/* 16. ENQUIRY FORM -> FLEXBOX */
.enquiry-wrap {
  display: flex; flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px; margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 24px);
}
.enquiry-left      { flex: 1 1 min(280px, 100%); }
.enquiry-form-card { flex: 1 1 min(280px, 100%); }
.enquiry-form { display: flex; flex-wrap: wrap; gap: 16px; }
.enquiry-form .field      { flex: 1 1 min(180px, 100%); }
.enquiry-form .field.full { flex: 1 1 100%; }
.enquiry-form .submit-row { flex: 1 1 100%; }

/* 17. ENQ SECTION -> FLEXBOX */
.enq-wrap { display: flex; flex-wrap: wrap; gap: clamp(36px, 6vw, 96px); align-items: start; }
.enq-info      { flex: 1 1 min(280px, 100%); }
.enq-form-wrap { flex: 1 1 min(280px, 100%); }

/* 18. INNER PAGE GRID -> FLEXBOX */
.inner-grid { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 80px); align-items: start; }
.inner-grid > * { flex: 1 1 min(300px, 100%); }

/* 19. RELATED CARDS */
.related-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.related-card { flex: 1 1 min(200px, 100%); }

/* 20. SECTION HEAD */
@media (max-width: 640px) {
  .section-head { margin-bottom: 28px; }
  .section-title { max-width: 100%; }
  .section-sub   { max-width: 100%; }
}

/* 21. BUTTON ROW */
@media (max-width: 540px) {
  .inner-cta-strip .btn-row, .btn-row { flex-direction: column; width: 100%; }
  .btn-row .btn { width: 100%; justify-content: center; }
}

/* 22. MARQUEE small screen */
@media (max-width: 360px) { .client-logo { width: 120px; height: 64px; padding: 10px 12px; } }

/* 23. MEGA MENU safe width */
.mega-menu-container { width: min(calc(100vw - 2 * clamp(14px, 4vw, 56px)), var(--container)); }

/* 24. TOUCH TARGETS */
@media (hover: none) and (pointer: coarse) {
  .m-link { min-height: 44px; }
  .m-sublink { min-height: 40px; padding-block: 10px; }
  .slider-btn { width: 52px; height: 52px; }
  .footer-col a { padding-block: 5px; }
}

/* 25. EXTRA-SMALL PHONES (380px and below) */
@media (max-width: 380px) {
  .container { padding-inline: 12px; }
  .hero-title { font-size: clamp(24px, 7.5vw, 30px) !important; }
  .hero-sub { font-size: 14px !important; }
  .hero-ctas .btn { padding: 13px 16px; font-size: 13px; }
  .mobile-menu-panel { padding: 68px 16px 28px; width: min(380px, 94vw); }
  .enquiry-form-card, .enq-form-wrap { padding: 20px 16px 18px; }
  .product-hero { padding: 86px 0 38px; }
  .product-hero h1 { font-size: 24px; }
}

/* 26. OVERFLOW LOCK */
html, body { overflow-x: hidden; max-width: 100vw; }
.site-header, .mega-menu-container, .mega-panel, .mobile-menu { max-width: 100vw; }

/* ============================================================
   FOOTER-BOTTOM — Copyright LEFT  |  Socials RIGHT
   Fully responsive: Desktop / Laptop / Tablet / iPad / Mobile
   ============================================================ */

/* ── Base (all screens) ─────────────────────────────────── */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;   /* copyright pinned left, socials pinned right */
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;                            /* no gap needed — space-between handles spacing */
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  width: 100%;
}

.footer-bottom > *:first-child {
  margin-right: auto;  /* pushes the socials block hard to the right */
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a:hover {
  color: var(--c-yellow);
}

/* ── Social icons cluster ─────────────────────────────────── */
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-shrink: 0;     /* never compress the icons */
  margin-left: 24px;  /* breathing room from copyright text */
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  color: rgba(255, 255, 255, 0.6);
}
.footer-socials a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ── Desktop (1280px+) ──────────────────────────────────── */
@media (min-width: 1280px) {
  .footer-bottom {
    font-size: 13px;
  }
  .footer-socials { gap: 12px; margin-left: 32px; }
}

/* ── Laptop (1024–1279px) ────────────────────────────────── */
@media (min-width: 1024px) and (max-width: 1279px) {
  .footer-bottom { font-size: 12.5px; }
  .footer-socials { gap: 10px; margin-left: 28px; }
}

/* ── Tablet landscape (768–1023px) ──────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-bottom {
    font-size: 12px;
    padding-top: 24px;
  }
  .footer-socials { gap: 9px; margin-left: 20px; }
  .footer-socials a { width: 34px; height: 34px; }
}

/* ── iPad portrait / large phone (540–767px) ─────────────── */
@media (min-width: 540px) and (max-width: 767px) {
  .footer-bottom {
    flex-direction: row;     /* still side-by-side */
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: 11.5px;
    text-align: left;
  }
  .footer-socials { gap: 8px; margin-left: 16px; }
  .footer-socials a { width: 32px; height: 32px; }
}

/* ── Mobile (480–539px) ──────────────────────────────────── */
@media (max-width: 539px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-top: 22px;
    font-size: 12px;
  }
  .footer-bottom > *:first-child {
    margin-right: 0;   /* reset the push when stacked */
    margin-bottom: 0;
  }
  .footer-socials {
    gap: 10px;
    margin-left: 0;
    justify-content: center;
  }
}

/* ── Small phone (360–479px) ─────────────────────────────── */
@media (max-width: 479px) {
  .footer-bottom {
    font-size: 11.5px;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-socials a { width: 34px; height: 34px; }
}

/* ── Extra-small (below 360px) ───────────────────────────── */
@media (max-width: 359px) {
  .footer-bottom { font-size: 11px; gap: 10px; }
  .footer-socials a { width: 30px; height: 30px; }
}

/* ============================================================
   HERO SECTION — Mobile / Tablet spacing fix
   Problem: height:100vh + align-items:center creates a large
   empty void below the buttons before the next section.
   Fix: switch to height:auto + align-items:flex-start so the
   hero only occupies what the content actually needs.
   ============================================================ */

/* ── Tablet (768–1023px) ───────────────────────────────────── */
@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: min(560px, 82vh);
    align-items: flex-start;
    padding-bottom: 56px;
  }
  .hero-inner {
    padding-top: calc(var(--h-header) + 36px);
  }
  /* reduce first section's top padding so gap feels natural */
  .hero + * .section,
  .hero ~ .section:first-of-type,
  main > .section:first-of-type {
    padding-top: clamp(56px, 7vw, 96px);
  }
}

/* ── Large tablet / iPad portrait (768–900px) ─────────────── */
@media (max-width: 900px) {
  .hero {
    min-height: min(520px, 78vh);
    padding-bottom: 48px;
  }
  .hero-inner {
    padding-top: calc(var(--h-header) + 28px);
  }
}

/* ── Mobile (up to 767px) ─────────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 0;        /* no forced height — pure content flow */
    align-items: flex-start;
    padding-bottom: 44px;
  }
  .hero-inner {
    padding-top: calc(var(--h-header) + 24px);
  }
  /* tighten the first content section below hero */
  .section {
    padding-block: clamp(48px, 7vw, 88px);
  }
}

/* ── Small phone (up to 539px) ───────────────────────────────*/
@media (max-width: 539px) {
  .hero {
    padding-bottom: 36px;
  }
  .hero-inner {
    padding-top: calc(var(--h-header) + 18px);
  }
  .section {
    padding-block: clamp(40px, 6vw, 72px);
  }
}

/* ── Extra-small (up to 380px) ──────────────────────────────*/
@media (max-width: 380px) {
  .hero { padding-bottom: 28px; }
  .hero-inner { padding-top: calc(var(--h-header) + 14px); }
  .section { padding-block: clamp(36px, 6vw, 60px); }
}

/* ============================================================
   HERO COMPACT FIX — Mobile & Tablet ONLY
   Overrides all previous conflicting hero height rules.
   Desktop (>1024px) is completely untouched.
   ============================================================ */

/* --- Tablet: 768px – 1024px --------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: auto         !important;
    min-height: 0        !important;
    align-items: flex-start !important;
    padding-bottom: 60px !important;
  }
  .hero-inner {
    padding-top:    calc(var(--h-header, 72px) + 40px) !important;
    padding-bottom: 0 !important;
  }
  .hero-scroll-indicator { display: none !important; }
  .hero-tagline          { display: none !important; }
  .hero-ctas             { margin-bottom: 0 !important; }
}

/* --- Mobile: up to 767px ------------------------------------ */
@media (max-width: 767px) {
  .hero {
    height: auto         !important;
    min-height: 0        !important;
    align-items: flex-start !important;
    padding-bottom: 44px !important;
  }
  .hero-inner {
    padding-top:    calc(var(--h-header, 72px) + 24px) !important;
    padding-bottom: 0 !important;
  }
  .hero-scroll-indicator { display: none !important; }
  .hero-tagline          { display: none !important; }
  .hero-ctas             { margin-bottom: 0 !important; }
  .hero-sub              { margin-bottom: 28px !important; }
}

/* --- Small phone: up to 480px ------------------------------- */
@media (max-width: 480px) {
  .hero {
    padding-bottom: 36px !important;
  }
  .hero-inner {
    padding-top: calc(var(--h-header, 72px) + 16px) !important;
  }
}

/* ============================================================
   PRESENCE / COUNTRIES — Horizontal scroller on mobile/tablet
   Desktop keeps the existing grid layout unchanged.
   ============================================================ */

@media (max-width: 1024px) {
  .presence-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    gap: 12px !important;
    padding-bottom: 12px;
    background: transparent !important;
    border: none !important;
    margin-top: 32px;
  }
  .presence-grid::-webkit-scrollbar { display: none; }

  .presence-card {
    flex: 0 0 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    border: 1px solid var(--c-line) !important;
    border-radius: 4px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .presence-card {
    flex: 0 0 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    padding: 24px 20px;
  }
}

/* ============================================================
   FULL RESPONSIVE CLEANUP
   Mobile: ≤767px  |  Tablet: 768–1024px  |  Desktop: >1024px
   ============================================================ */

/* ── 1. Viewport meta guarantee (HTML-level, handled per-page)
        CSS safety: stop any element forcing a min-width wider
        than viewport ─────────────────────────────────────── */
body {
  min-width: 0 !important;
}
.container {
  max-width: min(var(--container), 100%) !important;
  overflow-x: clip;   /* clip (not hidden) — clips without creating scroll ctx */
}

/* ── 2. Fix global min-width:0 breaking scroll containers ──
        Swipeable containers must keep their natural item width */
.about-nav-strip-inner > *,
.industries-track > *,
.marquee-track > *,
.presence-grid > * {
  min-width: max-content;
}

/* ── 3. Tablet grids — prevent over-compression ─────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Two-column grids that get too tight on iPad portrait */
  .co-grid,
  .vm-grid,
  .leadership-dark {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .co-visual { order: -1; aspect-ratio: 16/9; }

  /* Services cards — 2 per row max on tablet */
  .svc-grid { gap: 18px; }
  .svc-card { flex: 1 1 calc(50% - 9px); max-width: calc(50% - 9px); }

  /* Product grid — 2 per row on tablet */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* EPC flow — 2 columns */
  .epc-flow { grid-template-columns: repeat(2, 1fr) !important; }
  .epc-step { border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
  .epc-step:nth-child(2n) { border-right: none; }

  /* Overview stats */
  .co-stats { grid-template-columns: repeat(4, 1fr); }

  /* Footer — 3 columns */
  .footer-top { gap: 24px; }
}

/* ── 4. Mobile layout fixes (≤767px) ───────────────────── */
@media (max-width: 767px) {
  /* Services cards — single column */
  .svc-card { flex: 1 1 100% !important; max-width: 100%; }

  /* Product grid — single column on mobile */
  .product-grid { grid-template-columns: 1fr !important; }

  /* Inner page grids — stack */
  .inner-grid { flex-direction: column; gap: 24px; }

  /* HSE pillars — 2 per row on mobile */
  .hse-pillars { gap: 14px; }
  .hse-pillar { flex: 1 1 calc(50% - 7px); }

  /* CTA block */
  .cta-inner { gap: 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Section padding tighter */
  .section { padding-block: clamp(40px, 7vw, 72px) !important; }
  .section-head { margin-bottom: 28px; }

  /* Enquiry form */
  .enquiry-form .field { flex: 1 1 100% !important; }
}

/* ── 5. Small phone (≤480px) ───────────────────────────── */
@media (max-width: 480px) {
  /* HSE pillars full width on tiny screens */
  .hse-pillar { flex: 1 1 100%; }

  /* Presence cards slightly narrower */
  .presence-card { flex: 0 0 180px !important; min-width: 180px !important; max-width: 180px !important; }

  /* Certifications — 2 per row */
  .certs-grid, .certs-grid--logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  /* About page co-stats */
  .co-stats { grid-template-columns: 1fr 1fr; }
}

/* ── 6. Prevent horizontal overflow on any page ─────────── */
section,
.section,
.hero,
.about-hero,
.site-footer,
.inner-cta-strip,
.about-cta-strip {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── 7. Images — never overflow ─────────────────────────── */
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   PRESENCE / COUNTRIES — Mobile ONLY: 3 rows × 2 columns
   Overrides the horizontal scroller that applies at ≤1024px.
   Tablet (768–1024px) keeps horizontal scroll unchanged.
   Desktop (>1024px) completely untouched.
   ============================================================ */
@media (max-width: 767px) {
  .presence-grid {
    display: grid                  !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto           !important;
    flex-wrap: unset               !important;
    overflow-x: hidden             !important;
    overflow-y: visible            !important;
    scroll-snap-type: none         !important;
    -webkit-overflow-scrolling: auto !important;
    touch-action: auto             !important;
    gap: 12px                      !important;
    padding-bottom: 0              !important;
    background: transparent        !important;
    border: none                   !important;
  }

  .presence-card {
    flex: unset                    !important;
    min-width: unset               !important;
    max-width: unset               !important;
    width: 100%                    !important;
    scroll-snap-align: unset;
    border: 1px solid var(--c-line) !important;
    border-radius: 4px;
  }
}

/* ============================================================
   MOBILE CTA BUTTON + LOGO SIZE FIX
   ============================================================ */

/* Fix: mobile off-canvas "ENQUIRE NOW" — text & arrow must be centred together */
.mobile-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
.mobile-cta span {
  line-height: 1 !important;
}
.mobile-cta svg {
  flex-shrink: 0 !important;
  display: block !important;
}

/* Logo — tablet & mobile sizes (30% reduction applied) */
@media (max-width: 1024px) {
  .brand-logo-mark {
    height: 39px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 34px !important;
  }
}
@media (max-width: 767px) {
  .brand-logo-mark {
    height: 35px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 31px !important;
  }
}
@media (max-width: 480px) {
  .brand-logo-mark {
    height: 31px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 28px !important;
  }
}
@media (max-width: 360px) {
  .brand-logo-mark {
    height: 28px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 25px !important;
  }
}

/* ============================================================
   LOGO SIZE — MOBILE 100% INCREASE
   ============================================================ */

/* Footer logo: was 32px on mobile → 64px (100% increase) */
@media (max-width: 767px) {
  .footer-brand-logo {
    height: 64px !important;
    margin-bottom: 18px !important;
  }
}

/* Header logo mark — all non-desktop views (+30% then +20% from original) */
@media (max-width: 1024px) {
  .brand-logo-mark {
    height: 100px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 82px !important;
  }
}
@media (max-width: 767px) {
  .brand-logo-mark {
    height: 94px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 78px !important;
  }
}
@media (max-width: 480px) {
  .brand-logo-mark {
    height: 88px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 72px !important;
  }
}
@media (max-width: 360px) {
  .brand-logo-mark {
    height: 78px !important;
  }
  .site-header.is-scrolled .brand-logo-mark,
  .site-header.mega-open .brand-logo-mark {
    height: 66px !important;
  }
}

/* ============================================================
   MEGA MENU — FEATURE PANEL WITH BACKGROUND IMAGE
   ============================================================ */
.mega-feature.has-bg-image {
  background-image: none; /* JS sets this inline */
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 0;
}
/* Dark overlay so text stays readable over any photo */
.mega-feature.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 14, 22, 0.72) 0%,
    rgba(8, 14, 22, 0.82) 100%
  );
  z-index: 1;
}
/* Push all children above the overlay */
.mega-feature.has-bg-image > * {
  position: relative;
  z-index: 2;
}
/* Switch text colours to white when over the dark overlay */

/* ============================================================
   DARK THEME — Full Site
   ============================================================
   Backgrounds : #0d1627 body · #0a1422 alt · #112040 cards
   Text        : #ffffff headings · #d0ddef body · #a8bcd4 secondary
   Accent      : #c8a84b gold · #e8231a red
   Borders     : #1e3058
   ============================================================ */

/* ── Reset base ── */
body {
  background: #0d1627;
  color: #d0ddef;
}
h1, h2, h3, h4, h5, h6 { color: #ffffff; }
p { color: #d0ddef; }
a { color: inherit; }

/* ── Header ── */
.site-header {
  background: transparent;
}
.site-header.is-scrolled,
.site-header.mega-open {
  background: rgba(8, 14, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.nav-link { color: #ffffff; }
.nav-link:hover, .nav-link.is-active { color: #ffffff; }
.nav-link.is-active::after { background: #c8a84b; }

/* ── Mega menu ── */
.mega-panel {
  background: #0e1c36;
  box-shadow: 0 28px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.mega-feature {
  background: linear-gradient(160deg, #07111f 0%, #0c1a30 100%);
}
.mega-feature-title { color: #ffffff; }
.mega-feature-text  { color: #d0ddef; }
.mega-feature-cta   { background: #c8a84b; color: #07111f; }
.mega-feature-cta:hover { background: #ffffff; color: #07111f; }
.mega-col-heading   { color: #6a84a8; border-bottom-color: #1e3058; }
.mega-link          { color: #ffffff; }
.mega-link:hover    { color: #ffffff; }
.mega-link-arrow    { background: rgba(200,168,75,0.12); color: #c8a84b; }
.mega-link:hover .mega-link-arrow { background: #c8a84b; color: #07111f; }
.mega-columns       { border-left: 1px solid #1e3058; }

/* ── Mobile menu ── */
.mobile-menu        { background: #07111f; }
.mobile-menu-panel  { background: #07111f; }
.m-link             { color: #d0ddef; border-bottom-color: #1e3058; }
.m-link:hover       { color: #ffffff; }
.mobile-menu-close  { color: #a8bcd4; }

/* ── Generic sections ── */
.section--off       { background: #0a1422; }

/* ── Section typography ── */
.section-title      { color: #ffffff; }
.section-sub        { color: #d0ddef; }
.section-eyebrow    { color: #c8a84b; }
.section-eyebrow::before { background: #c8a84b; }

/* ── Company overview ── */
.overview-text p                  { color: #d0ddef; }
.overview-text p:first-of-type    { color: #ffffff; }

/* ── EPC capabilities ── */
.epc-step                { border-right-color: #1e3058; }
.epc-step:hover          { background: rgba(200,168,75,0.05); }
.epc-step-num            { color: #c8a84b; }
.epc-step-title          { color: #ffffff; }
.epc-step-text           { color: #d0ddef; }

/* ── Service cards ── */
.svc-card                { background: #112040; border-color: #1e3058; }
.svc-card:hover          { border-color: #c8a84b; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.svc-card-title          { color: #ffffff; }
.svc-card-text           { color: #d0ddef; }
.svc-card-icon-wrap      { background: rgba(200,168,75,0.1); color: #c8a84b; }

/* ── Industry cards (dark overlay, text already white) ── */
.ind-card                { border-color: rgba(255,255,255,0.12); }
.ind-card-title          { color: #ffffff; }

/* ── Stats ── */
.co-stat-val             { color: #c8a84b; }
.co-stat-label           { color: #d0ddef; }
.co-stats                { border-color: #1e3058; }
.co-stat                 { border-right-color: #1e3058; }

/* ── HSE pillars ── */
.hse-pillar              { background: #112040; border-color: #1e3058; }
.hse-pillar-title        { color: #ffffff; }
.hse-pillar-text         { color: #d0ddef; }

/* ── Presence / countries ── */
.presence-section        { background: #0a1422; }
.country-chip            { background: #112040; border-color: #1e3058; color: #d0ddef; }

/* ── Breadcrumb ── */
.breadcrumb a                    { color: #a8bcd4; }
.breadcrumb a:hover              { color: #c8a84b; }
.breadcrumb .sep                 { color: #2e4570; }
.breadcrumb [aria-current="page"]{ color: #c8a84b; }

/* ── Product hero ── */
.product-hero { background: linear-gradient(135deg, #050e1a 0%, #0c1a30 60%, #07121e 100%); }

/* ── Product intro ── */
.product-intro           { background: #0d1627; }
.product-intro-text h2   { color: #ffffff; }
.product-intro-text p    { color: #d0ddef; }

/* ── Product categories section ── */
.product-categories          { background: #0a1422; }
.product-categories-head h2  { color: #ffffff; }
.product-categories-head p   { color: #d0ddef; }

/* ── Product cards ── */
.product-card                  { background: #112040; border-color: #1e3058; }
.product-card:hover            { border-color: #c8a84b; }
.product-card-body h3          { color: #ffffff; }
.product-card-body ul li       { color: #d0ddef; border-bottom-color: #1e3058; }
.product-card-body ul li::before { background: #c8a84b; }
.product-card-image            { background: #0a1422; }

/* ── Enquiry / contact form ── */
.enquiry-section              { background: #0a1422; border-top-color: #1e3058; }
.enquiry-wrap h2              { color: #ffffff; }
.enquiry-wrap p               { color: #d0ddef; }
.enquiry-points li            { color: #d0ddef; }
.enquiry-form-card            { background: #112040; border: 1px solid #1e3058; }
.enquiry-form-card h3         { color: #ffffff; }
.enquiry-form .field label    { color: #d0ddef; }
.enquiry-form input,
.enquiry-form textarea        { background: #0a1422; border-color: #1e3058; color: #ffffff; }
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: #4a6080; }
.enquiry-form input:focus,
.enquiry-form textarea:focus  { border-color: #c8a84b; box-shadow: 0 0 0 3px rgba(200,168,75,0.15); outline: none; }
.form-hint                    { color: #a8bcd4; }
.small-print                  { color: #a8bcd4; }

/* ── Buttons ── */
.link-arrow                   { color: #c8a84b; }
.btn--outline                 { color: #ffffff; border-color: #1e3058; }
.btn--outline:hover           { background: #c8a84b; color: #07111f; border-color: #c8a84b; }
.btn--primary:hover           { background: #c8a84b; color: #07111f; }

/* ── Footer ── */
.site-footer          { background: #050d1a; }
.footer-bottom        { border-top-color: #1e3058; color: #4a6080; }
.footer-col h5        { color: #c8a84b; }
.footer-col a         { color: #a8bcd4; }
.footer-col a:hover   { color: #ffffff; }
.footer-brand-text    { color: #c8a84b; }
.footer-brand-desc    { color: #a8bcd4; }
.footer-socials a     { color: #a8bcd4; }
.footer-socials a:hover { color: #c8a84b; }

/* ── Inner / detail pages ── */
.inner-page           { background: #0d1627; }
.inner-section        { background: #0d1627; }
.page-hero            { background: linear-gradient(135deg, #050e1a 0%, #0c1a30 60%, #07121e 100%); }

/* ── About tabs ── */
.about-nav-strip      { background: #0a1422; border-bottom-color: #1e3058; }
.about-tab            { color: #d0ddef; }
.about-tab.is-active  { color: #c8a84b; border-bottom-color: #c8a84b; }
.about-tab:hover      { color: #ffffff; }

/* ── Generic content cards ── */
.co-card              { background: #112040; border-color: #1e3058; }
.co-card h3           { color: #ffffff; }
.co-card p            { color: #d0ddef; }

/* ── Product landing category cards ── */
.product-cat-card           { background: #112040; border-color: #1e3058; }
.product-cat-card:hover     { border-color: #c8a84b; }
.product-cat-card h3        { color: #ffffff; }
.product-cat-card p         { color: #d0ddef; }

/* ── Showcase cards ── */
.showcase-card              { background: #112040; border-color: #1e3058; }
.showcase-card:hover        { border-color: #c8a84b; }
.showcase-label span        { color: #ffffff; }

/* ── Dividers ── */
hr, .divider                { border-color: #1e3058; }

/* ── Scrollbar ── */
::-webkit-scrollbar               { width: 8px; background: #0a1422; }
::-webkit-scrollbar-thumb         { background: #1e3058; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover   { background: #c8a84b; }

/* ============================================================
   SECTION THEMING — Balanced light / dark alternation
   + comprehensive text contrast enforcement
   ============================================================
   index.html    : hero(DARK)→#about(LIGHT)→#services(DARK)
                   →#industries(LIGHT)→#presence(DARK)
                   →.clients(LIGHT)→#enquire-form(DARK)
   about.html    : hero(DARK)→#company-overview(LIGHT)
                   →#vision-mission(DARK)→#leadership(LIGHT)
                   →#infrastructure-facility(DARK)→cta(DARK)
   products.html : lp-hero(DARK)→#product-categories(LIGHT)
   services.html : lp-hero(DARK)→lp-intro(LIGHT)→section(DARK)
   contact.html  : ct-hero(DARK)→ct-general(DARK)
                   →ct-actions(LIGHT)→section(DARK)
   product pages : hero(DARK)→.product-intro(LIGHT)
                   →.product-categories(DARK)→.enquiry-section(LIGHT)
   ============================================================ */


/* ══════════════════════════════════════════════════════════════
   INDEX.HTML
   ══════════════════════════════════════════════════════════════ */

/* ── 1. #about — LIGHT ── */
#about, .section#about               { background: #ffffff; }
#about h1, #about h2, #about h3,
#about h4, #about h5, #about h6     { color: #0a0f1e; }
#about p                             { color: #253048; }
#about li                            { color: #253048; }
#about strong                        { color: #0a0f1e; }
#about a                             { color: #0a0f1e; }
#about a:hover                       { color: #c8a84b; }
#about .link-arrow                   { color: #c8a84b; }
#about .section-title                { color: #0a0f1e; }
#about .section-sub                  { color: #253048; }
#about .section-eyebrow              { color: #c8a84b; }
#about .section-eyebrow::before      { background: #c8a84b; }
#about .epc-step                     { border-right-color: #e0e6ef; }
#about .epc-step:hover               { background: #f7f9fc; }
#about .epc-step-num                 { color: #c8a84b; }
#about .epc-step-title               { color: #0a0f1e; }
#about .epc-step-text                { color: #253048; }
#about .overview-text p              { color: #253048; }
#about .overview-text p:first-of-type{ color: #0a0f1e; }
#about .co-stat-val                  { color: #c8a84b; }
#about .co-stat-label                { color: #253048; }
#about .co-stats                     { border-color: #e0e6ef; }
#about .co-stat                      { border-right-color: #e0e6ef; }
/* Dark cards sitting inside the light #about section */
#about .svc-card-title               { color: #ffffff; }
#about .svc-card-text                { color: #d0ddef; }
#about .hse-pillar-title             { color: #ffffff; }
#about .hse-pillar-text              { color: #d0ddef; }

/* ── 2. #services — DARK ── */
#services .section-title             { color: #ffffff; }
#services .section-sub               { color: #d0ddef; }
#services .section-eyebrow           { color: #c8a84b; }
#services .section-eyebrow::before   { background: #c8a84b; }
#services h2, #services h3,
#services h4, #services h5          { color: #ffffff; }
#services p                          { color: #d0ddef; }
#services li                         { color: #d0ddef; }

/* ── 3. #industries — LIGHT ── */
#industries                          { background: #ffffff; }
#industries .section-title           { color: #0a0f1e; }
#industries .section-sub             { color: #253048; }
#industries .section-eyebrow         { color: #c8a84b; }
#industries .section-eyebrow::before { background: #c8a84b; }
#industries h2, #industries h3,
#industries h4                       { color: #0a0f1e; }
#industries p                        { color: #253048; }
#industries li                       { color: #253048; }
#industries .slider-btn              { border-color: #d8e0ec; color: #253048; }
#industries .slider-btn:hover        { background: #c8a84b; border-color: #c8a84b; color: #ffffff; }
/* Industry cards have dark image overlays — text stays white */
#industries .ind-card-title          { color: #ffffff !important; }
#industries [class*="card-body"] h3  { color: #ffffff !important; }

/* ── 4. #presence — DARK ── */
#presence, .section#presence {
  background: linear-gradient(160deg, #050d1a 0%, #0a1422 60%, #07111f 100%);
}
#presence .section-title             { color: #ffffff; }
#presence .section-sub               { color: #a8bcd4; }
#presence .section-eyebrow           { color: #c8a84b; }
#presence .section-eyebrow::before   { background: #c8a84b; }
/* White region cards — black text */
#presence .presence-card             { background: #ffffff !important; border-color: #e0e6ef !important; }
#presence .presence-card h3          { color: #0a0f1e !important; }
#presence .presence-card p           { color: #253048 !important; }
#presence .presence-card span        { color: #253048 !important; }
#presence .presence-card-tag         { color: #0a0f1e !important; opacity: 0.6; }
#presence .presence-card:hover       { background: #0a0f1e !important; border-color: #c8a84b !important; }
#presence .presence-card:hover h3,
#presence .presence-card:hover p     { color: #ffffff !important; }
#presence .presence-card:hover .presence-card-tag { color: #c8a84b !important; opacity: 1; }

/* ── 5. .clients — LIGHT ── */
.clients {
  background: #ffffff;
  border-top: 1px solid #e0e6ef;
  border-bottom: 1px solid #e0e6ef;
}
.clients .section-title              { color: #0a0f1e; }
.clients .section-sub                { color: #253048; }
.clients .section-eyebrow            { color: #c8a84b; }
.clients .section-eyebrow::before    { background: #c8a84b; }
.clients h2, .clients h3             { color: #0a0f1e; }
.clients p                           { color: #253048; }

/* ── 6. #enquire-form — DARK ── */
#enquire-form, .section#enquire-form { background: #0a1422; }
#enquire-form .section-title         { color: #ffffff; }
#enquire-form .section-sub           { color: #a8bcd4; }
#enquire-form .section-eyebrow       { color: #c8a84b; }
#enquire-form .section-eyebrow::before { background: #c8a84b; }
#enquire-form h1, #enquire-form h2,
#enquire-form h3, #enquire-form h4,
#enquire-form h5, #enquire-form h6  { color: #ffffff; }
#enquire-form p                      { color: #d0ddef; }
#enquire-form li                     { color: #d0ddef; }
#enquire-form strong                 { color: #ffffff; }
#enquire-form em.accent              { color: #c8a84b; }
#enquire-form .enq-info-sub          { color: #a8bcd4; }
#enquire-form .enq-contact-item a    { color: #d0ddef; }
#enquire-form .enq-contact-item a:hover { color: #c8a84b; }
#enquire-form .enq-form-wrap         { background: #112040; border-color: #1e3058; }
#enquire-form .enq-field label       { color: #d0ddef; }
#enquire-form .enq-field input,
#enquire-form .enq-field select      { background: #0d1627; border-color: #1e3058; color: #ffffff; }
#enquire-form .enq-field input::placeholder { color: #4a6080; }
#enquire-form .enq-field input:focus,
#enquire-form .enq-field select:focus { border-color: #c8a84b; box-shadow: 0 0 0 3px rgba(200,168,75,0.15); outline: none; }
#enquire-form .enq-note              { color: #a8bcd4; }
#enquire-form .enq-success h3        { color: #ffffff; }
#enquire-form .enq-success p         { color: #d0ddef; }


/* ══════════════════════════════════════════════════════════════
   ABOUT.HTML
   ══════════════════════════════════════════════════════════════ */

/* ── #company-overview — LIGHT ── */
#company-overview                         { background: #ffffff; }
#company-overview .section-title          { color: #0a0f1e; }
#company-overview .section-sub            { color: #253048; }
#company-overview .section-eyebrow        { color: #c8a84b; }
#company-overview .section-eyebrow::before{ background: #c8a84b; }
#company-overview h1, #company-overview h2,
#company-overview h3, #company-overview h4,
#company-overview h5                      { color: #0a0f1e; }
#company-overview p                       { color: #253048; }
#company-overview li                      { color: #253048; }
#company-overview strong                  { color: #0a0f1e; }

/* ── #vision-mission — DARK (section--off) — handled by global rules ── */

/* ── #leadership — LIGHT ── */
#leadership                               { background: #ffffff; }
#leadership .section-title                { color: #0a0f1e; }
#leadership .section-sub                  { color: #253048; }
#leadership .section-eyebrow              { color: #c8a84b; }
#leadership .section-eyebrow::before      { background: #c8a84b; }
#leadership h2, #leadership h3,
#leadership h4, #leadership h5            { color: #0a0f1e; }
#leadership p                             { color: #253048; }
#leadership li                            { color: #253048; }
#leadership strong                        { color: #0a0f1e; }
/* .leadership-dark block sits inside — keep its own dark colours */
#leadership .leadership-dark h3           { color: #ffffff !important; }
#leadership .leadership-dark p            { color: rgba(255,255,255,0.72) !important; }
#leadership .leadership-dark .leadership-metric strong { color: #ffffff !important; }
#leadership .leadership-dark .leadership-metric span   { color: rgba(255,255,255,0.70) !important; }

/* ── About nav strip — LIGHT (always) ── */
.about-nav-link                           { color: #253048; }
.about-nav-link:hover, .about-nav-link.active { color: #e8231a; }


/* ══════════════════════════════════════════════════════════════
   PRODUCTS.HTML
   ══════════════════════════════════════════════════════════════ */

/* ── #product-categories — LIGHT ── */
#product-categories                       { background: #ffffff; }
#product-categories .section-title        { color: #0a0f1e; }
#product-categories .section-sub          { color: #253048; }
#product-categories .section-eyebrow      { color: #c8a84b; }
#product-categories .section-eyebrow::before { background: #c8a84b; }
#product-categories h2, #product-categories h3 { color: #0a0f1e; }
#product-categories p                     { color: #253048; }
/* Product category cards remain dark navy on the white section */
#product-categories .product-cat-card     { background: #112040; border-color: #1e3058; }
#product-categories .product-cat-card h3  { color: #ffffff !important; }
#product-categories .product-cat-card p   { color: #d0ddef !important; }
#product-categories .product-cat-card:hover { border-color: #c8a84b; }


/* ══════════════════════════════════════════════════════════════
   SERVICES & CONTACT PAGES
   ══════════════════════════════════════════════════════════════ */

/* ── .lp-intro (off-white — services / products) ── */
.lp-intro h2, .lp-intro h3, .lp-intro h4 { color: #0a0f1e; }

/* ── Contact page — office cards & actions bar ── */
.ct-actions-text h2                       { color: #0a0f1e !important; }
.ct-actions-text p                        { color: #253048 !important; }
.ct-office-company                        { color: #0a0f1e !important; }
.ct-office-detail, .ct-office-detail a    { color: #253048 !important; }


/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGES (products/*.html)
   ══════════════════════════════════════════════════════════════ */

/* ── .product-intro — LIGHT ── */
.product-intro                            { background: #ffffff; }
.product-intro h1, .product-intro h2,
.product-intro h3, .product-intro h4,
.product-intro h5                         { color: #0a0f1e; }
.product-intro p                          { color: #253048; }
.product-intro li                         { color: #253048; }
.product-intro strong                     { color: #0a0f1e; }
.product-intro-text h2                    { color: #0a0f1e; }
.product-intro-text p                     { color: #253048; }

/* ── .enquiry-section — LIGHT ── */
.enquiry-section {
  background: #ffffff;
  border-top-color: #e0e6ef;
}
.enquiry-eyebrow                          { color: #c8a84b; }
.enquiry-wrap h2, .enquiry-wrap h3        { color: #0a0f1e; }
.enquiry-wrap p                           { color: #253048; }
.enquiry-points li                        { color: #253048; }
.enquiry-section h4, .enquiry-section h5  { color: #0a0f1e; }
.enquiry-section li                       { color: #253048; }
.enquiry-section strong                   { color: #0a0f1e; }
.enquiry-form-card {
  background: #f4f6fa;
  border: 1px solid #d8e0ec;
}
.enquiry-form-card h3                     { color: #0a0f1e; }
.enquiry-form .field label                { color: #253048; }
.enquiry-form input, .enquiry-form textarea {
  background: #ffffff;
  border-color: #d8e0ec;
  color: #0a0f1e;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder       { color: #8090a8; }
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #c8a84b;
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
  outline: none;
}
.form-hint                                { color: #607080; }
.small-print                              { color: #607080; }


/* ══════════════════════════════════════════════════════════════
   GLOBAL DARK SECTION GUARANTEE
   All .section--off are always dark — white text
   ══════════════════════════════════════════════════════════════ */
.section--off .section-title              { color: #ffffff; }
.section--off .section-sub                { color: #d0ddef; }
.section--off .section-eyebrow            { color: #c8a84b; }
.section--off .section-eyebrow::before    { background: #c8a84b; }
.section--off h2, .section--off h3,
.section--off h4, .section--off h5        { color: #ffffff; }
.section--off p                           { color: #d0ddef; }
.section--off li                          { color: #d0ddef; }
.section--off strong                      { color: #ffffff; }

/* ══════════════════════════════════════════════════════════════
   BASE COLOR INHERITANCE — white sections default to dark text
   Setting color on the section itself means ALL child elements
   (span, div, li, a, etc.) inherit dark text unless overridden.
   This eliminates off-blue bleed-through from the body.
   ══════════════════════════════════════════════════════════════ */

#about                   { color: #253048; }
#industries              { color: #253048; }
.clients                 { color: #253048; }
#company-overview        { color: #253048; }
#leadership              { color: #253048; }
#product-categories      { color: #253048; }
.product-intro           { color: #253048; }
.enquiry-section         { color: #253048; }

/* ── Dark sections: base white ── */
#services                { color: #d0ddef; }
#presence                { color: #d0ddef; }
#enquire-form            { color: #d0ddef; }
#vision-mission          { color: #d0ddef; }
#infrastructure-facility { color: #d0ddef; }


/* ══════════════════════════════════════════════════════════════
   INLINE STYLE OVERRIDES — !important
   Inline <style> blocks in HTML pages use hardcoded dark colors
   (#3a3a3a, #4a4a4a, var(--c-ink), var(--c-muted)) for text
   sitting directly on dark section backgrounds.
   ══════════════════════════════════════════════════════════════ */

/* ── #infrastructure-facility: lead text on dark bg ── */
#infrastructure-facility .infra-lead p    { color: #d0ddef !important; }

/* ── Light-bg containers INSIDE dark sections — restore dark text ── */
/* .infra-highlights (off-white box inside dark section) */
#infrastructure-facility .infra-highlights,
#infrastructure-facility .infra-highlights * { color: #253048 !important; }
#infrastructure-facility .infra-highlights .infra-highlights-title { color: #6b6b6b !important; }
#infrastructure-facility .infra-highlights::before { background: var(--c-red) !important; }

/* .infra-block (white cards inside dark section) */
#infrastructure-facility .infra-block h4  { color: #0a0f1e !important; }
#infrastructure-facility .infra-block p   { color: #253048 !important; }

/* .vm-card and .vm-value-item (white cards inside dark #vision-mission) */
#vision-mission .vm-card h3              { color: #0a0f1e !important; }
#vision-mission .vm-card p               { color: #253048 !important; }
#vision-mission .vm-value-item h4        { color: #0a0f1e !important; }
#vision-mission .vm-value-item p         { color: #253048 !important; }
/* vm-values-title is directly on dark bg */
#vision-mission .vm-values-title         { color: rgba(255,255,255,0.55) !important; }

/* .leadership-pillar cards (white, inside #leadership which is now light — text fine) */

/* ── Dark section lead/intro text: force white ── */
.section--off .infra-lead p              { color: #d0ddef !important; }

/* ── svc-body cards sit on white bg inside dark #services section ── */
#services .svc-body h3 { color: #0a0f1e; }
#services .svc-body p  { color: #253048; }

/* ── .inner-related ("You may also be interested in") — all text black ── */
.inner-related .section-title  { color: #000000 !important; }
.inner-related .related-card span { color: #000000 !important; }

/* ── Also correct any off-blue showing on white sections from
   the section--off li / p rules (specificity conflicts) ── */
#about li, #industries li, .clients li,
#company-overview li, #leadership li,
#product-categories li, .product-intro li,
.enquiry-section li                      { color: #253048 !important; }

#about span, #industries span, .clients span,
#company-overview span, #leadership span,
.product-intro span                      { color: inherit; }

/* ══════════════════════════════════════════════════════════════
   IMAGE PROTECTION — prevent right-click save & drag-to-download
   pointer-events: none on img passes click-throughs to parent <a>
   so all navigation links continue to work normally.
   ══════════════════════════════════════════════════════════════ */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
/* Re-enable pointer events on images inside interactive elements
   so hover states, transitions, and JS handlers still fire */
a img, button img, label img, [role="button"] img {
  pointer-events: auto;
}

