/* ===== Variables ===== */
:root {
  --cream: #F6F2EC;
  --cream-dark: #ECE5D8;
  --navy-deep: #1A2B4A;
  --navy-mid: #2A4270;
  --navy-soft: #4A6490;
  --navy-pale: #CDD9EF;
  --orange: #E87722;
  --orange-light: #F4A55A;
  --charcoal: #0D1A2E;
  --text: #1C1C1C;
  --text-muted: #6B6355;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }

/* ===== Section Label ===== */
.section-label {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: .85rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 2px;
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .3s ease; text-decoration: none;
}
.btn-primary { background: var(--navy-deep); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #c9661a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-deep); border: 1.5px solid var(--navy-deep); }
.btn-outline:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy-deep); transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(246,242,236,.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 1px 0 rgba(26,43,74,.06), 0 8px 32px rgba(26,43,74,.04);
}
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--navy-deep);
  border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(10); }
.nav-logo-icon-fallback {
  font-family: var(--font-body); font-weight: 800;
  font-size: .75rem; color: #fff; letter-spacing: 1px;
}
.nav-logo-text {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 600; color: var(--navy-deep); line-height: 1.1; display: block;
}
.nav-logo-sub {
  font-size: .6rem; font-family: var(--font-body); font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); display: block;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  transition: color .2s; padding: .25rem 0; border-bottom: 1.5px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-deep); border-bottom-color: var(--orange); }
.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 600; color: var(--navy-deep); letter-spacing: .04em;
}
.nav-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy-deep); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left {
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 5rem; position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.03); pointer-events: none;
}
.hero-left::after {
  content: ''; position: absolute; top: 60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(232,119,34,.06); pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--orange-light);
  margin-bottom: 1.2rem; animation: fadeUp .8s ease both;
}
.hero-title {
  font-size: clamp(3rem, 4.5vw, 4.5rem); font-weight: 500; color: #fff;
  line-height: 1.08; margin-bottom: 1.5rem; animation: fadeUp .8s .15s ease both;
}
.hero-title em { font-style: italic; color: var(--orange-light); }
.hero-sub {
  font-size: .98rem; font-weight: 300; color: rgba(255,255,255,.7);
  line-height: 1.85; max-width: 420px; margin-bottom: 2.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }
.hero-right { position: relative; background: var(--charcoal); overflow: hidden; }
.hero-mosaic { position: absolute; inset: 0; display: grid; grid-template-rows: 62% 38%; }
.hero-mosaic-top {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 50%, var(--charcoal) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-mosaic-top::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
}
.hero-mosaic-top-icon { opacity: .08; color: #fff; }
.hero-mosaic-top-icon svg { width: 130px; height: 130px; }
.hero-mosaic-bottom { display: grid; grid-template-columns: 1fr 1fr; }
.hero-stat-box {
  background: rgba(232,119,34,.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 8px 32px rgba(232,119,34,.28), inset 0 1px 0 rgba(255,255,255,.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.hero-stat-num { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: .68rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: .35rem; }
.hero-badge-box {
  background: rgba(205,217,239,.62);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.quality-badge { text-align: center; }
.quality-badge-icon {
  width: 44px; height: 44px; background: var(--navy-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem;
}
.quality-badge-icon svg { width: 22px; height: 22px; color: #fff; }
.quality-badge p { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-deep); line-height: 1.55; }

/* ===== Trust Bar ===== */
#trust {
  background: var(--navy-deep); padding: 1.25rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: var(--navy-pale); font-size: .74rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.trust-item svg { width: 16px; height: 16px; color: var(--orange-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,.12); }

/* ===== Sections ===== */
.section { padding: 7rem 4rem; position: relative; z-index: 1; }
.section-container { max-width: 1200px; margin: 0 auto; }

/* ===== About ===== */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: center; }
.about-quote-card {
  background: rgba(205,217,239,.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 4px 24px rgba(26,43,74,.07), inset 0 1px 0 rgba(255,255,255,.65);
  border-radius: 3px; padding: 3rem; position: relative; overflow: hidden;
}
.about-quote-card::before {
  content: '"'; font-family: var(--font-heading); font-size: 16rem; line-height: .7;
  color: var(--navy-soft); opacity: .18;
  position: absolute; top: .5rem; left: .75rem; pointer-events: none;
}
.about-quote-text { font-family: var(--font-heading); font-size: 1.55rem; font-style: italic; font-weight: 500; color: var(--navy-deep); line-height: 1.55; position: relative; }
.about-content h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 600; color: var(--navy-deep); margin-bottom: 1.5rem; }
.about-content p { font-size: .97rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.1rem; }
.about-content p strong { color: var(--navy-deep); font-weight: 600; }
.about-details-card {
  background: var(--cream-dark); border-left: 3px solid var(--orange);
  border-radius: 2px; padding: 1.75rem 2rem; margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 2rem;
}
.detail-row { display: flex; flex-direction: column; }
.detail-label { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: .15rem; }
.detail-value { font-weight: 600; color: var(--navy-deep); font-size: .92rem; }

/* ===== Industries ===== */
#industries { background: var(--navy-deep); padding: 7rem 4rem; position: relative; overflow: hidden; z-index: 1; }
#industries::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.02);
}
.industries-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.industries-header .section-label { color: var(--orange-light); }
.industries-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; color: #fff; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.industry-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
  border-radius: 3px; padding: 0; text-align: center; overflow: hidden;
  position: relative;
  transition: background .3s ease-out, transform .3s ease-out, box-shadow .3s ease-out; cursor: default;
}
.industry-card:hover {
  background: rgba(255,255,255,.13); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.15);
}
.industry-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none; z-index: 2;
}
.industry-card:hover::after {
  animation: glass-shimmer .75s ease-out forwards;
}
.industry-card-body { padding: 1.75rem 1.5rem; }
/* With icon (no image) */
.industry-card .industry-icon {
  width: 52px; height: 52px; background: var(--orange); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.industry-icon svg { width: 26px; height: 26px; color: #fff; }
/* With photo */
.industry-card-img { width: 100%; height: 160px; overflow: hidden; }
.industry-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.industry-card:hover .industry-card-img img { transform: scale(1.06); }
.industry-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: #fff; }
/* Admin upload UI */
.upload-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.upload-item label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .5rem; }
.upload-preview { width: 100%; height: 130px; background: #f0f0f0; border-radius: 4px; overflow: hidden; margin-bottom: .6rem; display: flex; align-items: center; justify-content: center; border: 1.5px dashed #ccc; }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-preview .no-image { font-size: .75rem; color: #aaa; text-align: center; line-height: 1.5; }
.upload-preview .no-image svg { display: block; margin: 0 auto .4rem; width: 28px; height: 28px; stroke: #ccc; }
.upload-input-row { display: flex; gap: .5rem; align-items: center; }
.upload-input-row input[type=file] { flex: 1; font-size: .8rem; color: var(--text-muted); }
.admin-logo-preview { height: 60px; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; background: var(--navy-deep); border-radius: 4px; padding: .75rem 1.25rem; }
.admin-logo-preview img { height: 42px; width: auto; object-fit: contain; filter: brightness(10); }
.admin-logo-preview .no-logo { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ===== Quality ===== */
#quality { background: var(--cream-dark); }
.quality-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.quality-content h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 600; color: var(--navy-deep); margin-bottom: 1.25rem; }
.quality-content p { font-size: .97rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; }
.quality-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.quality-pillar { padding: 1.5rem; border-top: 3px solid var(--navy-pale); transition: border-color .3s; }
.quality-pillar:hover { border-top-color: var(--orange); }
.quality-pillar h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--navy-deep); margin-bottom: .4rem; }
.quality-pillar p { font-size: .83rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.quality-visual {
  background: rgba(26,43,74,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 16px 48px rgba(13,26,46,.18), inset 0 1px 0 rgba(255,255,255,.06);
  border-radius: 3px; padding: 3rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.quality-stat { display: flex; align-items: center; gap: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.quality-stat:last-child { border-bottom: none; padding-bottom: 0; }
.quality-stat-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(232,119,34,.15); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.quality-stat-icon svg { width: 22px; height: 22px; color: var(--orange-light); }
.quality-stat-text strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: .2rem; }
.quality-stat-text span { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.55); letter-spacing: .04em; }

/* ===== CTA Banner ===== */
#cta-banner {
  background: var(--orange); padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; text-align: center; position: relative; z-index: 1;
}
.cta-banner-text h3 { font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; color: #fff; }
.cta-banner-text p { font-size: .88rem; color: rgba(255,255,255,.8); margin-top: .3rem; }

/* ===== Footer ===== */
footer { background: var(--charcoal); padding: 4.5rem 4rem 2rem; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.1rem; }
.footer-brand-logo .nav-logo-icon { background: rgba(255,255,255,.08); }
.footer-brand p { font-size: .86rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-col h5 { font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .86rem; font-weight: 300; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.22); }

/* ===== Page Header ===== */
.page-header { background: var(--navy-deep); padding: 130px 4rem 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #fff; margin-bottom: .6rem; position: relative; }
.page-header h1 em { font-style: italic; color: var(--orange-light); }
.page-header p { color: rgba(255,255,255,.65); font-size: 1rem; font-weight: 300; position: relative; }

/* ===== Contact Page ===== */
#contact-page { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 600; color: var(--navy-deep); margin-bottom: .75rem; }
.contact-info > p { font-size: .95rem; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin-bottom: 2.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--navy-pale); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--navy-deep); }
.contact-detail-text span { display: block; font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.contact-detail-text p, .contact-detail-text a { font-size: .93rem; font-weight: 500; color: var(--navy-deep); text-decoration: none; display: block; }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: rgba(236,229,216,.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 8px 32px rgba(26,43,74,.08), inset 0 1px 0 rgba(255,255,255,.7);
  border-radius: 3px; padding: 3rem;
}
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 600; color: var(--navy-deep); margin-bottom: .3rem; }
.contact-form-wrap > p { font-size: .86rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===== Form ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--cream); border: 1.5px solid var(--cream-dark);
  border-radius: 2px; font-family: var(--font-body); font-size: .9rem;
  color: var(--text); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy-mid); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-message { padding: 1rem; border-radius: 2px; margin-bottom: 1rem; font-weight: 600; font-size: .9rem; }
.form-message.success { background: #e8f5e9; color: #2e7d32; }
.form-message.error { background: #fce4e4; color: #c62828; }

/* ===== Admin ===== */
.admin-body { display: flex; min-height: 100vh; font-family: var(--font-body); background: linear-gradient(135deg, #eef0f4 0%, #f5f6f8 50%, #edf0f5 100%); }
.admin-sidebar {
  width: 240px;
  background: rgba(26,43,74,.94);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-right: 1px solid rgba(255,255,255,.07);
  box-shadow: 4px 0 32px rgba(13,26,46,.18);
  padding: 2rem 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto;
}
.admin-sidebar-logo { padding: 0 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 1.5rem; }
.admin-sidebar-logo img { height: 36px; width: auto; }
.admin-sidebar-logo span { font-family: var(--font-body); font-weight: 700; font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .2em; text-transform: uppercase; display: block; margin-top: .6rem; }
.admin-nav a { display: block; padding: .75rem 1.5rem; color: rgba(255,255,255,.6); font-size: .88rem; font-weight: 500; transition: background .2s, color .2s; border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff; border-left-color: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.admin-nav a.disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }
.admin-content { margin-left: 240px; padding: 2.5rem 3rem; flex: 1; min-height: 100vh; }
.admin-header { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid rgba(26,43,74,.08); }
.admin-header h1 { font-size: 1.75rem; color: var(--navy-deep); font-family: var(--font-heading); }
.admin-card {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 4px 24px rgba(26,43,74,.07), inset 0 1px 0 rgba(255,255,255,.9);
  border-radius: 6px; padding: 2rem; margin-bottom: 1.5rem;
}
.admin-card h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid #f0f0f0; }
.admin-field { margin-bottom: 1.25rem; }
.admin-field label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .4rem; }
.admin-field input, .admin-field textarea { width: 100%; padding: .65rem .9rem; border: 1.5px solid #e0e0e0; border-radius: 3px; font-family: var(--font-body); font-size: .93rem; outline: none; transition: border-color .2s; }
.admin-field input:focus, .admin-field textarea:focus { border-color: var(--orange); }
.admin-field textarea { height: 100px; resize: vertical; }
.admin-save-row { margin-top: 1.5rem; }
.coming-soon { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.coming-soon h2 { font-family: var(--font-heading); font-size: 1.75rem; color: var(--navy-deep); margin-bottom: .75rem; }

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glass-shimmer {
  from { transform: translateX(-120%) skewX(-12deg); }
  to   { transform: translateX(260%) skewX(-12deg); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Products Filter Bar ===== */
#product-filters {
  background: rgba(236,229,216,.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 4px 24px rgba(26,43,74,.05), inset 0 1px 0 rgba(255,255,255,.6);
  padding: 1.1rem 4rem;
}
.filter-row {
  display: flex; align-items: center; gap: .65rem; flex-wrap: wrap;
  margin-bottom: .55rem;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-row-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-muted);
  min-width: 80px; flex-shrink: 0;
}
.filter-pill {
  display: inline-flex; align-items: center;
  padding: .3rem .85rem; border-radius: 20px;
  font-family: var(--font-body); font-size: .73rem; font-weight: 500;
  letter-spacing: .05em; cursor: pointer; border: 1.5px solid var(--navy-pale);
  background: transparent; color: var(--navy-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.filter-pill:hover { border-color: var(--navy-mid); }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.filter-select {
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .04em; color: var(--navy-mid);
  background: transparent; border: 1.5px solid var(--navy-pale);
  border-radius: 20px; padding: .3rem 2rem .3rem .9rem;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231A2B4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
  cursor: pointer; transition: border-color .2s;
  min-width: 150px;
}
.filter-select:hover { border-color: var(--navy-mid); }
.filter-select:focus { outline: none; border-color: var(--orange); }

/* ===== Products Grid ===== */
#products-section { background: var(--cream); padding: 4rem 4rem 6rem; position: relative; z-index: 1; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 2px 16px rgba(26,43,74,.06), inset 0 1px 0 rgba(255,255,255,.9);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,43,74,.12), inset 0 1px 0 rgba(255,255,255,.9);
}
.product-card-img { width: 100%; height: 200px; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s; display: block; padding: .5rem; box-sizing: border-box; }
.product-card:hover .product-card-img img { transform: scale(1.03); }
.product-card-placeholder {
  width: 100%; height: 200px;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
}
.product-card-placeholder svg { width: 56px; height: 56px; opacity: .15; color: #fff; }
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }
.product-tag {
  display: inline-block; padding: .18rem .65rem; border-radius: 20px;
  font-size: .63rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.product-tag-type { background: var(--orange); color: #fff; }
.product-tag-industry { background: var(--navy-pale); color: var(--navy-deep); }
.product-tag-uncategorised { background: #e0e0e0; color: #777; }
.product-card-name {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600;
  color: var(--navy-deep); margin-bottom: .6rem; line-height: 1.2;
}
.product-card-desc { font-size: .88rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.products-empty {
  grid-column: 1 / -1; text-align: center; padding: 4rem 2rem;
  color: var(--text-muted); display: none;
}
.products-empty.visible { display: block; }
.products-empty p { font-size: 1rem; margin-bottom: 1rem; }
.products-empty a { color: var(--orange); font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ===== Quote Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(13,26,46,.6);
  backdrop-filter: blur(4px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: rgba(246,242,236,.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 32px 64px rgba(13,26,46,.2), inset 0 1px 0 rgba(255,255,255,.75);
  border-radius: 4px;
  width: 100%; max-width: 540px; max-height: 90vh;
  overflow-y: auto; padding: 2.5rem;
  transform: translateY(20px); transition: transform .25s;
  position: relative;
}
.modal-backdrop.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 600; color: var(--navy-deep); line-height: 1.2; }
.modal-close {
  background: none; border: none; cursor: pointer; padding: .25rem;
  color: var(--text-muted); font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: .1rem;
}
.modal-close:hover { color: var(--navy-deep); }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  background: var(--navy-deep); color: #fff;
  padding: 1rem 1.5rem; border-radius: 4px;
  font-size: .88rem; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transform: translateY(20px); opacity: 0;
  transition: transform .3s, opacity .3s;
  pointer-events: none; max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { border-left: 4px solid #4caf50; }
.toast-error   { border-left: 4px solid #f44336; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .section { padding: 5rem 2rem; }
  #trust { padding: 1.25rem 2rem; }
  #industries { padding: 5rem 2rem; }
  .page-header { padding: 120px 2rem 50px; }
  #cta-banner { padding: 2.5rem 2rem; }
  footer { padding: 4rem 2rem 2rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--cream); padding: 2rem;
    border-bottom: 1px solid var(--cream-dark); gap: 1.5rem; z-index: 99;
  }
  .navbar.nav-open .nav-links a { font-size: .9rem; padding: .5rem 0; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-right { min-height: 280px; }
  .about-grid, .quality-inner, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .trust-divider { display: none; }
  #trust { gap: 1.5rem; }
  #cta-banner { flex-direction: column; }
  .admin-body { flex-direction: column; }
  .admin-sidebar { width: 100%; position: relative; height: auto; }
  .admin-content { margin-left: 0; padding: 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  #product-filters { padding: 1rem 2rem; }
  #products-section { padding: 3rem 2rem 4rem; }
}
@media (max-width: 600px) {
  .industries-grid { grid-template-columns: 1fr; }
  .about-details-card { grid-template-columns: 1fr; }
  .quality-pillars { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .navbar { padding: .9rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 1.5rem; max-height: 100vh; border-radius: 0; }
  .modal-backdrop { align-items: flex-end; }
}

/* ===== Reduced Motion (Accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .industry-card::after { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
