/* ============================================================
   PASIFFIRE SD PROJECTS — MAIN STYLESHEET
   Brand: Navy #1a2f6e | Green #4a8c00 | Steel #2c3a4a | White #fff
   ============================================================ */

:root {
  --navy:        #1a2f6e;
  --navy-dark:   #0f1d47;
  --navy-mid:    #243580;
  --green:       #4a8c00;
  --green-light: #5ea800;
  --green-pale:  #edf5e0;
  --steel:       #2c3a4a;
  --steel-mid:   #3d4f62;
  --steel-light: #6b7f93;
  --orange:      #e06820;
  --orange-light:#f07d30;
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --light-grey:  #eef0f3;
  --mid-grey:    #c8ced6;
  --text-dark:   #1a1f2e;
  --text-body:   #3a4455;
  --text-light:  #6b7a8d;
  --border:      #dde1e8;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 2px 8px rgba(26,47,110,0.07);
  --shadow:      0 4px 20px rgba(26,47,110,0.10);
  --shadow-lg:   0 8px 40px rgba(26,47,110,0.15);
  --transition:  0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-body); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--dark .section-label { color: #7ec840; }
.section--dark .section-label::before { background: #7ec840; }
.section--steel { background: var(--steel); color: var(--white); }
.section--light { background: var(--off-white); }
.section--green-pale { background: var(--green-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-light); border-color: var(--orange-light); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-top {
  background: var(--steel);
  padding: 6px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.header-top a:hover { color: var(--green-light); }
.header-top-left, .header-top-right { display: flex; gap: 24px; align-items: center; }
.header-top span { display: flex; align-items: center; gap: 6px; }

.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo-wrap img { height: 64px; width: auto; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.10); background: #fff; padding: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 12px 0;
  border: 1px solid var(--border);
  z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--off-white); color: var(--navy); padding-left: 28px; }
.dropdown-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,55,0.82) 0%,
    rgba(10,18,55,0.55) 55%,
    rgba(10,18,55,0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}
.hero-content .container { max-width: 900px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(74,140,0,0.25);
  border: 1px solid rgba(74,140,0,0.5);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9dd64b;
  margin-bottom: 20px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: #9dd64b; border-radius: 50%; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: normal; color: #9dd64b; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero-dot.active { background: var(--green-light); width: 28px; border-radius: 4px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 42px; height: 42px;
  background: rgba(74,140,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9dd64b;
  flex-shrink: 0;
}
.stat-text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}
.stat-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { padding: 80px 0; }
.welcome-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.welcome-points { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.welcome-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.welcome-point-icon {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.welcome-point h5 { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.welcome-point p { font-size: 0.8rem; color: var(--text-light); }
.welcome-image-block { position: relative; }
.welcome-image-block img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; }
.welcome-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.welcome-badge strong { display: block; font-size: 1.6rem; color: #9dd64b; font-family: 'Barlow Condensed', sans-serif; }
.welcome-badge span { font-size: 0.75rem; opacity: 0.7; }

/* ============================================================
   PRODUCT SOLUTIONS SECTION
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); }
.product-card-body p { font-size: 0.875rem; color: var(--text-light); flex: 1; margin-bottom: 16px; }
.product-card-footer {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

/* Individual product card (white background rule) */
.product-item-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
.product-item-image {
  background: var(--white);
  padding: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.product-item-image img { max-height: 140px; max-width: 100%; object-fit: contain; }
.product-item-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-item-body h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.product-item-body p { font-size: 0.8rem; color: var(--text-light); flex: 1; }
.product-item-actions { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.industry-card:hover { background: rgba(74,140,0,0.15); border-color: rgba(74,140,0,0.4); transform: translateY(-3px); }
.industry-icon {
  width: 60px; height: 60px;
  background: rgba(74,140,0,0.2);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: all var(--transition);
}
.industry-card:hover .industry-icon { background: var(--green); }
.industry-card h4 { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ============================================================
   RESOURCE CENTRE
   ============================================================ */
.resource-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 40px; }
.resource-type-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.resource-type-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.resource-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.resource-type-card h4 { font-size: 0.9rem; color: var(--text-dark); font-weight: 700; margin-bottom: 6px; }
.resource-type-card p { font-size: 0.78rem; color: var(--text-light); }
.resource-count {
  display: inline-block;
  margin-top: 10px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ============================================================
   QUOTE PORTAL
   ============================================================ */
.quote-section { padding: 80px 0; background: var(--navy-dark); }
.quote-section .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,47,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.form-upload:hover { border-color: var(--navy); background: var(--off-white); }
.form-upload p { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip { background: var(--green); padding: 48px 0; }
.contact-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; align-items: center; }
.contact-strip-item { display: flex; align-items: center; gap: 16px; }
.contact-strip-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-strip-item strong { display: block; color: var(--white); font-size: 0.85rem; font-weight: 700; }
.contact-strip-item span { color: rgba(255,255,255,0.8); font-size: 0.82rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0 40px; }
.footer-main .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social-btn:hover { background: var(--green); color: var(--white); }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--green-light);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-icon {
  width: 28px; height: 28px;
  background: rgba(74,140,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green-light); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: rgba(74,140,0,0.08);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--green-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.8); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; }

/* ============================================================
   CATEGORY FILTER TABS
   ============================================================ */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   RESOURCE CENTRE PAGE
   ============================================================ */
.resource-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.resource-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.resource-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-body);
}
.resource-table tr:last-child td { border-bottom: none; }
.resource-table tr:hover td { background: var(--off-white); }
.doc-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-datasheet { background: #e3eaf8; color: var(--navy); }
.badge-brochure  { background: #e8f4d9; color: var(--green); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(74,140,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.contact-detail a:hover { color: var(--green-light); }
.map-placeholder {
  height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  border: 1px dashed rgba(255,255,255,0.15);
  margin-top: 24px;
  text-align: center;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-light); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.product-detail-image {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.product-detail-image img { max-height: 320px; margin: 0 auto; object-fit: contain; }
.product-specs { margin-top: 24px; }
.spec-row { display: flex; border-bottom: 1px solid var(--border); padding: 10px 0; }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); width: 140px; flex-shrink: 0; }
.spec-value { font-size: 0.875rem; color: var(--text-body); }
.product-benefits { margin-top: 24px; }
.product-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.product-benefits li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   NOTICE / ALERT
   ============================================================ */
.notice {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--mid-grey); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--steel-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(4,1fr); }
  .footer-main .container { grid-template-columns: 1fr 1fr; }
  .welcome-section .container { grid-template-columns: 1fr; }
  .welcome-image-block { display: none; }
  .resource-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .quote-section .container { grid-template-columns: 1fr; }
  .contact-strip .container { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .header-top { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }          /* hide the desktop CTA button completely */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px 16px 20px;
    z-index: 500;
    gap: 4px;
  }
  /* Request a Quote button inside open mobile nav */
  .main-nav.open .mobile-cta {
    display: block;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .main-nav.open .mobile-cta a {
    display: block;
    text-align: center;
    background: var(--green);
    color: var(--white) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--transition);
  }
  .main-nav.open .mobile-cta a:hover { background: var(--green-light); }
  .dropdown { position: static; box-shadow: none; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); }
  .dropdown a { color: rgba(255,255,255,0.8); }
  .header-main { position: relative; }
  .hero { height: 75vh; }
  .hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .contact-strip .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main .container { grid-template-columns: 1fr; }
  .welcome-points { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .resource-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .contact-strip { display: none; }
  .hero { height: auto; }
}
