/* ============================================
   ROH FABRICATIONS — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #020B18;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #020B18; }
::-webkit-scrollbar-thumb { background: #E85D04; border-radius: 3px; }

/* === CSS VARIABLES === */
:root {
  --navy-900: #020B18;
  --navy-800: #041529;
  --navy-700: #062040;
  --orange-500: #E85D04;
  --orange-400: #F77F00;
  --orange-300: #FFBA08;
  --steel-800: #252B3B;
  --steel-700: #2F3650;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
  --transition: all 0.3s ease;
}

/* === UTILITIES === */
.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}
.glass-dark {
  background: rgba(2,11,24,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
}
.text-gradient {
  background: linear-gradient(135deg, #E85D04, #FFBA08);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #E85D04;
  display: block;
  margin-bottom: 0.75rem;
}
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: 5rem 0; }

/* === SECTION HEADING === */
.section-heading { margin-bottom: 3rem; }
.section-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.section-heading p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 42rem;
  line-height: 1.7;
}
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 0 auto; }

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, #E85D04, #F77F00);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,93,4,0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,93,4,0.5);
  color: #fff;
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.btn-outline:hover {
  border-color: #E85D04;
  color: #E85D04;
  transform: translateY(-2px);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}
#site-header.scrolled {
  background: rgba(2,11,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E85D04, #F77F00);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: #fff;
  box-shadow: 0 4px 15px rgba(232,93,4,0.4);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.site-logo:hover .logo-icon { transform: scale(1.05); }
.logo-text-top {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.logo-text-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: #F77F00;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Image logo */
.site-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s, transform 0.2s;
  /* Logo has black background — make it transparent-friendly */
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}
.site-logo:hover .site-logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Scrolled header — slightly smaller logo */
#site-header.scrolled .site-logo-img {
  height: 44px;
}

/* Footer logo — a touch larger for breathing room */
#site-footer .site-logo-img {
  height: 60px;
  max-width: 220px;
}

/* WordPress custom logo via Customizer */
#site-header .custom-logo-link img,
#site-header .custom-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
#site-header.scrolled .custom-logo-link img,
#site-header.scrolled .custom-logo {
  height: 44px;
}
#site-footer .custom-logo-link img,
#site-footer .custom-logo {
  height: 60px;
  max-width: 220px;
}

/* Primary Nav */
#primary-nav { display: flex; align-items: center; }

/* <ul> wrapper output by wp_nav_menu */
#primary-nav .primary-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile menu list reset */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list li { display: block; }
.mobile-menu-list li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
}
.mobile-menu-list li a:hover,
.mobile-menu-list li.current-menu-item > a { color: #E85D04; }
.mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
}
.mobile-menu-list .sub-menu a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 0.4rem 1.5rem;
}

.nav-item { position: relative; }

/* Active / current nav link */
.nav-link.current { color: #fff; }
.nav-link.current::after { width: 100%; }
.nav-item.active > .nav-link { color: #fff; }
.nav-item.active > .nav-link::after { width: 100%; }
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #E85D04;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link .chevron { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(2,11,24,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.sub-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
}
.sub-menu a:hover { color: #E85D04; background: rgba(255,255,255,0.04); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 1rem; }
.btn-quote {
  background: linear-gradient(135deg, #E85D04, #F77F00);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-quote:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,93,4,0.4); color: #fff; }

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

/* Mobile Menu */
#mobile-menu {
  display: none;
  background: rgba(2,11,24,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
#mobile-menu.open { max-height: 100vh; }
#mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: #E85D04; }
.mobile-sub { padding-left: 1rem; }
.mobile-sub a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 1.5rem;
}
.mobile-cta { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0.5rem; }

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO — EDITORIAL SPLIT LAYOUT
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07090D;
}

/* Full-bleed dark panel behind everything */
.hero-dark-bg {
  position: absolute; inset: 0;
  background: #07090D;
  z-index: 0;
}

/* Right image panel — occupies right 52% of screen */
.hero-img-panel {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
}
.hero-img-panel .hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-img-panel .hero-slide.active { opacity: 1; }

/* Vignette — left edge of image fades into dark bg */
.hero-img-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    #07090D 0%,
    rgba(7,9,13,0.6) 35%,
    rgba(7,9,13,0.1) 65%,
    transparent 100%
  );
  z-index: 2;
}

/* Top meta bar */
.hero-meta-bar {
  position: absolute;
  top: 7rem; left: 0; right: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-meta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-meta-divider {
  width: 2.5rem; height: 1px;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}
.hero-meta-right {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Main left content */
.hero-split-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Label row */
.hero-label-row { margin-bottom: 1.5rem; }
.hero-label-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label-tag::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: #E85D04;
}

/* Display heading */
.hero-display-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 48vw;
}
.hero-display-line1 {
  display: block;
  font-size: clamp(5rem, 11vw, 10rem);
  color: #fff;
}
.hero-display-line2 {
  display: block;
  font-size: clamp(4rem, 9vw, 8.5rem);
  color: #fff;
  position: relative;
}

/* Orange accent underline on second heading line */
.hero-accent-line {
  display: block;
  width: 7rem;
  height: 5px;
  background: #E85D04;
  border-radius: 2px;
  margin-top: 0.4rem;
}

/* Sub paragraph */
.hero-display-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

/* Bottom feature row */
.hero-feature-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}
.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero-feature-arrow {
  color: #E85D04;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.hero-feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.hero-feature-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.1rem;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}
.hero-dot {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active { height: 2rem; background: #E85D04; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-arrow {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, #E85D04, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Mobile hero */
@media (max-width: 767px) {
  .hero-img-panel { width: 100%; opacity: 0.25; }
  .hero-img-vignette {
    background: linear-gradient(to bottom, rgba(7,9,13,0.7) 0%, rgba(7,9,13,0.3) 50%, rgba(7,9,13,0.8) 100%);
  }
  .hero-display-heading { max-width: 100%; }
  .hero-display-line1 { font-size: clamp(3.5rem, 15vw, 5rem); }
  .hero-display-line2 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-meta-bar { display: none; }
  .hero-dots { right: 1rem; bottom: 5rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-img-panel { width: 50%; opacity: 0.7; }
  .hero-display-line1 { font-size: clamp(4rem, 10vw, 7rem); }
  .hero-display-line2 { font-size: clamp(3.5rem, 9vw, 6rem); }
}

/* ============================================
   STATS SECTION
   ============================================ */
#stats-section {
  background: #020B18;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(232,93,4,0.05);
  border-color: rgba(232,93,4,0.2);
  transform: translateY(-4px);
}
.stat-icon {
  width: 3rem; height: 3rem;
  border-radius: 10px;
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.stat-card:hover .stat-icon { background: rgba(232,93,4,0.2); }
.stat-icon svg { width: 1.5rem; height: 1.5rem; stroke: #F77F00; fill: none; stroke-width: 1.5; }

/* Global safety net — SVGs from roh_icon() must never expand beyond their container */
.service-icon svg,
.safety-point-icon svg,
.safety-program-card svg,
.csr-icon svg,
.value-icon svg,
.industry-icon svg,
.contact-info-icon svg,
.badge-icon svg,
.wa-icon svg,
.footer-brand svg,
.check-item svg,
.feature-item svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }

/* Catch-all: any SVG that ends up in a flex/grid icon wrapper */
[class*="-icon"] svg,
[class*="icon-"] svg { max-width: 2rem; max-height: 2rem; }
/* Animated counter — same style as stat-number */
.counter { display: inline-block; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-weight: 600; font-size: 0.9rem; color: #fff; margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ============================================
   SERVICES SECTION
   ============================================ */
#services-preview {
  background: #030D1F;
  padding: 6rem 0;
  position: relative;
}
#services-preview .grid-bg { position: absolute; inset: 0; opacity: 0.4; }
.services-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) {
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E85D04, #F77F00);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: rgba(232,93,4,0.06);
  border-color: rgba(232,93,4,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 3rem; height: 3rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 1.5rem; height: 1.5rem; stroke-width: 1.5; fill: none; }
.service-card h3 {
  font-size: 1rem; font-weight: 600; color: #fff;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-card:hover h3 { color: #E85D04; }
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1rem; }
.service-more {
  font-size: 0.75rem; font-weight: 600; color: #E85D04;
  display: flex; align-items: center; gap: 0.3rem;
  opacity: 0; transition: opacity 0.3s;
}
.service-more svg { width: 12px; height: 12px; stroke: #E85D04; fill: none; stroke-width: 2; }
.service-card:hover .service-more { opacity: 1; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: #020B18;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.why-us-accent {
  position: absolute; top: 50%; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(232,93,4,0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translateY(-50%) translateX(50%);
  pointer-events: none;
}
.why-us-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

/* Image mosaic */
.image-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; }
.mosaic-item { border-radius: 12px; overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item:nth-child(even) { margin-top: 1.5rem; }
.mosaic-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: rgba(2,11,24,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  z-index: 2;
}
.mosaic-badge-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: #F77F00;
  line-height: 1;
}
.mosaic-badge-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.15em; }

/* Check list */
.check-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-item svg { width: 1.25rem; height: 1.25rem; stroke: #F77F00; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.1rem; }
.check-item span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Quote block */
.quote-block {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border-left: 2px solid #E85D04;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid #E85D04;
}
.quote-block p { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-style: italic; line-height: 1.7; }
.quote-block cite { font-size: 0.7rem; font-weight: 600; color: #E85D04; text-transform: uppercase; letter-spacing: 0.15em; font-style: normal; margin-top: 0.5rem; display: block; }

/* Values row */
.values-row { margin-top: 5rem; padding-top: 4rem; border-top: 1px solid rgba(255,255,255,0.05); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .values-grid { grid-template-columns: repeat(6, 1fr); } }
.value-card {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(232,93,4,0.2);
  background: rgba(255,255,255,0.02);
  transform: translateY(-3px);
}
.value-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 8px;
  background: rgba(232,93,4,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  transition: var(--transition);
}
.value-card:hover .value-icon { background: rgba(232,93,4,0.2); }
.value-icon svg { width: 1.25rem; height: 1.25rem; stroke: #F77F00; fill: none; stroke-width: 1.5; }
.value-card h4 { font-size: 0.85rem; font-weight: 600; color: #fff; }

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
#industries-section {
  background: #030D1F;
  padding: 6rem 0;
  position: relative;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0) 0%, rgba(232,93,4,0) 100%);
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: rgba(232,93,4,0.3);
  transform: translateY(-4px);
}
.industry-card:hover::before {
  background: linear-gradient(135deg, rgba(232,93,4,0.05) 0%, transparent 100%);
}
.industry-icon {
  width: 3rem; height: 3rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.industry-card:hover .industry-icon {
  background: rgba(232,93,4,0.1);
  border-color: rgba(232,93,4,0.2);
}
.industry-icon svg { width: 1.5rem; height: 1.5rem; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.industry-card:hover .industry-icon svg { stroke: #F77F00; }
.industry-card h3 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; transition: color 0.2s; }
.industry-card:hover h3 { color: #E85D04; }
.industry-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ============================================
   SAFETY SECTION
   ============================================ */
#safety-section {
  background: #020B18;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.safety-accent {
  position: absolute; top: 50%; left: 0;
  width: 16rem; height: 16rem;
  background: rgba(232,93,4,0.05);
  border-radius: 50%;
  filter: blur(60px);
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
}
.safety-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .safety-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.safety-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.safety-point {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: var(--transition);
}
.safety-point:hover { border-color: rgba(232,93,4,0.2); background: rgba(232,93,4,0.03); }
.safety-point-icon {
  width: 2rem; height: 2rem;
  border-radius: 6px;
  background: rgba(232,93,4,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.safety-point:hover .safety-point-icon { background: rgba(232,93,4,0.2); }
.safety-point-icon svg { width: 1rem; height: 1rem; stroke: #F77F00; fill: none; stroke-width: 2; }
.safety-point h4 { font-size: 0.82rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
.safety-point p { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.safety-image-wrap { position: relative; }
.safety-image-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; }
.safety-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,11,24,0.5), transparent); border-radius: 16px; }
.safety-badge-1 {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: rgba(2,11,24,0.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(232,93,4,0.2); border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.badge-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(34,197,94,0.2); border: 1px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; }
.badge-icon svg { width: 1.5rem; height: 1.5rem; stroke: #4ade80; fill: none; stroke-width: 2; }
.badge-title { font-weight: 700; font-size: 0.85rem; color: #fff; }
.badge-sub { font-size: 0.7rem; color: #4ade80; font-weight: 500; }
.safety-badge-2 {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(2,11,24,0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 1rem 1.25rem; text-align: center;
}
.badge-std { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; color: #F77F00; }
.badge-std-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

/* ============================================
   PROJECT FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: rgba(232,93,4,0.4);
  color: rgba(255,255,255,0.8);
}
.filter-btn.active {
  background: #E85D04;
  border-color: #E85D04;
  color: #fff;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
#projects-preview {
  background: #030D1F;
  padding: 6rem 0;
}
.projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  display: block;
  color: inherit;
}
.project-card:hover { border-color: rgba(232,93,4,0.2); transform: translateY(-4px); }
.project-thumb { position: relative; height: 13rem; overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project-card:hover .project-thumb img { transform: scale(1.08); }
.project-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #020B18 0%, rgba(2,11,24,0.1) 60%, transparent 100%); }
.project-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(232,93,4,0.9); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 20px;
}
.project-info { padding: 1.25rem; }
.project-info h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; transition: color 0.2s; }
.project-card:hover .project-info h3 { color: #E85D04; }
.project-info p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: #020B18;
  padding: 6rem 0;
  position: relative;
}
#testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(232,93,4,0.02), transparent);
}
.testimonials-grid {
  display: grid; gap: 1.5rem; margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(232,93,4,0.15); transform: translateY(-3px); }
.quote-icon { width: 2rem; height: 2rem; opacity: 0.3; margin-bottom: 1.25rem; }
.quote-icon svg { width: 100%; height: 100%; fill: #E85D04; }
.testimonial-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-divider { height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(232,93,4,0.2);
  border: 1px solid rgba(232,93,4,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #F77F00;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.author-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ============================================
   CTA SECTION
   ============================================ */
#cta-section {
  background: #030D1F;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-1 { position: absolute; top: -5rem; right: -5rem; width: 24rem; height: 24rem; background: rgba(232,93,4,0.08); border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-bg-2 { position: absolute; bottom: -5rem; left: -5rem; width: 16rem; height: 16rem; background: rgba(59,130,246,0.06); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-content { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.25rem;
}
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-contacts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  margin-top: 3rem;
}
.cta-contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
  transition: color 0.2s;
}
.cta-contact-link:hover { color: #E85D04; }
.cta-contact-link svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #020B18;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 1.25rem 0; }
.footer-motto { font-size: 0.82rem; color: #F77F00; font-style: italic; line-height: 1.6; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 2rem; height: 2rem; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.social-btn:hover { color: #E85D04; border-color: rgba(232,93,4,0.3); }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: #fff; margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover { color: #E85D04; }
.footer-links a svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; stroke-width: 2; opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover svg { opacity: 1; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem;
}
.contact-icon { width: 1rem; height: 1rem; stroke: #F77F00; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: #E85D04; }
.footer-newsletter { margin-top: 1.5rem; }
.footer-newsletter p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 0.6rem 0.75rem;
  color: #fff; font-size: 0.82rem; font-family: inherit;
}
.newsletter-form input:focus { outline: none; border-color: rgba(232,93,4,0.4); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  background: #E85D04; color: #fff; border: none;
  border-radius: 4px; padding: 0.6rem 0.75rem;
  cursor: pointer; transition: var(--transition);
}
.newsletter-btn:hover { background: #F77F00; }
.newsletter-btn svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: #E85D04; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 999; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,11,24,0.8) 0%, rgba(2,11,24,0.7) 60%, rgba(2,11,24,1) 100%);
}
.page-hero .grid-bg { position: absolute; inset: 0; opacity: 0.3; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 1.25rem;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 42rem; margin: 0 auto; line-height: 1.7; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff; font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: rgba(232,93,4,0.5);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-select { color: rgba(255,255,255,0.7); appearance: none; }
.form-select option { background: #020B18; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-success {
  text-align: center; padding: 4rem 2rem;
}
.form-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 2rem; height: 2rem; stroke: #4ade80; fill: none; stroke-width: 2; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.svc-quick-nav {
  background: #030D1F;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 5rem;
  z-index: 100;
}
.svc-quick-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.svc-nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.svc-nav-link:hover {
  color: #E85D04;
  border-color: rgba(232,93,4,0.4);
}

.svc-card {
  margin-bottom: 1.75rem;
  border-radius: 16px;
  border: 1px solid;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.svc-card-top {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.svc-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid;
}
.svc-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.svc-card-body { flex: 1; min-width: 200px; }
.svc-card-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.svc-card-body > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.svc-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.svc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 1.75rem 0 1.5rem;
}
.svc-capabilities-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.svc-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
}
.svc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.svc-feature-item svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.svc-feature-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .svc-card { padding: 1.5rem; }
  .svc-card-top { gap: 1rem; }
  .svc-features { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.timeline { position: relative; max-width: 48rem; margin: 3rem auto 0; }
.timeline-line { position: absolute; left: 2rem; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, #E85D04, rgba(232,93,4,0.1)); }
.timeline-item { display: flex; gap: 2rem; align-items: flex-start; margin-bottom: 2.5rem; }
.timeline-dot {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(232,93,4,0.1);
  border: 2px solid rgba(232,93,4,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
  font-size: 0.65rem; font-weight: 700; color: #F77F00;
  text-align: center; line-height: 1.2; padding: 0.4rem;
}
.timeline-body {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  border-radius: 12px; padding: 1.25rem;
  transition: border-color 0.2s;
  margin-top: 0.5rem;
}
.timeline-body:hover { border-color: rgba(232,93,4,0.15); }
.timeline-body p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Vision/Mission cards */
.vm-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card {
  border-radius: 16px; padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.vm-card.vision { border-color: rgba(232,93,4,0.15); }
.vm-card.mission { border-color: rgba(59,130,246,0.12); }
.vm-letter {
  width: 3rem; height: 3rem; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; margin-bottom: 1.5rem;
}
.vm-card.vision .vm-letter { background: rgba(232,93,4,0.12); border: 1px solid rgba(232,93,4,0.25); color: #F77F00; }
.vm-card.mission .vm-letter { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }
.vm-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 1rem;
}
.vm-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.75rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-full {
  border-radius: 20px; padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid;
}
.service-full-inner { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .service-full-inner { grid-template-columns: 1fr 1fr; } }
.service-full-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; border: 1px solid;
}
.service-full-icon svg { width: 1.75rem; height: 1.75rem; stroke-width: 1.5; fill: none; }
.service-full h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem;
}
.service-full > .service-full-inner > div:first-child p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 20px;
}
.features-label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-item svg { width: 1rem; height: 1rem; stroke: #F77F00; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 0.15rem; }
.feature-item span { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ============================================
   SAFETY PAGE — extended
   ============================================ */
.safety-program-grid {
  display: grid; gap: 1.5rem; margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .safety-program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .safety-program-grid { grid-template-columns: repeat(4, 1fr); } }
.safety-program-card {
  text-align: center; padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: var(--transition);
}
.safety-program-card:hover {
  background: rgba(232,93,4,0.05);
  border-color: rgba(232,93,4,0.2);
  transform: translateY(-4px);
}
.quality-grid {
  display: grid; gap: 1rem; margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .quality-grid { grid-template-columns: repeat(4, 1fr); } }
.quality-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  border-radius: 12px; padding: 1.5rem;
  transition: var(--transition);
}
.quality-card:hover { border-color: rgba(232,93,4,0.15); transform: translateY(-3px); }
.quality-num {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: rgba(232,93,4,0.2); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #F77F00;
  margin-bottom: 0.75rem;
}
.quality-card h3 { font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.standards-block {
  background: rgba(232,93,4,0.04);
  border: 1px solid rgba(232,93,4,0.12);
  border-radius: 20px; padding: 3rem; text-align: center;
  margin-top: 4rem;
}
.standards-block p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 40rem; margin: 0 auto 2rem; line-height: 1.7; }
.standards-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.std-tag {
  background: rgba(232,93,4,0.1); border: 1px solid rgba(232,93,4,0.2);
  color: rgba(255,188,8,0.9); font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 1.25rem; border-radius: 20px;
}

/* ============================================
   CSR PAGE
   ============================================ */
.csr-pillars-grid {
  display: grid; gap: 1.5rem; margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .csr-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .csr-pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.csr-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 2rem;
  transition: var(--transition);
}
.csr-card:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-4px); }
.csr-icon {
  width: 3rem; height: 3rem; border-radius: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.csr-icon svg { width: 1.5rem; height: 1.5rem; stroke: #4ade80; fill: none; stroke-width: 1.5; }
.csr-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.csr-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.csr-card li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.csr-card li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #E85D04; flex-shrink: 0; }
.initiatives-grid {
  display: grid; gap: 2rem; margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .initiatives-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .initiatives-grid { grid-template-columns: repeat(3, 1fr); } }
.initiative-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
  transition: var(--transition);
}
.initiative-card:hover { border-color: rgba(34,197,94,0.15); transform: translateY(-3px); }
.initiative-thumb { position: relative; height: 12rem; overflow: hidden; }
.initiative-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.initiative-card:hover .initiative-thumb img { transform: scale(1.06); }
.initiative-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #020B18, transparent); }
.initiative-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(34,197,94,0.8); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 20px;
}
.initiative-body { padding: 1.5rem; }
.initiative-body h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.initiative-body p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Partners row */
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.partner-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  padding: 0.5rem 1.25rem; border-radius: 20px;
  transition: var(--transition);
}
.partner-tag:hover { border-color: rgba(232,93,4,0.2); color: #fff; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 2fr 3fr; } }
.contact-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(232,93,4,0.15); }
.contact-info-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 8px;
  background: rgba(232,93,4,0.1); border: 1px solid rgba(232,93,4,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .contact-info-icon { background: rgba(232,93,4,0.2); }
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; stroke: #F77F00; fill: none; stroke-width: 2; }
.contact-info-title { font-weight: 600; font-size: 0.9rem; color: #fff; margin-bottom: 0.3rem; }
.contact-info-line { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.contact-info-line a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.contact-info-line a:hover { color: #E85D04; }
.wa-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 12px; padding: 1rem 1.25rem;
  transition: var(--transition);
  text-decoration: none;
  margin-top: 0.5rem;
}
.wa-card:hover { background: rgba(37,211,102,0.12); }
.wa-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(37,211,102,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-icon svg { width: 1.25rem; height: 1.25rem; fill: #4ade80; }
.wa-title { font-weight: 600; font-size: 0.9rem; color: #fff; }
.wa-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.wa-arrow { margin-left: auto; opacity: 0; transition: opacity 0.2s; }
.wa-card:hover .wa-arrow { opacity: 1; }
.wa-arrow svg { width: 1rem; height: 1rem; stroke: #4ade80; fill: none; stroke-width: 2; }
.emergency-card {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 12px; padding: 1.25rem;
  margin-top: 0.5rem;
}
.emergency-card h4 { color: rgba(252,165,165,0.9); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.emergency-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.emergency-card a { font-weight: 600; font-size: 0.9rem; color: #fff; transition: color 0.2s; }
.emergency-card a:hover { color: #E85D04; }
.map-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; height: 16rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3rem;
  flex-direction: column; gap: 0.75rem; text-align: center;
}
.map-placeholder svg { width: 2.5rem; height: 2.5rem; stroke: #F77F00; fill: none; stroke-width: 1.5; }
.map-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.map-placeholder a { color: #E85D04; font-size: 0.85rem; }
.map-placeholder a:hover { text-decoration: underline; }

/* ============================================
   CAREERS PAGE
   ============================================ */
.programs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
.program-card { padding: 2rem; }
.program-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; color: #fff; margin: 1.25rem 0 0.75rem;
}
.program-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.program-roles { display: flex; flex-direction: column; gap: 0.4rem; }
.program-role { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.program-role::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #E85D04; flex-shrink: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

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

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
/* Tablet: hide desktop nav, show hamburger */
@media (max-width: 1023px) {
  #primary-nav { display: none; }
  .hamburger { display: flex; }
  #mobile-menu { display: block; }
  .header-cta .btn-quote { display: none; }
}

/* Medium desktop (1024px–1199px): tighter nav spacing to fit all 9 items */
@media (min-width: 1024px) and (max-width: 1199px) {
  .primary-menu { gap: 0.75rem !important; }
  .nav-link { font-size: 0.8rem; }
  .btn-quote { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
}
@media (max-width: 767px) {
  .safety-points { grid-template-columns: 1fr; }
  .mosaic-item:nth-child(even) { margin-top: 0; }
  .mosaic-badge { display: none; }
  .hero-stats { gap: 1rem; }
}

/* ============================================
   ADMIN BAR OFFSET
   ============================================ */
body.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar #site-header { top: 46px; } }

/* ============================================
   WP CORE OVERRIDES
   ============================================ */
.wp-block-image img { border-radius: 8px; }
.wp-caption-text { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 0.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
