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

/* ─── DESIGN TOKENS ────────────────────────────────────────────────── */
/* ─── DESIGN TOKENS (LUXURY B2B PALETTE) ────────────────────────────── */
:root {
  --ink:          #0f172a;
  --navy:         #071320;
  --navy-2:       #0d1e30;
  --navy-3:       #050c16;
  --steel:        #475569;
  --steel-lt:     #f1f5f9;
  --orange:       #f57018;
  --orange-d:     #d95805;
  --orange-glow:  rgba(245,112,24,.22);
  --copper-grad:  linear-gradient(135deg, #f57018 0%, #ff8c38 100%);
  --paper:        #f8fafc;
  --white:        #ffffff;
  --line:         #e2e8f0;
  --radius:       16px;
  --radius-lg:    24px;
  --max:          1180px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* ─── LAYOUT ────────────────────────────────────────────────────────── */
.container { width: min(calc(100% - 40px), var(--max)); margin: auto; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.06; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
p  { color: var(--steel); line-height: 1.75; }
.lead { font-size: 1.1rem; max-width: 660px; color: var(--steel); }

/* ─── EYEBROW ───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--copper-grad);
  border-radius: 2px;
}

/* ─── PROGRESS BAR ──────────────────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: var(--copper-grad);
  z-index: 999;
  transition: width .1s linear;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .45s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--copper-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-2);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7,19,32,.25);
}
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ─── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  z-index: 100;
  top: 0; left: 0;
  width: 100%;
  padding: 22px 0;
  transition: padding .5s var(--ease-out), background .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(7, 19, 32, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── BRAND LOGO ────────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) brightness(1.2) contrast(1.15);
  transition: transform .4s var(--ease-spring);
}
.brand-logo-img:hover {
  transform: scale(1.05);
}
.brand:hover .brand-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 600;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.menu {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: .35; }
  50%       { transform: scale(1.12) translate(-2%, 2%); opacity: .25; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatMetal {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #071320 0%, #071320 30%, rgba(7, 19, 32, 0.65) 48%, rgba(7, 19, 32, 0.05) 75%, transparent 100%),
    url('images/ChatGPT Image Aug 11, 2026, 03_27_05 PM.png') no-repeat center center / cover;
  padding-top: 110px;
  padding-bottom: 40px;
}

/* Geometric concentric circle vector effect matching image */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 100px rgba(255,255,255,.015), 0 0 0 200px rgba(255,255,255,.008);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(232, 114, 26, 0.5);
  border-radius: 999px;
  padding: 7px 16px;
  color: rgba(255,255,255,.9);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .8s var(--ease-out) .1s both;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero-badge svg {
  width: 15px; height: 15px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  animation: fadeUp .9s var(--ease-out) .25s both;
}
.hero h1 .hero-orange {
  color: var(--orange);
  display: inline-block;
}

.hero-line {
  width: 46px;
  height: 3.5px;
  background: var(--copper-grad);
  border-radius: 4px;
  margin: 16px 0 20px;
}

.hero .lead {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 540px;
  animation: fadeUp .9s var(--ease-out) .4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp .9s var(--ease-out) .55s both;
}

.hero-actions .btn-primary {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 24px rgba(232,114,26,.35);
}
.hero-actions .btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232,114,26,.45);
}

.hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .35s var(--ease-out);
}
.hero-actions .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.85);
}

/* Right side metal visual render */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s var(--ease-out) .3s both;
}
.hero-metals-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.5));
}

/* Hero Bottom Floating Glass Card */
.hero-stats-card {
  background: rgba(13, 25, 40, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  animation: fadeUp .9s var(--ease-out) .7s both;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 114, 26, 0.12);
  border: 1px solid rgba(232, 114, 26, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform .4s var(--ease-spring);
}
.hero-stat-item:hover .hero-stat-icon {
  transform: scale(1.1);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,114,26,.4);
}

.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stat-text strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-stat-text span {
  display: block;
  color: #94a3b8;
  font-size: .82rem;
  font-weight: 500;
  margin-top: 3px;
}
  letter-spacing: -0.04em;
}
.hero-meta-item span {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  font-weight: 500;
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────────────── */
.page-hero {
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--navy) 0%, #1c3a52 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(232,114,26,.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: orbPulse 14s ease-in-out infinite;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  max-width: 780px;
  margin-top: 20px;
}
.page-hero p {
  color: rgba(255,255,255,.85);
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ─── SECTION HEADER ────────────────────────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 { margin-top: 14px; }
.section-head > p { color: var(--steel); }

/* ─── GRID ──────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.cards { grid-template-columns: repeat(3, 1fr); }

/* ─── CARDS ─────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .55s var(--ease-out), border-color .4s, box-shadow .55s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  border-radius: 0 2px 2px 0;
  transition: height .45s var(--ease-out);
}
.card:hover { transform: translateY(-8px); border-color: #c8d4dc; box-shadow: 0 20px 60px rgba(14,26,36,.07); }
.card:hover::before { height: 100%; }
.card-number {
  display: inline-block;
  color: #b8c4cc;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .93rem; }
.card ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--steel);
  font-size: .9rem;
}
.card ul li { margin: 6px 0; }

/* Card icon (number badge) */
.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(232,114,26,.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 20px;
  transition: all .5s var(--ease-out);
}
.card:hover .icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(4deg);
}

/* ─── STATS ─────────────────────────────────────────────────────────── */
.stats { grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: transform .45s var(--ease-out), border-color .3s;
}
.stat:hover { transform: translateY(-5px); border-color: #c8d4dc; }
.stat strong {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--ink);
  line-height: 1;
}
.stat span {
  display: block;
  color: var(--steel);
  font-size: .82rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ─── SPLIT LAYOUT ──────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ─── PANEL (dark card) ─────────────────────────────────────────────── */
.panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.panel::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  right: -60px; bottom: -80px;
}
.panel h2, .panel h3 { color: #fff; }
.panel p { color: rgba(255,255,255,.6); }
.checks { display: grid; gap: 16px; margin-top: 28px; }
.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.check b {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── INDUSTRIES / LOGO PILLS ───────────────────────────────────────── */
.testing { background: #f2f5f8; }
.logos { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.logo-pill {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
  color: var(--steel);
  font-size: .82rem;
  cursor: default;
  transition: all .4s var(--ease-out);
}
.logo-pill:hover {
  transform: translateY(-5px);
  color: var(--orange);
  border-color: rgba(232,114,26,.4);
  box-shadow: 0 10px 28px rgba(232,114,26,.1);
}

/* ─── TESTING GRID ──────────────────────────────────────────────────── */
.testing-grid { grid-template-columns: repeat(4, 1fr); }
.test {
  padding: 20px 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  transition: all .4s var(--ease-out);
}
.test:hover { transform: translateY(-4px); border-color: var(--orange); color: var(--orange); }

/* ─── FILTER BAR (Services) ─────────────────────────────────────────── */
.filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  color: var(--steel);
  transition: all .35s var(--ease-out);
}
.filter.active,
.filter:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.service-card.hidden { display: none; }

/* ─── ACCORDION (details/summary) ──────────────────────────────────── */
details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
}
summary::after { content: '+'; color: var(--orange); font-size: 1.3rem; font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { padding: 14px 0 4px; font-size: .9rem; }

/* ─── GALLERY ───────────────────────────────────────────────────────── */
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1e3a52, #6a818f);
  transition: transform .55s var(--ease-out);
}
.gallery-item:hover { transform: scale(1.02); }
.placeholder-art {
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  font-size: .82rem;
  transition: color .3s;
}
.gallery-item:hover .placeholder-art { color: rgba(255,255,255,.85); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,20,33,.88) 0%, transparent 60%);
  transition: opacity .4s;
}
.gallery-item:hover::after { opacity: .7; }
.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 22px; bottom: 20px;
  color: #fff;
  transition: transform .4s var(--ease-out);
}
.gallery-item:hover .gallery-caption { transform: translateY(-4px); }
.gallery-caption small { color: rgba(255,255,255,.55); font-size: .8rem; }

/* ─── CONTACT ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; }
.contact-list { display: grid; gap: 14px; margin-top: 30px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .4s var(--ease-out);
}
.contact-item:hover { border-color: rgba(232,114,26,.35); transform: translateX(4px); }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(232,114,26,.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--ink); font-size: .82rem; margin-bottom: 4px; font-weight: 700; }
.contact-item span, .contact-item a { color: var(--steel); font-size: .9rem; }
.contact-item a:hover { color: var(--orange); }

/* ─── FORM ──────────────────────────────────────────────────────────── */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,114,26,.09);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.error { font-size: .75rem; color: #c0392b; margin-top: 6px; display: none; }

/* ─── MAP ───────────────────────────────────────────────────────────── */
.map {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg,#e8edf0,#e8edf0 10px,#eef2f4 10px,#eef2f4 20px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .82rem;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-3);
  color: #fff;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer h3 {
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer p { color: rgba(255,255,255,.45); font-size: .86rem; margin-top: 18px; max-width: 300px; }
.footer-desc { color: rgba(255,255,255,.45); font-size: .86rem; margin-top: 16px; max-width: 300px; line-height: 1.7; }
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .86rem;
  transition: color .3s, transform .3s;
  display: inline-block;
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links p { margin-top: 0; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: border-color .3s, color .3s;
}
.badge:hover { border-color: rgba(232,114,26,.5); color: #f4a46a; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 48px;
  padding-top: 22px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.slide-left {
  transform: translateX(-36px) !important;
}
.slide-left.in {
  transform: translateX(0) !important;
}

/* Stagger for grid children */
[data-stagger] > *:nth-child(1)  { transition-delay: .05s; }
[data-stagger] > *:nth-child(2)  { transition-delay: .12s; }
[data-stagger] > *:nth-child(3)  { transition-delay: .19s; }
[data-stagger] > *:nth-child(4)  { transition-delay: .26s; }
[data-stagger] > *:nth-child(5)  { transition-delay: .33s; }
[data-stagger] > *:nth-child(6)  { transition-delay: .40s; }
[data-stagger] > *:nth-child(7)  { transition-delay: .47s; }
[data-stagger] > *:nth-child(8)  { transition-delay: .54s; }
[data-stagger] > *:nth-child(9)  { transition-delay: .61s; }
[data-stagger] > *:nth-child(10) { transition-delay: .68s; }
[data-stagger] > *:nth-child(11) { transition-delay: .75s; }
[data-stagger] > *:nth-child(12) { transition-delay: .82s; }

/* ─── CARD IMAGES & GALLERY IMAGES ──────────────────────────────────── */
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out);
}
.card:hover .card-img {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ─── LUXURY MARQUEE TICKER ────────────────────────────────────────── */
.marquee-wrapper {
  background: var(--navy);
  border-top: 1px solid rgba(245, 112, 24, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 10;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  flex-shrink: 0;
}
.marquee-item span.highlight {
  color: var(--orange);
}

/* ─── RESPONSIVE MEDIA QUERIES ───────────────────────────────────────── */

/* Tablet (max-width: 900px) */
@media (max-width: 900px) {
  .navbar { padding: 14px 0; }
  .nav-links {
    position: absolute;
    top: 70px; left: 16px; right: 16px;
    background: var(--navy);
    padding: 24px;
    border-radius: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.12);
  }
  .nav-links.open { display: flex; }
  .menu { display: block; }
  .nav-cta { display: flex; margin-left: 0; text-align: center; }

  /* Hero responsive layout matching exact mobile screenshot */
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
    background:
      linear-gradient(180deg, rgba(7, 19, 32, 0.95) 0%, rgba(7, 19, 32, 0.45) 35%, rgba(7, 19, 32, 0.92) 80%, #071320 100%),
      url('images/hero-mobile-bg.png') no-repeat center top / cover;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 16px;
    background: var(--copper-grad);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-visual {
    display: flex;
    margin-top: 8px;
    margin-bottom: 24px;
    justify-content: center;
  }
  .hero-metals-img {
    max-width: 100%;
  }

  /* 2x2 grid stats card with internal divider lines matching mobile mockup */
  .hero-stats-card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 6px;
    border-radius: 20px;
    background: rgba(7, 19, 32, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero-stat-item {
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    gap: 12px;
  }
  .hero-stat-item:nth-child(2n) {
    border-right: none;
  }
  .hero-stat-item:nth-child(3),
  .hero-stat-item:nth-child(4) {
    border-bottom: none;
  }

  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .testing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 60px 0; }
  .section-sm { padding: 44px 0; }
  .page-hero { padding: 130px 0 54px; }

  /* Brand title text for mobile header */
  .brand-name { font-size: .85rem; }
  .brand-sub { font-size: .48rem; letter-spacing: .12em; }

  /* Hero mobile layout */
  .hero {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 36px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1.12;
  }
  .hero .lead {
    font-size: .95rem;
    margin: 18px 0 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 20px;
  }
  .hero-stat-item {
    gap: 14px;
  }
  .hero-stat-icon {
    width: 42px;
    height: 42px;
  }
  .hero-stat-text strong {
    font-size: 1.25rem;
  }

  /* Grid components on mobile */
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .testing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .panel { padding: 28px 20px; }
  .form { padding: 24px 18px; }
  .copyright { flex-direction: column; gap: 8px; text-align: center; }
  .filterbar { gap: 6px; }
  .filter { padding: 8px 14px; font-size: .78rem; }
}

/* Small Mobile Phones (max-width: 420px) */
@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-badge { font-size: .66rem; padding: 5px 12px; }
  .stats { grid-template-columns: 1fr; }
  .testing-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}


/* ─── UPGRADED SERVICE CARDS ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s, box-shadow .5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,112,24,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245,112,24,.3);
  box-shadow: 0 24px 64px rgba(14,26,36,.1);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245,112,24,.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all .5s var(--ease-spring);
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
}
.service-card:hover .service-card-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 24px rgba(245,112,24,.35);
}

.service-card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: #cbd5e1;
}

.service-card h3 {
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.7;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  margin-top: 20px;
  letter-spacing: .02em;
  transition: gap .3s var(--ease-out), opacity .3s;
  opacity: 0;
}
.service-card:hover .service-card-link { opacity: 1; gap: 10px; }

/* ─── UPGRADED STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(245,112,24,.1) 0%, transparent 70%);
  pointer-events: none;
}
.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stats-strip-item {
  text-align: center;
  flex: 1;
}
.stats-strip-item strong {
  display: block;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-strip-item span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stats-strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ─── UPGRADED QUALITY SECTION ───────────────────────────────────────── */
.quality-section { background: var(--paper); }
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.quality-text h2 { margin-top: 14px; }

.quality-panel {
  background: var(--navy);
  border-radius: 24px;
  padding: 48px 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quality-panel::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  right: -80px; bottom: -100px;
  pointer-events: none;
}
.quality-panel::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245,112,24,.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.quality-panel-header h3 {
  color: #fff;
  font-size: 2rem;
  margin-top: 16px;
  line-height: 1.2;
}

.checks { display: grid; gap: 18px; margin-top: 28px; }
.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245,112,24,.2);
  border: 1.5px solid rgba(245,112,24,.5);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 1px;
  transition: all .4s var(--ease-spring);
}
.check-icon svg { width: 13px; height: 13px; }
.check:hover .check-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.15);
}

.cert-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cert-badge {
  padding: 7px 14px;
  border: 1px solid rgba(245,112,24,.35);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  transition: all .3s;
}
.cert-badge:hover {
  background: rgba(245,112,24,.15);
  color: #f4a46a;
  border-color: rgba(245,112,24,.6);
}

/* ─── UPGRADED INDUSTRIES GRID ───────────────────────────────────────── */
.industries-section { background: var(--white); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.industry-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-weight: 700;
  color: var(--ink);
  font-size: .85rem;
  cursor: default;
  transition: all .4s var(--ease-out);
}
.industry-pill svg {
  width: 20px;
  height: 20px;
  color: var(--steel);
  flex-shrink: 0;
  transition: color .3s;
}
.industry-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(245,112,24,.35);
  box-shadow: 0 12px 32px rgba(245,112,24,.1);
  color: var(--orange);
}
.industry-pill:hover svg { color: var(--orange); }

/* ─── UPGRADED CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(245,112,24,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-label {
  display: inline-block;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  margin-bottom: 20px;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.1;
}
.cta-inner p {
  color: rgba(255,255,255,.55);
  margin: 24px auto 40px;
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

/* ─── FOOTER SOCIAL BUTTONS ──────────────────────────────────────────── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  transition: all .35s var(--ease-out);
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(245,112,24,.25);
}

/* ─── RESPONSIVE: NEW COMPONENTS ─────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { flex-wrap: wrap; gap: 24px; }
  .stats-strip-divider { display: none; }
  .stats-strip-item { flex: 0 0 40%; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .cta-trust { gap: 20px; }
  .quality-panel { padding: 32px 24px; }
  .quality-panel-header h3 { font-size: 1.6rem; }
  .stats-strip-item { flex: 0 0 100%; }
}

/* ─── INNOVATIVE DECORATIVE CONTACT PAGE STYLES ───────────────────── */

/* Hero status pill with live pulsing light */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(245, 112, 24, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Decorative Hero Background */
.contact-hero-innovative {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 13, 25, 0.94) 0%, rgba(8, 13, 25, 0.75) 50%, rgba(8, 13, 25, 0.5) 100%), url('images/contact-hero-bg.png') center/cover;
  color: #fff;
  padding: 120px 0 90px;
  overflow: hidden;
}

.contact-hero-innovative::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 112, 24, 0.18) 0%, rgba(245, 112, 24, 0) 70%);
  pointer-events: none;
}

.contact-hero-innovative::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 112, 24, 0.4), transparent);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.quick-action-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quick-action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s var(--ease-out);
  color: #fff;
  text-decoration: none;
}

.quick-action-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 112, 24, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.quick-action-card.whatsapp-card-hero {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.25) 100%);
  border-color: rgba(37, 211, 102, 0.4);
}

.quick-action-card.whatsapp-card-hero:hover {
  border-color: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.qa-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--orange);
}

.whatsapp-card-hero .qa-icon-wrapper {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.qa-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.qa-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Glassmorphic Contact Section */
.contact-section-innovative {
  padding: 80px 0;
  background: var(--paper);
  position: relative;
}

/* Contact Cards Column */
.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-innovative {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.contact-card-innovative::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--copper-grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.contact-card-innovative:hover {
  transform: translateX(6px);
  border-color: rgba(245, 112, 24, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.contact-card-innovative:hover::before {
  opacity: 1;
}

/* WhatsApp Main Highlight Card */
.whatsapp-highlight-card {
  background: linear-gradient(135deg, #0d2818 0%, #05190e 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.whatsapp-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.25);
  border-color: #25d366;
}

.whatsapp-highlight-card .contact-card-icon {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.whatsapp-highlight-card strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.whatsapp-highlight-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-top: 4px;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-direct:hover {
  background: #20bd5a;
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 112, 24, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-card-body span, .contact-card-body a {
  font-size: 0.92rem;
  color: var(--steel);
}

.contact-card-body a:hover {
  color: var(--orange);
}

/* Material Requirement Chips */
.chip-selector-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  display: block;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.chip-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  user-select: none;
}

.chip-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff;
}

.chip-btn.active {
  background: var(--copper-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px var(--orange-glow);
}

/* Innovative Form Controls */
.form-innovative {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
  position: relative;
}

.form-innovative-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-innovative-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.form-innovative-header p {
  font-size: 0.88rem;
  color: var(--steel);
  margin-top: 6px;
}

.field-icon-wrapper {
  position: relative;
}

.field-icon-wrapper input,
.field-icon-wrapper textarea {
  padding-left: 44px;
}

.field-svg-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  color: var(--steel);
  pointer-events: none;
  transition: color 0.3s;
}

.field input:focus ~ .field-svg-icon,
.field textarea:focus ~ .field-svg-icon {
  color: var(--orange);
}

/* WhatsApp Submit Button */
.btn-whatsapp-submit {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.4s var(--ease-out);
}

.btn-whatsapp-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #20bd5a 0%, #0e7a6e 100%);
}

.btn-whatsapp-submit svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Status Toast Notification */
.form-status-toast {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
  animation: slideUp 0.4s var(--ease-out);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Luxury Map Section Wrapper */
.map-section-innovative {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--paper) 0%, #eef2f6 100%);
}

.map-card-luxury {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.map-card-header {
  padding: 24px 32px;
  background: var(--navy-3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 2px solid var(--orange);
}

.map-header-left h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.map-header-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 4px;
}

.map-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper-grad);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
}

.btn-map-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--orange-glow);
  color: #fff;
}

.map-iframe-container {
  width: 100%;
  height: 450px;
  position: relative;
  background: #e2e8f0;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .quick-action-cards { grid-template-columns: 1fr; }
  .form-innovative { padding: 28px 20px; }
  .map-card-header { flex-direction: column; align-items: flex-start; }
}

/* ─── INNOVATIVE ABOUT PAGE STYLES ───────────────────────────────── */

/* About Hero Badge Strip */
.stat-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.stat-badge-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}

.stat-badge-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.stat-badge-num {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.05rem;
}

/* Bento Grid About Section */
.bento-grid-about {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.03);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 112, 24, 0.4);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }

.bento-card.dark-theme {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.bento-card.dark-theme h3 { color: #fff; }
.bento-card.dark-theme p { color: rgba(255, 255, 255, 0.7); }

.bento-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 112, 24, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.bento-card.dark-theme .bento-icon-bg {
  background: rgba(245, 112, 24, 0.2);
}

.bento-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.bento-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.bento-footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bento-card.dark-theme .bento-footer-list {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.bento-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
}

.bento-card.dark-theme .bento-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

/* Timeline Section */
.timeline-section-innovative {
  padding: 100px 0;
  background: var(--paper);
  position: relative;
}

.timeline-track-wrap {
  position: relative;
  margin-top: 60px;
}

.timeline-track-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(245, 112, 24, 0.2) 100%);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 14px 36px rgba(245, 112, 24, 0.12);
}

.timeline-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--copper-grad);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(245, 112, 24, 0.2);
  margin-bottom: 24px;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}

.timeline-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 6px 0 10px;
  color: var(--ink);
}

.timeline-card p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.6;
}

/* Material Matrix Tabs */
.matrix-section-innovative {
  padding: 90px 0;
  background: #ffffff;
}

.matrix-tabs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.matrix-tab-btn {
  background: var(--paper);
  border: 1.5px solid var(--line);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.matrix-tab-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.matrix-tab-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(7, 19, 32, 0.2);
}

.matrix-content-panel {
  display: none;
  animation: fadeIn 0.4s var(--ease-out);
}

.matrix-content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.matrix-item-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s var(--ease-out);
}

.matrix-item-card:hover {
  background: #fff;
  border-color: rgba(245, 112, 24, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.matrix-item-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.matrix-item-card p {
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 14px;
}

.matrix-item-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(245, 112, 24, 0.1);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Quality Testing Hub Cards */
.testing-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testing-hub-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.35s var(--ease-out);
}

.testing-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(245, 112, 24, 0.1);
}

.testing-hub-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.testing-hub-card:hover .testing-hub-icon {
  background: var(--copper-grad);
  color: #fff;
  border-color: transparent;
}

.testing-hub-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .bento-col-8, .bento-col-4, .bento-col-6 { grid-column: span 12; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-track-line { display: none; }
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
  .testing-hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .matrix-grid { grid-template-columns: 1fr; }
  .testing-hub-grid { grid-template-columns: 1fr; }
  .matrix-tabs-nav { flex-direction: column; align-items: stretch; }
}

/* ─── CENTERED SECTION HEAD FIX ──────────────────────────────────── */
.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-head-center h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head-center p {
  color: var(--steel);
  font-size: 1.02rem;
  margin-top: 14px;
  line-height: 1.7;
}

/* ─── VIBRANT COLORFUL BADGES & CARDS ────────────────────────────── */
.badge-vibrant {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-orange { background: rgba(245, 112, 24, 0.14); color: #e05300; border: 1px solid rgba(245, 112, 24, 0.3); }
.badge-blue { background: rgba(59, 130, 246, 0.14); color: #1d4ed8; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-emerald { background: rgba(16, 185, 129, 0.14); color: #047857; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-purple { background: rgba(168, 85, 247, 0.14); color: #7e22ce; border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-amber { background: rgba(245, 158, 11, 0.14); color: #b45309; border: 1px solid rgba(245, 158, 11, 0.3); }

/* Bento Image Enhancements */
.bento-card-with-img {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.bento-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 220px;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.bento-card:hover .bento-img-wrap img {
  transform: scale(1.06);
}

.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,23,42,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Material Matrix Item Cards with Photography */
.matrix-item-card-rich {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.matrix-item-card-rich:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 112, 24, 0.4);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.matrix-card-img-box {
  width: 100%;
  height: 170px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.matrix-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.matrix-item-card-rich:hover .matrix-card-img-box img {
  transform: scale(1.08);
}

.matrix-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.matrix-card-body h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.matrix-card-body p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Colorful Product Showcase Section */
.showcase-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.showcase-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.showcase-card.card-accent-orange:hover { border-color: #f57018; }
.showcase-card.card-accent-blue:hover { border-color: #3b82f6; }
.showcase-card.card-accent-green:hover { border-color: #10b981; }
.showcase-card.card-accent-purple:hover { border-color: #a855f7; }
.showcase-card.card-accent-amber:hover { border-color: #f59e0b; }
.showcase-card.card-accent-teal:hover { border-color: #14b8a6; }

.showcase-img-holder {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.showcase-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.showcase-card:hover .showcase-img-holder img {
  transform: scale(1.08);
}

.showcase-content {
  padding: 24px;
}

.showcase-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 8px;
}

.showcase-content p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bento-card-with-img { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ─── HOME PAGE IMAGE CARDS & VIBRANT STYLING ────────────────────── */
.home-service-card-rich {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.home-service-card-rich:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 112, 24, 0.4);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.home-card-img-banner {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.home-card-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.home-service-card-rich:hover .home-card-img-banner img {
  transform: scale(1.08);
}

.home-card-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.home-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.home-card-body p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 20px;
}

.home-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  transition: all 0.3s;
}

.home-service-card-rich:hover .home-card-link-btn {
  transform: translateX(4px);
  color: var(--orange-d);
}

/* Colorful Industry Pills Grid */
.industry-grid-rich {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.industry-card-rich {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.industry-card-rich:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(245, 112, 24, 0.12);
}

.industry-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 112, 24, 0.1);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.industry-card-rich:hover .industry-card-icon {
  background: var(--copper-grad);
  color: #fff;
}

.industry-card-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.industry-card-text span {
  font-size: 0.78rem;
  color: var(--steel);
}

@media (max-width: 1024px) {
  .industry-grid-rich { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .industry-grid-rich { grid-template-columns: 1fr; }
}

/* ─── STUNNING BACKGROUND HERO SECTION ──────────────────────────── */
.hero-bg-custom {
  position: relative;
  min-height: 680px;
  padding: 100px 0 110px;
  background-image: linear-gradient(90deg, #080d19 0%, rgba(8, 13, 25, 0.94) 42%, rgba(8, 13, 25, 0.55) 72%, rgba(8, 13, 25, 0.15) 100%), url('images/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 112, 24, 0.2);
}

.hero-bg-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(245, 112, 24, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-content {
  max-width: 680px;
  position: relative;
  z-index: 3;
}

.hero-bg-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-bg-title .hero-glow-text {
  background: linear-gradient(135deg, #ff7a18 0%, #ffaa56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(245, 112, 24, 0.4));
}

.hero-bg-desc {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-feature-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-chip-item {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.hero-chip-item:hover {
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hero-bg-custom {
    min-height: auto;
    padding: 80px 0 90px;
    background-image: linear-gradient(180deg, rgba(8, 13, 25, 0.96) 0%, rgba(8, 13, 25, 0.85) 100%), url('images/hero-bg.png');
  }
  
  .hero-bg-title {
    font-size: 2.5rem;
  }
}

/* ─── ABOUT PAGE MOCKUP STYLES ──────────────────────────────────── */

/* 1. About Hero Mockup */
.about-hero-mockup {
  position: relative;
  min-height: 540px;
  padding: 90px 0 100px;
  background-image: linear-gradient(90deg, #080d19 0%, rgba(8, 13, 25, 0.94) 42%, rgba(8, 13, 25, 0.55) 75%, rgba(8, 13, 25, 0.15) 100%), url('images/about-hero-banner.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245, 112, 24, 0.2);
}

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

.about-hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.about-hero-title span {
  color: var(--orange);
  display: block;
}

.about-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Factory & Matrix Showcase Image Cards */
.factory-showcase-card, .matrix-banner-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(245, 112, 24, 0.3);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
  background: #0f172a;
  position: relative;
  margin: 40px 0;
}

.factory-showcase-card img, .matrix-banner-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.factory-showcase-card:hover img, .matrix-banner-card:hover img {
  transform: scale(1.02);
}

.about-hero-overlay-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  max-width: 480px;
  margin-left: auto;
}

/* 2. Key Metrics Bar Dark */
.metrics-bar-wrapper {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.metrics-bar-dark {
  background: #0f172a;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.metric-column-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.metric-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 112, 24, 0.4);
  background: rgba(245, 112, 24, 0.08);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.metric-column-item strong {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.metric-column-item span.label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 2px 0;
}

.metric-column-item span.sublabel {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* 3. Our Story Section Angled Frame */
.story-grid-mockup {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 100px 0 80px;
}

.story-img-angled-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
  border: 3px solid #ffffff;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.story-img-angled-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.story-check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.story-check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.story-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.story-check-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.story-check-text p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.55;
}

/* 4. Our Capabilities 5-Card Grid */
.capabilities-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.capability-card-mockup {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.capability-card-mockup:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.capability-card-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.capability-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.capability-card-mockup:hover .capability-card-img img {
  transform: scale(1.08);
}

.capability-card-body {
  padding: 16px;
  text-align: center;
  flex-grow: 1;
}

.capability-card-body h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.capability-card-body p {
  font-size: 0.78rem;
  color: var(--steel);
  line-height: 1.5;
}

/* 5. Our Commitment to You Section */
.commitment-dark-section {
  background-color: #070c16;
  background-image: linear-gradient(180deg, rgba(8, 13, 25, 0.92) 0%, rgba(8, 13, 25, 0.85) 100%), url('images/welder-sparks.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 90px 0 60px;
  color: #ffffff;
  position: relative;
}

.commitment-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0 60px;
}

.commitment-pillar-card {
  text-align: center;
  padding: 32px 22px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.35s var(--ease-out);
}

.commitment-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 48px rgba(245, 112, 24, 0.25);
}

.commitment-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--copper-grad);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(245, 112, 24, 0.4);
  font-size: 1.25rem;
}

.commitment-pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.commitment-pillar-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.commitment-bottom-cta-strip {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .about-hero-grid, .story-grid-mockup { grid-template-columns: 1fr; }
  .metrics-bar-dark { grid-template-columns: repeat(2, 1fr); }
  .capabilities-5-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .metrics-bar-dark { grid-template-columns: 1fr; }
  .capabilities-5-grid { grid-template-columns: 1fr; }
  .commitment-pillars-grid { grid-template-columns: 1fr; }
}






