:root {
  --mk-navy: #08213f;
  --mk-navy-2: #0d315d;
  --mk-ink: #102033;
  --mk-muted: #69778a;
  --mk-orange: #f47b20;
  --mk-orange-2: #ffad4d;
  --mk-teal: #1aa6a6;
  --mk-sky: #eaf4ff;
  --mk-gray: #f5f7fa;
  --mk-line: #dde5ee;
  --mk-white: #ffffff;
  --mk-dark: #061728;
  --mk-radius: 8px;
  --mk-shadow: 0 24px 70px rgba(8, 33, 63, 0.12);
  --mk-shadow-soft: 0 18px 45px rgba(8, 33, 63, 0.08);
  --mk-font: "Inter", "Poppins", Arial, sans-serif;
  --mk-display: "Montserrat", "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--mk-font);
  color: var(--mk-ink);
  background: var(--mk-white);
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--mk-muted);
}

section {
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 72px 0;
}

.section-muted {
  background: var(--mk-gray);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--mk-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--mk-orange);
}

.section-title {
  margin: 0;
  font-family: var(--mk-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--mk-ink);
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  --bs-btn-border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  font-weight: 800;
  border-width: 1px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--mk-orange), #f05d23);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #fff;
  background: linear-gradient(135deg, #ff8e32, #ef5420);
  box-shadow: 0 18px 36px rgba(244, 123, 32, 0.36);
}

.btn-outline-light,
.btn-outline-dark {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  border-color: rgba(8, 33, 63, 0.22);
  color: var(--mk-navy);
  background: #fff;
}

.icon-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--mk-orange);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1040;
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled,
.site-header.header-solid {
  color: var(--mk-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(8, 33, 63, 0.1);
  backdrop-filter: blur(16px);
}

.top-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.site-header.scrolled .top-strip,
.site-header.header-solid .top-strip {
  border-bottom-color: rgba(8, 33, 63, 0.08);
}

.top-strip .container {
  min-height: 38px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  opacity: 0.88;
}

.top-link:hover {
  color: var(--mk-orange);
  opacity: 1;
}

.custom-navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-mark {
  width: 132px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--mk-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: transparent;
  background:
    #fff
    url("assets/mk-logo-1.png") center/contain no-repeat;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.brand-text strong {
  display: block;
  font-family: var(--mk-display);
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.72;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-link-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 26px 13px;
  font-size: 0.94rem;
  font-weight: 800;
  color: inherit;
  opacity: 0.9;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--mk-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--mk-orange);
  opacity: 1;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 112px;
  left: 50%;
  width: min(1060px, calc(100vw - 32px));
  max-height: calc(100vh - 132px);
  overflow-y: auto;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--mk-ink);
  box-shadow: var(--mk-shadow);
  transition: all 0.25s ease;
  backdrop-filter: blur(18px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 340px repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(76px, auto);
  align-items: stretch;
  gap: 10px;
}

.mega-feature {
  grid-row: 1 / span 4;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 33, 63, 0.9), rgba(13, 49, 93, 0.82)),
    url("assets/own-wire-harness-hero.svg") center/cover;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #fff;
}

.mega-item:hover {
  border-color: rgba(244, 123, 32, 0.2);
  background: #fff8f1;
}

.mega-item i,
.mega-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--mk-orange);
}

.mega-item strong {
  display: block;
  margin-bottom: 2px;
}

.mega-item span {
  display: block;
  color: var(--mk-muted);
  font-size: 0.88rem;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header.scrolled .icon-btn,
.site-header.header-solid .icon-btn {
  color: var(--mk-navy);
  border-color: rgba(8, 33, 63, 0.14);
  background: rgba(8, 33, 63, 0.04);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .nav-toggle,
.site-header.header-solid .nav-toggle {
  border-color: rgba(8, 33, 63, 0.12);
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100vh;
  padding: 24px;
  color: var(--mk-ink);
  background: #fff;
  box-shadow: -24px 0 70px rgba(8, 33, 63, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.mobile-panel.open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a,
.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--mk-line);
  color: var(--mk-ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.mobile-submenu {
  display: none;
  padding: 8px 0 12px 18px;
}

.mobile-submenu.open {
  display: grid;
  gap: 8px;
}

.mobile-submenu a {
  color: var(--mk-muted);
  font-weight: 700;
  border-bottom: 0;
  padding: 8px 0;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 170px 0 92px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(5, 22, 40, 0.9) 0%, rgba(8, 33, 63, 0.82) 44%, rgba(244, 123, 32, 0.52) 100%),
    var(--hero-image) center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -28vw;
  width: 54vw;
  max-width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle, rgba(26, 166, 166, 0.25), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: var(--mk-display);
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
}

.hero p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 670px;
  margin-top: 44px;
}

.hero-metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metric strong {
  display: block;
  font-family: var(--mk-display);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: 370px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.brand-banner-section {
  color: #fff;
  background:
    linear-gradient(180deg, #061728, #08213f);
}

.brand-banner-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.brand-banner-head .section-title {
  color: #fff;
}

.brand-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-banner-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.brand-banner-card img {
  width: 100%;
  aspect-ratio: 1536 / 660;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.brand-banner-card:hover img {
  transform: scale(1.035);
}

.inner-hero {
  min-height: 58vh;
  padding-bottom: 72px;
}

.breadcrumb-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumb-row a {
  color: #fff;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--mk-shadow);
}

.experience-badge {
  position: absolute;
  right: 20px;
  bottom: 34px;
  width: 172px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-orange), #e84d1f);
  box-shadow: 0 18px 46px rgba(244, 123, 32, 0.35);
}

.experience-badge strong {
  display: block;
  font-family: var(--mk-display);
  font-size: 2.4rem;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--mk-ink);
  font-weight: 700;
}

.feature-list svg,
.feature-list i {
  color: var(--mk-teal);
  flex: 0 0 auto;
  margin-top: 4px;
}

.mini-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.people-work-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.people-work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 18px;
}

.people-work-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mk-dark);
  box-shadow: var(--mk-shadow-soft);
}

.people-work-card-large {
  min-height: 440px;
}

.people-work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.people-work-card:hover img {
  transform: scale(1.05);
  opacity: 0.82;
}

.people-work-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(0deg, rgba(6, 23, 40, 0.92), rgba(6, 23, 40, 0.18) 78%, transparent);
}

.people-work-overlay span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(244, 123, 32, 0.92);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.people-work-overlay h3 {
  margin: 0 0 8px;
  font-family: var(--mk-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.people-work-overlay p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mini-card .icon-wrap,
.service-card .icon-wrap,
.why-card .icon-wrap,
.contact-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-orange), var(--mk-teal));
}

.service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 123, 32, 0.4);
  box-shadow: var(--mk-shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--mk-orange), var(--mk-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-thumb {
  height: 218px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.06);
}

.service-body {
  padding: 26px;
}

.service-body h3,
.mini-card h3,
.why-card h3,
.industry-card h3,
.blog-card h3 {
  margin: 0 0 10px;
  font-family: var(--mk-display);
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--mk-ink);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--mk-orange);
  font-weight: 900;
}

.dark-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 23, 40, 0.96), rgba(8, 33, 63, 0.94)),
    url("assets/own-industrial-wiring.svg") center/cover fixed;
}

.dark-section .section-title,
.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.glass-card,
.why-card {
  height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.why-card p,
.glass-card p {
  color: rgba(255, 255, 255, 0.72);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.counter-box {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.counter-box strong {
  display: block;
  font-family: var(--mk-display);
  font-size: 2.35rem;
  line-height: 1;
  color: #fff;
}

.counter-box span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.industry-slider {
  overflow: hidden;
  margin-top: 44px;
}

.industry-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.industry-card {
  position: relative;
  flex: 0 0 280px;
  min-height: 235px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--mk-shadow-soft);
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
  opacity: 0.5;
}

.industry-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(6, 23, 40, 0.9), transparent);
}

.industry-card h3 {
  color: #fff;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
  margin-top: 44px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--mk-orange), var(--mk-teal));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
  grid-row: 1;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--mk-orange);
  box-shadow: 0 0 0 10px #fff;
  transform: translateX(-50%);
  z-index: 1;
  font-weight: 900;
}

.timeline-content {
  padding: 28px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.testimonial-shell {
  position: relative;
  margin-top: 44px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.review-quote-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--mk-orange), var(--mk-teal));
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.22);
}

.review-quote-icon i {
  width: 30px;
  height: 30px;
}

.testimonial-card small,
.review-card-static small {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #15803d;
  background: #eaf8ef;
  font-size: 0.76rem;
  font-weight: 900;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card-static {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.review-card-static h3 {
  margin: 14px 0 2px;
  font-family: var(--mk-display);
  font-size: 1.12rem;
  font-weight: 900;
}

.review-card-static span {
  display: block;
  color: var(--mk-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid #d6eaff;
  border-radius: 8px;
  color: var(--mk-navy);
  background: var(--mk-sky);
  font-weight: 800;
}

.review-note i {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--mk-orange);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #f7b500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  color: var(--mk-navy);
  background: #fff;
  transition: all 0.25s ease;
}

.slider-btn:hover {
  color: #fff;
  background: var(--mk-orange);
  border-color: var(--mk-orange);
}

.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 8px;
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--mk-line) !important;
  border-radius: 8px !important;
  box-shadow: var(--mk-shadow-soft);
}

.accordion-button {
  min-height: 68px;
  padding: 18px 22px;
  font-weight: 900;
  color: var(--mk-ink);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--mk-orange);
  background: #fff8f1;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 123, 32, 0.16);
}

.cta-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 33, 63, 0.94), rgba(13, 49, 93, 0.78)),
    url("assets/own-bulk-supply.svg") center/cover;
}

.lead-form {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow);
}

.lead-form h3 {
  margin-bottom: 18px;
  color: var(--mk-ink);
  font-weight: 900;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid var(--mk-line);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--mk-orange);
  box-shadow: 0 0 0 0.2rem rgba(244, 123, 32, 0.16);
}

textarea.form-control {
  min-height: 126px;
}

.form-status {
  display: none;
  margin-top: 12px;
  color: var(--mk-teal);
  font-weight: 800;
}

.blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.blog-thumb {
  height: 226px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-body {
  padding: 24px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--mk-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer {
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 20% 10%, rgba(244, 123, 32, 0.18), transparent 24%),
    linear-gradient(145deg, #061728, #08213f 62%, #051221);
}

.footer-top {
  padding: 78px 0 52px;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-weight: 900;
}

.footer .brand-mark {
  width: 160px;
  height: 74px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-contact-list svg,
.footer-contact-list i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--mk-orange);
}

.footer-contact-list a:hover {
  color: var(--mk-orange);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: var(--mk-orange);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.newsletter .form-control {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background: var(--mk-orange);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 22px;
  z-index: 1030;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 35px rgba(8, 33, 63, 0.2);
}

.floating-whatsapp {
  bottom: 92px;
  background: #22c55e;
}

.back-to-top {
  bottom: 26px;
  background: var(--mk-orange);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-contact-bar {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1035;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  box-shadow: 0 -12px 30px rgba(8, 33, 63, 0.12);
}

.mobile-contact-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  color: #fff;
  font-weight: 900;
}

.mobile-contact-bar a:first-child {
  background: var(--mk-navy);
}

.mobile-contact-bar a:last-child {
  background: #22c55e;
}

.contact-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.map-frame {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--mk-shadow-soft);
}

.job-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--mk-navy);
  background: var(--mk-sky);
  font-size: 0.82rem;
  font-weight: 800;
}

.sidebar-card {
  padding: 26px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mk-shadow-soft);
}

.sidebar-card + .sidebar-card {
  margin-top: 24px;
}

.category-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--mk-line);
  color: var(--mk-ink);
  font-weight: 800;
}

.article-body {
  font-size: 1.06rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 38px;
  font-weight: 900;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid var(--mk-orange);
  border-radius: 8px;
  background: #fff8f1;
  color: var(--mk-ink);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--mk-shadow-soft);
}

.spec-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mk-line);
}

.spec-list strong {
  color: var(--mk-ink);
}
