:root {
  --blue: #0345fc;
  --blue-dark: #022fb0;
  --gold: #fcc603;
  --gold-dark: #e0ad00;
  --orange: #fc6603;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --ink: #1c2130;
  --ink-soft: #4a5165;
  --line: #e2e5eb;
  --whatsapp: #25d366;
  --whatsapp-dk: #1da851;

  --maxw: 1280px;
  --pad: 24px;
  --header-h: 76px;

  --f-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

.office-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-cta-text {
  display: none;
  font-family: "EB Garamond", "Garamond", serif;
  color: #d4af37;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  background: #121d51;
  padding: 8px 14px;
}

@media (min-width: 769px) {
  .brand img.logo {
    height: 44px;
    width: auto;
  }
}

@media (min-width: 769px) {
  .header-cta-text {
    display: inline-block;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}
.footer-office .office-underline,
.fb-offices .office-underline {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  line-height: 1.05;
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 84px 0;
}
.section--alt {
  background: var(--bg-alt);
}

.seclabel {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.sectitle {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.seclead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
}
.brochure-title-logo {
  height: clamp(28px, 4.2vw, 42px);
  width: auto;
  vertical-align: -6px;
  margin-right: 10px;
}

/* ---------- Buttons: ALL sharp rectangular, zero radius ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--orange);
  color: #fff;
}
.btn--blue {
  background: var(--blue);
  color: #fff;
}
.btn--blue:hover,
.btn--blue:focus-visible {
  background: var(--blue-dark);
}
.btn--blue-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--blue-outline:hover,
.btn--blue-outline:focus-visible {
  background: var(--blue);
  color: #fff;
}
.btn--wa {
  background: var(--whatsapp);
  color: #fff;
}
.btn--wa:hover,
.btn--wa:focus-visible {
  background: var(--whatsapp-dk);
}
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost-white:hover {
  background: #fff;
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* image placeholder fallback block */
.img-placeholder {
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa1b1;
  font-family: var(--f-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ============================================================
     TOP UTILITY BAR
     ============================================================ */
.utility {
  background: var(--blue);
  color: #fff;
  font-size: 0.82rem;
}
.utility .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 36px;
  flex-wrap: wrap;
}
.utility a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility a:hover {
  color: var(--gold);
}
.utility .iso {
  margin-left: auto;
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
}
.utility .sep {
  opacity: 0.4;
}

/* ============================================================
     STICKY HEADER
     ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition:
    background 0.25s,
    box-shadow 0.2s,
    border-color 0.2s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(120%) blur(2px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(28, 33, 48, 0.06);
}
.header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.55));
}
.brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 150px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 26px;
  margin: 0 auto;
}
.nav a {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.02rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.header.scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}
.header.scrolled .nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wa-icon {
  width: 42px;
  height: 42px;
  background: var(--whatsapp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-icon:hover {
  background: var(--whatsapp-dk);
}
.wa-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Floating WhatsApp button -bottom-right of every page */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.wa-float:hover,
.wa-float:focus-visible {
  background: var(--whatsapp-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
@media (max-width: 760px) {
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float svg {
    width: 30px;
    height: 30px;
  }
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Desktop: show Request a Quote, hide the mobile logo */
.mn-cta-logo {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto; /* center it if mn-cta isn't already centered */
}
/* Mobile slide-down menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue);
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 26px var(--pad);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav .mn-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-nav .mn-top img {
  height: 40px;
  background: #fff;
  padding: 4px 8px;
}
.mobile-nav .mn-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-nav a.mn-link {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.mobile-nav a.mn-link:hover {
  color: var(--gold);
}
.mobile-nav .mn-cta {
  margin-top: 26px;
}
.mobile-nav .mn-cta .btn {
  width: 100%;
}

/* ============================================================
     HERO CAROUSEL
     ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
}
.carousel {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: auto;
  transition: transform 0.6s ease;
}
.slide .img-placeholder {
  width: 100%;
  height: 100%;
}
/* subtle darken for overlay legibility, NOT a gradient hero */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.45) 0%, rgba(10, 14, 26, 0) 20%),
    linear-gradient(
      90deg,
      rgba(10, 14, 26, 0.45) 0%,
      rgba(10, 14, 26, 0.05) 45%,
      rgba(10, 14, 26, 0) 70%
    );
}

.slide-panel {
  position: absolute;
  left: 0;
  bottom: 64px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.93);
  border-left: 5px solid var(--gold);
  padding: 22px 30px;
  max-width: 460px;
  margin-left: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
}
.slide-panel .sp-name {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.slide-panel .sp-spec {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 8px 0 16px;
}
.slide-panel .btn {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px;
  height: 50px;
  background: rgba(3, 69, 252, 0.85);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.car-btn:hover {
  background: var(--blue);
}
.car-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.car-btn.prev {
  left: 16px;
}
.car-btn.next {
  right: 16px;
}

.car-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.car-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.18s;
}
.car-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* STAT BAR */
/* .statbar {
  background: var(--blue);
  color: #fff;
}
.statbar .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.statbar .stat {
  padding: 22px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.statbar .stat:last-child {
  border-right: none;
}
.statbar .stat b {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.statbar .stat span {
  font-size: 0.82rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
} */

/* ===========================
   STATS BAR
=========================== */

.statbar {
  background: var(--blue);
  color: #fff;
  padding: 12px 0;
}

.statbar .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.statbar .stat {
  padding: 28px 20px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.statbar .stat:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.08);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.statbar .stat b {
  display: block;

  font-family: var(--f-head);

  font-weight: 800;

  font-size: 2rem;

  line-height: 1;

  margin-bottom: 10px;

  letter-spacing: 0.02em;
}

.statbar .stat span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 992px) {
  .statbar .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .statbar .wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
     ABOUT
     ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 50px;
  align-items: center;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.about-text p strong {
  color: var(--ink);
}
.about-callouts {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.callout {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  padding: 12px 18px;
  background: var(--bg-alt);
}
.callout b {
  font-family: var(--f-head);
  font-size: 1.15rem;
  display: block;
  letter-spacing: 0.02em;
}
.callout span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #fff;
  padding: 18px;
  border: 1px solid var(--line);
}
.about-media .img-placeholder {
  height: 450px;
}
.about-media figcaption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 8px;
  text-align: center;
}

/* About -key strengths row */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.afeat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.afeat-ic {
  width: 62px;
  height: 62px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.afeat-ic svg {
  width: 32px;
  height: 32px;
}
.afeat b {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.12;
}

/* About -vision & mission */
.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 52px;
}
.vm-card {
  background: var(--bg-alt);
  border-top: 4px solid var(--gold);
  padding: 32px 30px;
}
.vm-label {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.9rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.vm-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
     PRODUCT CATEGORIES
     ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.pcard {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}
.pcard-media {
  height: 240px;
  background: linear-gradient(180deg, #fafbfd, #f3f6fb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: 0.35s ease;
}

.pcard:hover .pcard-media img {
  transform: scale(1.06);
}
.pcard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard-body h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.pcard-variants {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4px 0 12px;
}
.pcard-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.pcard-explore {
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}
.pcard-explore:hover {
  color: var(--orange);
}
.pcard-explore .chev {
  transition: transform 0.2s;
}
.pcard[aria-expanded="true"] .pcard-explore .chev {
  transform: rotate(90deg);
}

/* Accordion detail panel (full-width row injected after grid logically) */
.detail {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background: var(--bg-alt);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
}
.detail.open {
  max-height: 6000px;
  opacity: 1;
  margin-top: 4px;
}
.detail-inner {
  padding: 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

.subcat-list {
  border-right: 1px solid var(--line);
  padding-right: 22px;
}
.subcat-list h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.subcat-list button {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  padding: 13px 14px;
  margin-bottom: 14px;
  cursor: pointer;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  border-radius: 0;
  transition: 0.15s;
}
.subcat-list button:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.subcat-list button.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.subcat-list .subnote {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.5;
}

.detail-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.detail-panels .detail-panel + .detail-panel {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.detail-panel .dp-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-panel .dp-shot {
  background: #fff;
  border: 1px solid var(--line);
  height: 220px;
  overflow: hidden;
}
.detail-panel .dp-media.dual .dp-shot {
  height: 150px;
}
.detail-panel .dp-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.detail-panel .dp-shot .img-placeholder {
  height: 100%;
}
.dp-info h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dp-info .dp-app {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.spec th,
table.spec td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.spec th {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 600;
  width: 130px;
  background: #fff;
}
table.spec td {
  color: var(--ink);
}
.sku-badge {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--ink);
  color: #fff;
  padding: 3px 9px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* spec-panel action buttons */
.dp-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.dp-actions .btn {
  padding: 11px 26px;
  font-size: 0.92rem;
}

/* ============================================================
     CATALOGUE MODAL
     ============================================================ */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pmodal.open {
  display: flex;
}
.pmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 18, 0.74);
}
.pmodal-box {
  position: relative;
  background: #fff;
  width: min(880px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.pmodal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.pmodal-head h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pmodal-close {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.pmodal-close:hover {
  background: var(--orange);
}
.pmodal-body {
  overflow-y: auto;
  padding: 18px 22px;
  background: var(--bg-alt);
}
.pmodal-body img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 16px;
}
.pmodal-body img:last-child {
  margin-bottom: 0;
}
.pmodal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.pmodal-foot span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--f-head);
  font-weight: 600;
}
.pmodal-foot .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
}
@media (max-width: 760px) {
  .pmodal {
    padding: 10px;
  }
  .pmodal-box {
    max-height: 94vh;
  }
  .pmodal-head {
    padding: 12px 16px;
  }
  .pmodal-body {
    padding: 12px;
  }
}

/* ============================================================
     RUSPERT
     ============================================================ */
.ruspert {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* yellow curved shape -reference style */
.ruspert-shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -30vw;
  transform: translateY(-50%);
  width: 80vw;
  height: 80vw;
  min-width: 820px;
  min-height: 820px;
  background: var(--gold);
  border-radius: 50%;
}
.ruspert-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 50px;
  align-items: center;
}
/* LEFT -black text on the yellow shape */
.ruspert-left {
  color: #0c0d12;
}
.ruspert-eyebrow {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0c0d12;
  margin-bottom: 12px;
}
.ruspert-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  text-transform: uppercase;
  color: #0c0d12;
  line-height: 1.02;
  margin-bottom: 16px;
}
.ruspert-lead {
  color: #1c2130;
  font-size: 1.05rem;
  max-width: 520px;
}
.ruspert-pill {
  display: inline-block;
  margin-top: 22px;
  background: #0c0d12;
  color: var(--gold);
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 11px 20px;
}
/* RIGHT -white text on the blue */
.ruspert-right {
  color: #fff;
}
.ruspert-stat {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 28px;
}
.ruspert-stat-num {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--gold);
}
.ruspert-stat-sub {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  max-width: 470px;
}
.ruspert-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ruspert-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.5;
}
.ruspert-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--gold);
}
.ruspert-points li b {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
     INDUSTRIES
     ============================================================ */
.ind-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.ind-tile {
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  padding: 22px 20px;
  background: #fff;
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  transition: 0.18s;
}
.ind-tile:hover {
  border-left-color: var(--gold);
  background: var(--bg-alt);
}
.ind-tile span {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
     QUALITY
     ============================================================ */
.qual-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.qcard {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 26px 22px;
}
.qcard b {
  font-family: var(--f-head);
  font-size: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.qcard .qtag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  margin: 6px 0 12px;
}
.qcard p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ============================================================
     BROCHURE
     ============================================================ */
.brochure {
  text-align: center;
}
.brochure .seclabel {
  text-align: center;
}
.brochure-cover {
  width: 300px;
  height: 420px;
  margin: 26px auto 28px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(28, 33, 48, 0.16);
  overflow: hidden;
  background: var(--bg-alt);
}
.brochure-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-cover .img-placeholder {
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.brochure-cover .img-placeholder b {
  font-size: 1.4rem;
  color: var(--blue);
}
.brochure-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.brochure-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============================================================
     CONTACT
     ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req {
  color: var(--orange);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field .err {
  color: var(--orange);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
  font-weight: 600;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--orange);
}
.field.invalid .err {
  display: block;
}
.form-submit {
  width: auto;
}
.form-success {
  display: none;
  border: 1px solid var(--whatsapp);
  border-left: 5px solid var(--whatsapp);
  background: #eafaf0;
  padding: 16px 20px;
  margin-bottom: 18px;
  color: #14502c;
  font-weight: 500;
}
.form-success.show {
  display: block;
}
.form-success b {
  font-family: var(--f-head);
  font-size: 1.2rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-info {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 30px;
}
.contact-info h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ci-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.ci-item .ci-ic {
  width: 36px;
  height: 36px;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-item .ci-ic svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.ci-item .ci-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
}
.ci-item .ci-val {
  font-weight: 600;
  color: var(--ink);
}
.ci-item .ci-val a:hover {
  color: var(--blue);
}
.contact-info .ci-btns {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info .ci-btns .btn {
  width: 100%;
}

/* ============================================================
     FOOTER
     ============================================================ */
.map-embed {
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.1);
}

.footer {
  /* background: var(--ink);
  color: rgba(255, 255, 255, 0.78); */
  /* background: linear-gradient(180deg, #0a3a73 0%, #0b4a91 100%);
  color: #fff; */

  background: linear-gradient(135deg, #0d1342 0%, #11306f 45%, #1d4e9d 100%);
  color: #fff;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 56px 0;
}
.footer-cols h4 {
  color: #fff;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-cols a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
}
.footer-cols a:hover {
  color: var(--gold);
}
.footer-brand img {
  height: auto;
  width: 190px;
  max-width: 100%;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-brand .fb-company {
  color: #fff;
  font-weight: 600;
}
.footer-brand .fb-office {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.fb-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 25px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  /* background-color: red; */
  width: 500px;
}
.footer-brand .fb-office-logo {
  height: 36px !important;
  width: auto !important;
  display: block;
  margin: 0 0 6px;
  border-radius: 4px;
}

.footer-map-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  margin-top: 15px;
  transition: 0.35s ease;
  font-weight: 700;
}

.footer-map-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  background-color: var(--gold-dark);
  color: white;
  font-weight: 700;
}

.footer-map-btn a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-map-btn {
    margin-top: 15px !important;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom .fb-certs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom .fb-certs span {
  white-space: nowrap;
}

/* NEW FOOTER CSS */

.footer {
  background: linear-gradient(135deg, #0b3f82, #0a5fb4);
}

/* .footer-office {
  margin-top: 20px;
} */

.footer-office,
.fb-offices > div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 25px;
  transition: 0.35s ease;
}

.footer-office:hover,
.fb-offices > div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.office-title {
  color: #fff;
  font-size: 32px !important;
  margin-bottom: 18px;
}

.office-info {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  /* background-color: red; */
  text-align: left;
}

.office-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  line-height: 1.6;
  margin-left: -31px;
}

.office-info i {
  color: var(--gold);
  margin-top: 4px;
  width: 18px;
}

.footer-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 218px;
}

.footer-nav-links .products-nav {
  min-width: 200px;
}

.products-nav h4 {
  font-size: 28px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

@media (max-width: 768px) {
  .footer-nav-links {
    display: block;
    margin-top: 20px;
  }

  .products-nav {
    margin-top: 20px;
  }
}

/* ============================================================
     SCROLL REVEAL
     ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .slide {
    transition: none;
  }
}

/* ============================================================
     RESPONSIVE
     ============================================================ */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .header-cta .btn--gold {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-media img,
  .about-media .img-placeholder {
    height: 340px;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .about-vm {
    grid-template-columns: 1fr;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruspert-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ruspert-shape {
    display: none;
  }
  .ruspert-left {
    background: var(--gold);
    padding: 34px 26px;
  }
  .ruspert-right {
    padding: 32px 26px 4px;
  }
  .ruspert-lead {
    max-width: none;
  }
  .ind-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .qual-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .detail-inner {
    grid-template-columns: 1fr;
  }
  .subcat-list {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 56px 0;
  }
  .statbar .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .statbar .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .statbar .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .detail-panel {
    grid-template-columns: 1fr;
  }
  .detail-panel .dp-shot,
  .detail-panel .dp-shot .img-placeholder {
    height: 200px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .slide-panel {
    right: var(--pad);
    max-width: none;
    bottom: 56px;
    padding: 16px 18px;
  }
  .slide-panel .sp-name {
    font-size: 1.4rem;
  }
  .car-btn {
    width: 42px;
    height: 42px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .utility .iso {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .utility .wrap {
    justify-content: center;
    gap: 14px;
  }
  .fb-offices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --pad: 16px;
  }
  .statbar .wrap {
    grid-template-columns: 1fr;
  }
  .statbar .stat {
    border-right: none !important;
  }
  .ind-row,
  .qual-row,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .brand .brand-sub {
    display: none;
  }
}

/* =====================================
   Mobile Footer Center Alignment
===================================== */

@media (max-width: 768px) {
  /* Center Footer Logo */

  .footer-logo,
  .footer-brand img {
    display: block;
    margin: 0 auto 20px;
  }

  /* Center Brand Section */

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Center Company Description */

  .footer-brand p {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer {
    text-align: center;
  }

  .footer .wrap,
  .footer-cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .fb-offices,
  .footer-office {
    width: 100%;
    text-align: center;
  }

  .fb-office-logo {
    background: red;
  }

  .fb-company {
    text-align: center;
  }

  .office-info {
    padding: 0;
    margin: 18px 0;
    list-style: none;
  }

  .office-info li {
    justify-content: center;
    text-align: center;
  }

  .footer a {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .fb-certs {
    justify-content: center;
    flex-wrap: wrap;
  }

  .fb-office {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .fb-office-logo {
    display: block;
    margin: 0 auto;
    width: 140px; /* Adjust if needed */
    height: auto;
  }
}

/* ============================== */

/* ======================================
   MOBILE FOOTER
====================================== */
