:root {
  --mm-navy: #031a3a;
  --mm-navy-2: #072856;
  --mm-blue: #0756a2;
  --mm-blue-bright: #0b6fc8;
  --mm-amber: #ff8a00;
  --mm-amber-dark: #e36f00;
  --mm-ink: #1a2433;
  --mm-muted: #617085;
  --mm-line: #dce4ee;
  --mm-soft: #f3f7fb;
  --mm-white: #ffffff;
  --mm-radius: 16px;
  --mm-shadow: 0 20px 50px rgba(3, 26, 58, 0.11);
}

html { scroll-behavior: smooth; }

body {
  color: var(--mm-ink);
  background: var(--mm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
}

a { color: var(--mm-blue); text-decoration: none; }
a:hover { color: var(--mm-amber-dark); }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--mm-white);
  background: var(--mm-navy);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; color: var(--mm-white); }

.topbar {
  background: var(--mm-navy);
  color: #d6e4f6;
  font-size: .84rem;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #ffb451; }
.topbar .location { color: #b9cbe2; }

.navbar {
  min-height: 82px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(3, 26, 58, .08);
  box-shadow: 0 8px 30px rgba(3, 26, 58, .05);
}
.navbar-brand img { width: 238px; height: auto; }
.navbar .nav-link {
  color: var(--mm-navy);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: .75rem .7rem !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--mm-amber-dark); }
.navbar-toggler { border: 1px solid var(--mm-line); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(7, 86, 162, .18); }

.btn {
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: .76rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-mm-primary {
  color: #17100a;
  background: var(--mm-amber);
  border: 1px solid var(--mm-amber);
  box-shadow: 0 10px 24px rgba(255, 138, 0, .22);
}
.btn-mm-primary:hover,
.btn-mm-primary:focus { color: #17100a; background: #ff9c22; border-color: #ff9c22; }
.btn-mm-outline {
  color: var(--mm-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .62);
}
.btn-mm-outline:hover { color: var(--mm-navy); background: var(--mm-white); }
.btn-mm-blue { color: #fff; background: var(--mm-blue); border: 1px solid var(--mm-blue); }
.btn-mm-blue:hover { color: #fff; background: var(--mm-navy-2); border-color: var(--mm-navy-2); }

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--mm-navy) url("../images/hero-industrial.webp") center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 16, 38, .97) 0%, rgba(3, 26, 58, .88) 35%, rgba(3, 26, 58, .45) 63%, rgba(3, 26, 58, .1) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -190px;
  width: 660px;
  height: 260px;
  border: 2px solid rgba(255, 138, 0, .38);
  border-radius: 50%;
  transform: rotate(-7deg);
}
.hero .container { position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--mm-amber);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 750px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 5.7vw, 5.15rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.045em;
}
.hero .lead { max-width: 670px; color: #dce8f7; font-size: clamp(1.05rem, 1.6vw, 1.27rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .17);
  color: #edf5ff;
  font-size: .92rem;
  font-weight: 700;
}
.hero-proof span::before { content: "✓"; margin-right: 8px; color: var(--mm-amber); }

.trust-strip { position: relative; z-index: 4; margin-top: -42px; }
.trust-panel {
  background: #fff;
  border: 1px solid rgba(3, 26, 58, .08);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  overflow: hidden;
}
.trust-item { padding: 1.35rem 1.5rem; }
.trust-item + .trust-item { border-left: 1px solid var(--mm-line); }
.trust-kicker { color: var(--mm-blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.trust-title { color: var(--mm-navy); font-size: 1.05rem; font-weight: 850; }

.section { padding: 92px 0; }
.section-sm { padding: 68px 0; }
.section-soft { background: var(--mm-soft); }
.section-dark { color: #fff; background: var(--mm-navy); }
.section-title { max-width: 780px; margin-bottom: 3rem; }
.section-title.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-title h2,
.display-title {
  color: var(--mm-navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.035em;
}
.section-dark .section-title h2 { color: #fff; }
.section-title p { color: var(--mm-muted); font-size: 1.08rem; }
.section-dark .section-title p { color: #b8cae0; }

.product-card {
  height: 100%;
  padding: 1.7rem;
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-7px); border-color: rgba(7, 86, 162, .4); box-shadow: var(--mm-shadow); }
.product-code {
  display: inline-grid;
  place-items: center;
  min-width: 66px;
  height: 52px;
  margin-bottom: 1.3rem;
  padding: 0 .8rem;
  color: var(--mm-blue);
  background: #eaf3fc;
  border-left: 4px solid var(--mm-amber);
  font-size: .9rem;
  font-weight: 900;
}
.product-card h3 { color: var(--mm-navy); font-size: 1.3rem; font-weight: 850; }
.product-card p { color: var(--mm-muted); }
.arrow-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 850; }
.arrow-link::after { content: "→"; transition: transform .2s ease; }
.arrow-link:hover::after { transform: translateX(5px); }

.image-frame { position: relative; }
.image-frame img { width: 100%; border-radius: var(--mm-radius); box-shadow: var(--mm-shadow); object-fit: cover; }
.image-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 98px;
  height: 98px;
  border-top: 5px solid var(--mm-amber);
  border-right: 5px solid var(--mm-amber);
  border-radius: 0 14px 0 0;
  z-index: -1;
}
.location-card {
  position: absolute;
  right: -24px;
  bottom: 24px;
  max-width: 250px;
  padding: 1rem 1.15rem;
  color: #fff;
  background: var(--mm-navy);
  border-left: 5px solid var(--mm-amber);
  border-radius: 8px;
  box-shadow: var(--mm-shadow);
}
.location-card strong { display: block; color: var(--mm-amber); }

.check-list { display: grid; gap: .8rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  color: #fff;
  background: var(--mm-blue);
  border-radius: 50%;
  font-size: .74rem;
  font-weight: 900;
}

.application-card {
  height: 100%;
  padding: 1.6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
}
.application-no { color: var(--mm-amber); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.application-card h3 { margin: .9rem 0 .7rem; font-size: 1.2rem; font-weight: 850; }
.application-card p { margin: 0; color: #b8cae0; }

.enquiry-band {
  position: relative;
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--mm-blue) 0%, var(--mm-navy) 72%);
  overflow: hidden;
}
.enquiry-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 370px;
  height: 260px;
  border: 45px solid rgba(255, 138, 0, .12);
  border-radius: 50%;
}
.enquiry-band .container { position: relative; z-index: 2; }
.enquiry-band h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.03em; }
.enquiry-band p { margin: .7rem 0 0; color: #d2e2f5; }

.page-hero {
  position: relative;
  padding: 110px 0 96px;
  color: #fff;
  background: linear-gradient(105deg, rgba(3, 26, 58, .98), rgba(7, 58, 116, .9)), url("../images/hero-industrial.webp") center/cover;
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; right: 4%; bottom: -110px; width: 360px; height: 220px; border: 34px solid rgba(255, 138, 0, .17); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 5.2vw, 4.7rem); line-height: 1.04; font-weight: 900; letter-spacing: -.04em; }
.page-hero p { max-width: 760px; margin-top: 1rem; color: #d5e3f4; font-size: 1.12rem; }
.breadcrumbs { margin-bottom: 1.4rem; color: #a9c4e3; font-size: .85rem; font-weight: 750; }
.breadcrumbs a { color: #fff; }
.breadcrumbs span { margin: 0 .55rem; color: var(--mm-amber); }

.content-card,
.form-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  box-shadow: 0 12px 40px rgba(3, 26, 58, .08);
}
.content-card { padding: clamp(1.4rem, 4vw, 2.5rem); }
.form-card { padding: clamp(1.4rem, 4vw, 2rem); }
.contact-card { height: 100%; padding: 1.5rem; }
.contact-card h3 { color: var(--mm-navy); font-size: 1.15rem; font-weight: 850; }
.contact-card p { color: var(--mm-muted); }
.contact-card a { font-weight: 800; }

.detail-panel {
  padding: 1.4rem;
  background: var(--mm-soft);
  border-left: 5px solid var(--mm-amber);
  border-radius: 0 10px 10px 0;
}
.detail-panel h2 { color: var(--mm-navy); font-size: 1.45rem; font-weight: 850; }
.spec-note { color: var(--mm-muted); font-size: .91rem; }

.form-label { color: var(--mm-navy); font-size: .87rem; font-weight: 800; }
.form-control,
.form-select {
  min-height: 50px;
  border-color: #cfd9e5;
  border-radius: 7px;
  box-shadow: none !important;
}
textarea.form-control { min-height: 120px; }
.form-control:focus,
.form-select:focus { border-color: var(--mm-blue); }
.form-status { display: none; margin-top: 1rem; padding: .8rem 1rem; background: #e9f7ee; border-left: 4px solid #1d8c4b; border-radius: 5px; color: #155e34; font-weight: 700; }

.map-frame { min-height: 430px; border: 0; border-radius: var(--mm-radius); box-shadow: var(--mm-shadow); }

.footer { padding: 76px 0 100px; color: #afc2da; background: #02142e; }
.footer-logo { width: 230px; padding: 10px; background: #fff; border-radius: 8px; }
.footer h2 { color: #fff; font-size: 1rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.footer a { color: #d7e5f5; }
.footer a:hover { color: var(--mm-amber); }
.footer-links { display: grid; gap: .48rem; padding: 0; list-style: none; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .86rem; }
.footer-credit { width: 100%; padding-top: .55rem; text-align: center; }
.footer-credit a { color: var(--mm-amber); font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 17px;
  color: #fff;
  background: #168c47;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(11, 93, 50, .27);
  font-size: .9rem;
  font-weight: 850;
}
.whatsapp-float:hover { color: #fff; background: #11753a; }
.whatsapp-float::before { content: "WA"; display: grid; place-items: center; width: 29px; height: 29px; border: 2px solid #fff; border-radius: 50%; font-size: .67rem; }

.mobile-cta { display: none; }

.privacy-content h2 { margin-top: 2.2rem; color: var(--mm-navy); font-size: 1.5rem; font-weight: 850; }
.privacy-content h2:first-child { margin-top: 0; }

@media (max-width: 991.98px) {
  .navbar { min-height: 72px; }
  .navbar-brand img { width: 204px; }
  .navbar-collapse { margin-top: .8rem; padding: .8rem 0 1rem; border-top: 1px solid var(--mm-line); }
  .hero { min-height: 620px; }
  .hero::before { background: rgba(2, 20, 46, .84); }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--mm-line); }
  .section { padding: 74px 0; }
  .location-card { right: 12px; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: 64px; }
  .topbar .location { display: none; }
  .topbar .d-flex { justify-content: center !important; }
  .topbar .contact-email { display: none; }
  .navbar-brand img { width: 184px; }
  .hero { min-height: 650px; background-position: 62% center; }
  .hero h1 { font-size: 2.68rem; }
  .hero .lead { font-size: 1.04rem; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: .65rem; flex-direction: column; }
  .trust-strip { margin-top: -28px; }
  .section { padding: 62px 0; }
  .section-sm { padding: 52px 0; }
  .section-title { margin-bottom: 2rem; }
  .location-card { position: relative; right: auto; bottom: auto; max-width: none; margin: -12px 14px 0; }
  .image-frame::before { right: -7px; }
  .page-hero { padding: 82px 0 70px; }
  .enquiry-band { text-align: center; }
  .enquiry-band .btn { width: 100%; margin-top: .6rem; }
  .whatsapp-float { display: none; }
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 64px;
    background: #fff;
    border-top: 1px solid var(--mm-line);
    box-shadow: 0 -8px 28px rgba(3, 26, 58, .12);
  }
  .mobile-cta a { display: grid; place-items: center; color: var(--mm-navy); font-size: .8rem; font-weight: 850; }
  .mobile-cta a:nth-child(2) { color: #fff; background: #168c47; }
  .mobile-cta a:nth-child(3) { color: #1a1308; background: var(--mm-amber); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
