/* ==========================================================================
   PACK UNIVERSE v2 — Bright industrial, Machvex-inspired structure
   ========================================================================== */

:root {
  --orange: #F58220;
  --orange-dark: #d96d10;
  --navy: #0B1934;
  --navy-light: #1a2847;
  --gray-50: #f8f8f6;
  --gray-100: #f1f0ec;
  --gray-200: #e5e4df;
  --gray-300: #c9c8c2;
  --gray-500: #6b6b66;
  --gray-700: #2c2c2a;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #5c5c58;

  --font-display: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --radius: 50px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-light); font-size: 1rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.accent { color: var(--orange); }
.section-y { padding: clamp(4rem, 7vw, 6rem) 0; }

/* TOP UTILITY BAR */
.utility-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 0;
  font-size: 0.825rem;
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.util-left, .util-right {
  display: flex; gap: 1.75rem; align-items: center; flex-wrap: wrap;
}
.util-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); }
.util-item svg { width: 16px; height: 16px; color: var(--orange); }
.util-item a { color: rgba(255,255,255,0.85); }
.util-item a:hover { color: var(--orange); }
.social-icons { display: flex; gap: 1rem; align-items: center; }
.social-icons a { color: var(--white); opacity: 0.85; }
.social-icons a:hover { color: var(--orange); opacity: 1; }
.social-icons svg { width: 16px; height: 16px; }

/* HEADER */
.site-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  gap: 2rem;
}
.brand-logo { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo img { height: 56px; width: auto; }
.brand-text {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
}
.brand-text .name {
  font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.brand-text .est {
  font-size: 0.625rem; color: var(--text-light); letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 0.2rem;
}

.nav {
  display: flex; align-items: center; gap: 2rem;
}
.nav a {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  position: relative;
}
.nav a.active { color: var(--orange); }
.nav a:hover { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,130,32,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-light); box-shadow: 0 8px 20px rgba(11,25,52,0.3); }

.menu-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); transition: transform .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 8rem;
  background: linear-gradient(rgba(11,25,52,0.55), rgba(11,25,52,0.5)), url('../assets/images/factory-aerial.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 80px;
  background:
    radial-gradient(ellipse at 0% 100%, var(--white) 50%, transparent 50%) 0 0 / 50% 100% no-repeat,
    radial-gradient(ellipse at 100% 100%, var(--white) 50%, transparent 50%) 100% 0 / 50% 100% no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1000px;
  padding: 0 var(--gutter);
}
.hero-tag {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* STATS BAR (overlaps hero) */
.stats-wrap {
  position: relative;
  margin-top: -80px;
  z-index: 5;
  padding: 0 var(--gutter);
}
.stats-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--gray-300);
  padding: 0 1rem;
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  -webkit-text-stroke: 1.5px var(--orange);
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat .lbl {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* SECTION: ABOUT (split with two images) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-head h2 { margin-bottom: 0.5rem; }
.about-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 3rem; }

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.about-images img:first-child { margin-top: 2rem; }

.about-content h3 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1rem; }
.about-list { margin: 1.5rem 0; }
.about-list li {
  display: flex; align-items: start; gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-weight: 500;
}
.about-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange); color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-tagline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 1.0625rem;
  color: var(--text);
}
.about-tagline .accent { font-weight: 600; }

/* SECTION: SERVICES (3-up with one image card) */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.svc-card.dark { background: var(--navy); color: var(--white); }
.svc-card.dark h4 { color: var(--white); }
.svc-card.dark p { color: rgba(255,255,255,0.75); }
.svc-card.dark .svc-link { color: var(--orange); }
.svc-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(245,130,32,0.1);
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.svc-card.dark .svc-icon { background: rgba(245,130,32,0.15); }
.svc-icon svg { width: 32px; height: 32px; }
.svc-card h4 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.svc-card p { font-size: 0.95rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}
.svc-link:hover { gap: 0.7rem; }

.svc-cta-card {
  background: linear-gradient(135deg, rgba(11,25,52,0.6), rgba(11,25,52,0.85)), url('../assets/images/factory-gate.jpeg');
  background-size: cover; background-position: center;
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  grid-row: span 2;
  min-height: 400px;
}
.svc-cta-card .eyebrow { color: var(--orange); }
.svc-cta-card h3 { color: var(--white); margin-bottom: 1.5rem; }

/* SECTION: WHY CHOOSE US */
.why-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
.why-col { display: flex; flex-direction: column; gap: 2.5rem; }
.why-item h4 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.why-item p { font-size: 0.95rem; }
.why-item .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(245,130,32,0.1);
  color: var(--orange);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.why-item .icon svg { width: 24px; height: 24px; }
.why-divider { width: 100%; height: 1px; background: var(--gray-200); margin-top: 1.5rem; }
.why-center img { border-radius: var(--radius-sm); aspect-ratio: 3/5; object-fit: cover; max-height: 600px; }

/* SECTION: PROJECTS / PRODUCTS GALLERY */
.gallery-section { background: var(--gray-50); }
.gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; align-items: end; }
.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.gallery-card {
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(11,25,52,0.9));
  color: var(--white);
}
.gallery-card .overlay h5 {
  color: var(--white); font-size: 1.125rem; margin-bottom: 0.25rem;
}
.gallery-card .overlay p { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* SECTION: TESTIMONIALS */
.testimonials-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; align-items: end; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.testi-card {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 2rem;
  position: relative;
}
.testi-card::after {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--orange);
  font-family: serif;
  line-height: 1;
}
.testi-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.testi-stars { color: var(--orange); margin-bottom: 1rem; }
.testi-name { font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.testi-role { color: var(--text-light); font-size: 0.875rem; margin-bottom: 1rem; }
.testi-body { font-size: 0.95rem; color: var(--text-light); }
.testi-image {
  grid-row: span 2;
  border-radius: var(--radius-sm);
  background-image: url('../assets/images/factory-gate.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

/* SECTION: RFQ */
.rfq-section {
  background: linear-gradient(rgba(11,25,52,0.65), rgba(11,25,52,0.7)), url('../assets/images/factory-aerial.jpeg');
  background-size: cover; background-position: center;
  color: var(--white);
  padding: 5rem 0;
}
.rfq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rfq-text h2 { color: var(--white); }
.rfq-text p { color: rgba(255,255,255,0.85); margin-top: 1rem; }
.rfq-list { margin-top: 2rem; }
.rfq-list li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--white);
}
.rfq-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange); color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rfq-form-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
}
.rfq-form-card input,
.rfq-form-card select,
.rfq-form-card textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid transparent;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  color: var(--text);
  margin-bottom: 1rem;
}
.rfq-form-card textarea {
  border-radius: var(--radius-sm);
  min-height: 110px;
  resize: vertical;
}
.rfq-form-card input:focus, .rfq-form-card select:focus, .rfq-form-card textarea:focus {
  outline: 2px solid var(--orange);
  border-color: var(--orange);
}
.rfq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rfq-row > * { margin-bottom: 0 !important; }
.rfq-row { margin-bottom: 1rem; }
.rfq-submit { width: 100%; padding: 1.1rem; font-size: 1rem; }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; font-size: 0.875rem; }
.footer-contact-item svg { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.8); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* FLOATING CTAs */
.floating-ctas {
  position: fixed; right: 1.25rem; bottom: 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem; z-index: 90;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform .2s, background .2s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--navy); }
.float-btn svg { width: 22px; height: 22px; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(rgba(11,25,52,0.7), rgba(11,25,52,0.75)), url('../assets/images/factory-aerial.jpeg');
  background-size: cover; background-position: center;
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.page-hero .breadcrumb a { color: var(--orange); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* CLIENT WALL */
.clients-section { background: var(--gray-50); }
.clients-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.client-cell {
  background: var(--white);
  aspect-ratio: 3/2;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-500);
  text-align: center;
  padding: 0.5rem;
  transition: color .2s, background .2s;
}
.client-cell:hover { color: var(--orange); background: var(--gray-50); }
.client-cell img { max-height: 48px; max-width: 80%; width: auto; filter: grayscale(1); opacity: 0.7; transition: filter .2s, opacity .2s; }
.client-cell:hover img { filter: grayscale(0); opacity: 1; }

/* SUSTAINABILITY BAND */
.sustain-section { background: var(--navy); color: var(--white); }
.sustain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sustain-text h2 { color: var(--white); }
.sustain-text .eyebrow { color: var(--orange); }
.sustain-text p { color: rgba(255,255,255,0.8); margin-top: 1rem; }
.sustain-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sustain-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.sustain-feature .icon { color: var(--orange); margin-bottom: 0.75rem; }
.sustain-feature .icon svg { width: 28px; height: 28px; }
.sustain-feature h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.4rem; }
.sustain-feature p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 0; }
.cert-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.cert-badge {
  background: rgba(245,130,32,0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
}

/* MEGA MENU */
.nav .has-mega { position: static; }
.mega-trigger { display: inline-flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.mega-trigger svg { width: 14px; height: 14px; transition: transform .25s; }
.has-mega:hover .mega-trigger svg { transform: rotate(180deg); }
.mega-panel {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(900px, 94vw);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(11,25,52,0.18);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 200;
}
.has-mega:hover .mega-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h6 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}
.mega-item {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  transition: background .18s;
}
.mega-item:hover { background: var(--gray-50); }
.mega-item .t { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.mega-item .d { font-size: 0.8rem; color: var(--text-light); margin-top: 1px; }
.mega-item:hover .t { color: var(--orange); }

@media (max-width: 700px) {
  .mega-panel {
    position: static; transform: none; width: 100%;
    opacity: 1; visibility: visible; box-shadow: none;
    grid-template-columns: 1fr; padding: 0.5rem 0; gap: 0.5rem;
    display: none;
  }
  .nav.open .has-mega .mega-panel { display: grid; }
  .mega-trigger svg { display: none; }
}

/* BLOG */
.page-hero .breadcrumb { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 1rem; text-align: center; }
.page-hero .breadcrumb a { color: var(--orange); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.blog-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
}
.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; margin-bottom: 0.6rem; }
.blog-body h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 0.6rem; }
.blog-body h3 a { color: var(--navy); }
.blog-body h3 a:hover { color: var(--orange); }
.blog-body p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 1rem; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* CAREERS */
.careers-hero {
  background: var(--gray-50);
  text-align: center;
  padding: 5rem 0 4rem;
}
.careers-hero .deer-mark { width: 64px; height: auto; margin: 0 auto 1.25rem; display: block; }
.careers-hero .eyebrow { color: var(--orange); }
.careers-hero h1 { color: var(--navy); margin: 0.5rem auto 1.25rem; max-width: 18ch; }
.careers-hero p { max-width: 640px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }

.life-section { padding: clamp(3rem,5vw,4.5rem) 0 clamp(2rem,4vw,3rem); }
.life-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.life-head h2 { color: var(--navy); }
.country-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.country-card {
  padding: 1rem 0;
}
.country-flag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
}
.country-card h3 { font-size: 1.4rem; margin-bottom: 0.65rem; color: var(--navy); }
.country-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.5; }
.country-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
}
.country-link:hover { color: var(--orange-dark); }
.country-card.inactive p { color: var(--gray-500); }
.country-card.inactive .country-link {
  color: var(--gray-500);
  border-color: var(--gray-300);
  cursor: default;
  pointer-events: none;
}

.openings-section { padding: clamp(2rem,4vw,3rem) 0 clamp(4rem,7vw,6rem); }
.openings-count {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.job-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 0;
}
.job-title-block h3 {
  font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.75rem; color: var(--navy);
}
.job-meta-row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  font-size: 0.88rem; color: var(--text-light);
  align-items: center;
}
.job-meta-row strong { color: var(--text); font-weight: 600; }
.job-meta-row .meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.job-meta-row svg { width: 16px; height: 16px; color: var(--orange); }
.job-salary {
  background: rgba(245,130,32,0.1);
  color: var(--orange);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.job-toggle {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.job-toggle:hover { background: var(--orange-dark); }
.job-toggle svg { width: 14px; height: 14px; transition: transform .25s; }
.job-card.open .job-toggle svg { transform: rotate(180deg); }

.job-body {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.job-card.open .job-body { display: block; }
.job-body h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
}
.job-body h4:first-child { margin-top: 0; }
.job-body > p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.65; }
.job-body ul { list-style: none; padding: 0; margin: 0 0 0.5rem; }
.job-body ul li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}
.job-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
  top: 0.6rem;
}

.job-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.job-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .2s;
}
.job-btn svg { width: 16px; height: 16px; }
.job-btn-apply { background: var(--navy); color: var(--white); }
.job-btn-apply:hover { background: var(--navy-light); }
.job-btn-wa { background: #25D366; color: var(--white); }
.job-btn-wa:hover { background: #1ebe57; }
.job-btn-call { background: var(--white); color: var(--navy); border: 1px solid var(--gray-200); }
.job-btn-call:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 900px) {
  .country-cards { grid-template-columns: 1fr 1fr; }
  .job-head { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .country-cards { grid-template-columns: 1fr; }
  .job-card { padding: 1.5rem 1.25rem; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; }
  .about-grid, .about-head, .rfq-grid, .testimonials-head, .gallery-head { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-cta-card { grid-row: auto; grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; }
  .why-center { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 1.5rem; gap: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .header-inner .btn { display: none; }
  .services-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .svc-cta-card { grid-column: auto; min-height: 280px; }
  .rfq-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 1.5rem 1rem; }
  .about-images img:first-child { margin-top: 0; }
  .utility-bar { font-size: 0.75rem; }
  .util-left, .util-right { gap: 1rem; }
}

/* CLIENT WALL + SUSTAIN RESPONSIVE */
@media (max-width: 1024px) {
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .sustain-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid[style*="repeat(3"] { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 700px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .sustain-features { grid-template-columns: 1fr; }
  .services-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
