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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b1926;
  --bg-card:   #111d2b;
  --bg-footer: #090f15;
  --border:    #1f2e3d;
  --primary:   #e8541a;
  --primary-h: #d44813;
  --text:      #f5f7fa;
  --muted:     #7a9ab0;
  --input-bg:  #162130;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: clamp(320px, 92%, 1500px);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: var(--font-head); letter-spacing: 0.04em; }
a { color: inherit; text-decoration: none; }
img { display: block; }

.container { width: var(--container); margin: 0 auto; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled { background: rgba(11,25,38,0.96); backdrop-filter: blur(10px); border-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; letter-spacing: 0.12em; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(245,247,250,0.75); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active { border-bottom: 2px solid var(--primary); padding-bottom: 2px; }
.btn-nav { background: var(--primary); color: #fff; border: none; padding: 0.6rem 1.4rem; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer; transition: background 0.2s; }
.btn-nav:hover { background: var(--primary-h); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: all 0.3s; }
.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 { display: none; flex-direction: column; background: var(--bg); border-top: 1px solid var(--border); padding: 1.5rem 1rem 2rem; gap: 1rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(245,247,250,0.8); font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn-nav { margin-top: 0.5rem; text-align: center; font-size: 1rem; padding: 0.9rem; display: block; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: grayscale(30%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg) 35%, rgba(11,25,38,0.7) 70%, transparent); }
.hero-bg::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, var(--bg) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 10; padding-top: 130px;padding-bottom: 100px; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(232,84,26,0.5); background: rgba(232,84,26,0.1); color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 0.45rem 1rem; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-h1 { font-size: clamp(2.8rem, 8vw, 7rem); font-weight: 800; line-height: 0.92; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 1.5rem; color: #fff; }
.hero-h1 .dim { color: rgba(255,255,255,0.35); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 500; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── BUTTONS ── */
.btn-primary { background: var(--primary); color: #fff; border: none; padding: 1rem 2rem; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--primary-h); transform: translateX(2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 1rem 2rem; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-orange-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; transition: gap 0.2s; }
.btn-orange-link:hover { gap: 10px; }

/* ── STATS BAR ── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-card); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-cell { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 1rem; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-number { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.stat-icon { color: var(--primary); margin-bottom: 0.5rem; }

/* ── SECTION COMMON ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 1rem; line-height: 1; }
.section-line { width: 72px; height: 5px; background: var(--primary); margin-bottom: 2.5rem; }
.section-line-center { margin-left: auto; margin-right: auto; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* ── PAGE HERO ── */
.page-hero { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; padding-top: 76px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: grayscale(20%); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 10%, rgba(11,25,38,0.55) 70%, transparent); }
.page-hero-content { position: relative; z-index: 10; text-align: center; }
.page-hero-content h1 { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.65; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--primary); }
.breadcrumb .sep { opacity: 0.5; }

/* ── SERVICE CARDS (home preview) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.service-card:hover { border-color: rgba(232,84,26,0.45); transform: translateY(-6px); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); transition: filter 0.6s, transform 0.6s; }
.service-card:hover .service-card-img img { filter: grayscale(0%); transform: scale(1.06); }
.service-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%); }
.service-card-body { padding: 1.75rem; }
.service-card-icon { color: var(--primary); margin-bottom: 1rem; }
.service-card-title { font-size: 1.35rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.service-card-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ── SERVICE DETAIL (services page) ── */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; padding-bottom: 6rem; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; margin-bottom: 0; }
.service-detail.reverse .detail-img { order: 2; }
.service-detail.reverse .detail-content { order: 1; }
.detail-img { overflow: hidden; position: relative; }
.detail-img img { width: 100%; height: 440px; object-fit: cover; border: 1px solid var(--border); filter: grayscale(20%); transition: filter 0.6s, transform 0.6s; }
.detail-img:hover img { filter: grayscale(0%); transform: scale(1.03); }
.service-num { display: inline-block; padding: 0.35rem 1rem; border: 1px solid rgba(232,84,26,0.4); background: rgba(232,84,26,0.08); color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.25rem; }
.detail-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.detail-line { width: 60px; height: 4px; background: var(--primary); margin-bottom: 1.25rem; }
.detail-desc { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.capabilities-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.capabilities-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; font-weight: 500; }
.cap-check { color: var(--primary); flex-shrink: 0; margin-top: 1px; font-size: 1rem; }

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.industry-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg); }
.industry-tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: grayscale(80%); transition: opacity 0.6s, filter 0.6s, transform 0.6s; }
.industry-tile:hover img { opacity: 0.4; filter: grayscale(0%); transform: scale(1.08); }
.industry-tile-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.7); transition: transform 0.4s; }
.industry-tile:hover .industry-tile-label { transform: scale(1.06); }

/* Industries page quick-nav */
.ind-quicknav { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: var(--border); }
.ind-qn-item { background: var(--bg); display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; transition: background 0.2s; cursor: pointer; }
.ind-qn-item:hover { background: var(--bg-card); }
.ind-qn-item img { width: 60px; height: 60px; object-fit: cover; filter: grayscale(100%); margin-bottom: 0.75rem; transition: filter 0.4s; }
.ind-qn-item:hover img { filter: grayscale(0%); }
.ind-qn-item span { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.2s; }
.ind-qn-item:hover span { color: var(--primary); }

/* Industry detail */
.ind-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5.5rem; padding-bottom: 5.5rem; border-bottom: 1px solid var(--border); }
.ind-detail:last-child { border-bottom: none; margin-bottom: 0; }
.ind-detail.reverse .ind-detail-img { order: 2; }
.ind-detail.reverse .ind-detail-content { order: 1; }
.ind-detail-img { position: relative; overflow: hidden; }
.ind-detail-img img { width: 100%; height: 460px; object-fit: cover; border: 1px solid var(--border); filter: grayscale(20%); transition: filter 0.6s, transform 0.6s; }
.ind-detail-img:hover img { filter: grayscale(0%); transform: scale(1.03); }
.ind-name-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(11,25,38,0.9) 0%, transparent 100%); }
.ind-name-overlay span { font-family: var(--font-head); font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }
.ind-num { display: inline-block; padding: 0.35rem 1rem; border: 1px solid rgba(232,84,26,0.4); background: rgba(232,84,26,0.08); color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.25rem; }
.ind-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; }
.ind-line { width: 60px; height: 4px; background: var(--primary); margin-bottom: 1.25rem; }
.ind-desc { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.parts-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.75rem; }
.parts-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.parts-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; }
.parts-list li::before { content: '→'; color: var(--primary); font-size: 0.8rem; }
.ind-quote-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 1.5rem; transition: gap 0.2s; }
.ind-quote-link:hover { gap: 10px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.why-item { display: flex; flex-direction: column; gap: 1rem; }
.why-icon-box { width: 56px; height: 56px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.why-title { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.why-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-line { position: absolute; top: 48px; left: 8%; right: 8%; height: 1px; background: var(--border); }
.process-step { position: relative; z-index: 2; }
.step-num { width: 96px; height: 96px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
.step-title { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.step-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.test-card { background: var(--bg); border: 1px solid var(--border); padding: 2.5rem 2rem; position: relative; }
.test-quote-mark { position: absolute; top: 1rem; left: 1.5rem; font-family: var(--font-head); font-size: 5.5rem; line-height: 1; color: rgba(232,84,26,0.12); pointer-events: none; }
.test-text { font-size: 1rem; color: rgba(245,247,250,0.88); line-height: 1.75; font-style: italic; margin-top: 2.5rem; margin-bottom: 2rem; }
.test-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 1rem; }
.test-author { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.test-company { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-top: 0.2rem; }

/* ── CTA BANNER ── */
.cta-banner { padding: 6rem 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: grayscale(20%); }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--bg) 30%, rgba(11,25,38,0.75) 70%, var(--bg)/0); }
.cta-inner { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; }
.cta-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); margin-bottom: 0.75rem; }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.cta-sub { color: var(--muted); font-size: 1.05rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ── ABOUT ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img { overflow: hidden; }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--border); filter: grayscale(30%); transition: filter 0.7s; }
.story-img:hover img { filter: grayscale(0%); }
.story-badge { display: inline-block; padding: 0.35rem 1rem; border: 1px solid rgba(232,84,26,0.4); background: rgba(232,84,26,0.08); color: var(--primary); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.5rem; }
.story-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1.25rem; }
.story-text { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.story-text p + p { margin-top: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.value-card { padding: 2.5rem 2rem; border: 1px solid var(--border); background: var(--bg); position: relative; overflow: hidden; transition: border-color 0.3s; }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; height: 3px; width: 0; background: var(--primary); transition: width 0.35s; }
.value-card:hover { border-color: rgba(232,84,26,0.3); }
.value-card:hover::after { width: 100%; }
.value-icon { color: var(--primary); margin-bottom: 1.5rem; }
.value-title { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; }
.value-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.facility-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.facility-bento img { width: 100%; height: 190px; object-fit: cover; border: 1px solid var(--border); filter: grayscale(20%); transition: filter 0.5s; }
.facility-bento img:hover { filter: grayscale(0%); }
.facility-bento img.wide { grid-column: 1 / -1; }
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cert-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border); background: var(--bg-card); }
.cert-icon { color: var(--primary); flex-shrink: 0; }
.cert-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { }
.team-img { aspect-ratio: 1; overflow: hidden; border: 1px solid var(--border); margin-bottom: 1.25rem; }
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%); transition: filter 0.5s, transform 0.5s; }
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.05); }
.team-name { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.team-role { color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── CONTACT ── */
.contact-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.contact-card { background: var(--bg); padding: 2rem; }
.contact-card-icon { width: 48px; height: 48px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1rem; }
.contact-card-label { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.5rem; }
.contact-card-value { font-size: 0.875rem; font-weight: 500; line-height: 1.6; }
.contact-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 5rem; align-items: start; }
.contact-why-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; text-transform: uppercase; margin-bottom: 1.25rem; }
.contact-why-line { width: 56px; height: 4px; background: var(--primary); margin-bottom: 1.25rem; }
.contact-why-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2.5rem; }
.why-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; }
.why-list li .chk { color: var(--primary); }
.facility-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.facility-mini img { width: 100%; height: 140px; object-fit: cover; border: 1px solid var(--border); filter: grayscale(20%); transition: filter 0.5s; }
.facility-mini img:hover { filter: grayscale(0%); }
.facility-mini img.wide { grid-column: 1/-1; }

/* ── FORM ── */
.form-box { background: var(--bg-card); border: 1px solid var(--border); padding: 3rem; }
.form-box h3 { font-size: 1.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.form-box .form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.form-input, .form-select, .form-textarea { background: var(--bg); border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.form-select { cursor: pointer; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(122,154,176,0.45); }
.form-error { font-size: 0.74rem; color: #e05454; display: none; margin-top: 2px; }
.form-error.show { display: block; }
.btn-submit { width: 100%; background: var(--primary); color: #fff; border: none; padding: 1.1rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 1rem; transition: background 0.2s; }
.btn-submit:hover { background: var(--primary-h); }
.form-privacy { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.map-placeholder { position: relative; height: 220px; background: var(--bg-card); border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; overflow: hidden; }
.map-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: grayscale(100%); }
.map-placeholder-content { position: relative; z-index: 10; text-align: center; }
.map-placeholder-content svg { color: var(--primary); margin-bottom: 0.5rem; }
.map-place { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.map-addr { color: var(--muted); font-size: 0.875rem; margin-top: 0.25rem; }

/* ── TOAST ── */
#toast { position: fixed; bottom: 2rem; right: 2rem; background: #1b3a2a; border: 1px solid #2e6b47; color: #6ee7a5; padding: 1rem 1.5rem; font-size: 0.9rem; font-weight: 600; z-index: 9999; max-width: 320px; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; border-radius: 2px; }
#toast.show { opacity: 1; transform: none; }
#toast .toast-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }

/* ── FOOTER ── */
footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; font-weight: 800; letter-spacing: 0.14em; color: #fff; margin-bottom: 1rem; }
.footer-about { color: var(--muted); font-size: 0.875rem; line-height: 1.7; max-width: 340px; margin-bottom: 1.5rem; }
.footer-cta-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; transition: gap 0.2s; }
.footer-cta-link:hover { gap: 10px; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-list li { color: var(--muted); font-size: 0.875rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(122,154,176,0.45); }
.footer-certs { display: flex; gap: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail, .ind-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse .detail-img, .service-detail.reverse .detail-content { order: unset; }
  .ind-detail.reverse .ind-detail-img, .ind-detail.reverse .ind-detail-content { order: unset; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(5) { border-right: none; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .ind-quicknav { grid-template-columns: repeat(3,1fr); }
  .cta-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .form-box { padding: 2rem 1.25rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .ind-quicknav { grid-template-columns: repeat(2,1fr); }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
