/* Premium Light B2B Industrial Theme - White & Slate Minimalist Aesthetic with Live Effects */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-primary-dark: #042044;
  --color-charcoal: #031733;
  --color-slate-800: #042044;
  --color-slate-700: #111827;
  --color-slate-600: #111827;
  --color-slate-500: #1f2937;
  --color-slate-400: #374151;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text-main: #111827;

  /* Industrial Green Accent */
  --color-amber: #C78D32;
  --color-amber-hover: #A87328;
  --color-amber-light: rgba(199, 141, 50, 0.12);
  --color-amber-border: rgba(199, 141, 50, 0.35);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 10px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 10px 20px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 30px -5px rgb(0 0 0 / 0.12);
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: #dce8f2;
  color: var(--color-slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LIVE EFFECT: SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade-in {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(199, 141, 50, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(199, 141, 50, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(199, 141, 50, 0);
  }
}

/* FLOATING WHATSAPP BUTTON WITH PULSE EFFECT */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1300;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

/* TOP HEADER BAR */
.top-bar {
  background-color: #042044;
  color: #cbd5e1;
  font-size: 0.78rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-pill.yellow {
  background: var(--color-amber-light);
  color: var(--color-amber);
  border-color: var(--color-amber-border);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-contact a {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-contact a:hover {
  color: var(--color-amber);
}

/* =============================================
   PREMIUM STICKY NAVIGATION
============================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e8ecf0;
  box-shadow: 0 2px 12px rgba(15, 83, 157, 0.07);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 24px rgba(15, 83, 157, 0.13);
  border-bottom-color: #d4dae2;
}

.main-header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* --- LOGO --- */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-amber);
  color: #042044;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #042044;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.logo-title span {
  color: var(--color-amber-hover);
}

.logo-tagline {
  font-size: 0.68rem;
  color: #111827;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- NAV MENU --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 78px;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #031733;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0 1.15rem;
  height: 100%;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--color-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(199, 141, 50, 0.7);
}

.nav-link:hover {
  color: #042044;
}

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

.nav-item.active .nav-link {
  color: #042044;
  font-weight: 700;
}

.nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.nav-link .fa-chevron-down {
  font-size: 0.6rem;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.nav-item.has-mega:hover .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

/* --- DROPDOWN MEGA MENU --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -180px;
  width: 860px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-top: 3px solid var(--color-amber);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 50px rgba(15, 83, 157, 0.14);
  padding: 1.75rem 2rem;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 1050;
}

.nav-item.has-mega:hover .mega-menu {
  display: grid;
  animation: megaFadeIn 0.2s ease-out forwards;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-column h4 {
  color: #042044;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-column h4 i {
  color: var(--color-amber-hover);
  width: 14px;
  text-align: center;
}

.mega-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-column ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 5px;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.mega-column ul a:hover {
  background: #eafaf3;
  color: var(--color-amber-hover);
  padding-left: 0.75rem;
}

.mega-column ul a i {
  width: 14px;
  font-size: 0.7rem;
  color: #111827;
  flex-shrink: 0;
}

.mega-column ul a:hover i {
  color: var(--color-amber-hover);
}

/* =============================================
   HEADER SEARCH & ACTIONS
============================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.search-box-header {
  position: relative;
  width: 210px;
}

.search-box-header input {
  width: 100%;
  background: #f4f6f8;
  border: 1.5px solid transparent;
  color: #042044;
  padding: 0.42rem 2rem 0.42rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
}

.search-box-header input::placeholder {
  color: #9ca3af;
}

.search-box-header input:focus {
  border-color: var(--color-amber);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(199, 141, 50, 0.2), 0 0 12px rgba(199, 141, 50, 0.25);
}

.search-box-header button {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 0.78rem;
  padding: 0;
  transition: color 0.2s ease;
}

.search-box-header input:focus+button,
.search-box-header button:hover {
  color: var(--color-amber-hover);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 83, 157, 0.12);
  max-height: 360px;
  overflow-y: auto;
  z-index: 1200;
  display: none;
}

.search-result-item {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #042044;
  font-size: 0.82rem;
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #eafaf3;
  color: var(--color-amber-hover);
}

/* Quote basket icon */
.quote-basket-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f4f6f8;
  border: 1.5px solid #e8ecf0;
  color: #374151;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-basket-badge:hover {
  border-color: var(--color-amber);
  background: #eafaf3;
}

.quote-basket-badge i {
  font-size: 0.95rem;
}

.quote-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-amber);
  color: #042044;
  font-size: 0.62rem;
  font-weight: 900;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Primary CTA Button */
.btn-rfq-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-amber);
  color: #042044;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.3rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
  text-transform: none;
  transition: background 0.2s ease;
}

.btn-rfq-primary:hover {
  background: var(--color-amber-hover);
  color: #ffffff;
}

.quote-basket-badge {
  position: relative;
  background: #f8fafc;
  color: #042044;
  padding: 0.55rem 0.85rem;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-basket-badge:hover {
  border-color: var(--color-amber);
  color: var(--color-amber-hover);
}

.quote-count {
  background: var(--color-amber);
  color: #042044;
  font-size: 0.7rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   HERO SHOWCASE SECTION — CENTERED REDESIGN
============================================= */
.hero-showcase-section {
  background: #dce8f2;
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.hero-showcase-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-showcase-header {
  max-width: 960px;
  margin: 0 auto 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-showcase-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #042044;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin: 0 0 0.85rem;
}

.hero-showcase-title span {
  color: var(--color-amber-hover);
}

.hero-showcase-subtitle {
  font-size: 0.98rem;
  color: #111827;
  line-height: 1.65;
  margin: 0 0 1.35rem;
  max-width: 820px;
}

.hero-showcase-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  color: #042044;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.73rem 1.4rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(15, 83, 157, 0.04);
}

.btn-hero-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn-hero-whatsapp i {
  color: #25d366;
  font-size: 1.1rem;
}

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-amber-hover);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-slide-topic {
  text-align: center;
  font-size: 2.15rem;
  font-weight: 900;
  color: #042044;
  margin-top: 5px;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.hero-slide-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #111827;
  margin-top: -0.8rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-key-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.hero-benefit-icon {
  font-size: 1.4rem;
  color: var(--color-amber-hover);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-benefit-text {
  display: flex;
  flex-direction: column;
}

.hero-benefit-text strong {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.2;
}

.hero-benefit-text span {
  font-size: 0.85rem;
  color: #111827;
  line-height: 1.4;
}

.hero-benefit-divider {
  width: 1px;
  height: 35px;
  background-color: #cbd5e1;
}

@media (max-width: 991px) {
  .hero-key-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
    justify-items: center;
  }

  .hero-benefit-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-key-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}


.hero-slide-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 83, 157, 0.15);
  margin-bottom: 1.5rem;
}

.hero-slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
  transform: scale(1.02);
}

.hero-banner-slide.active .hero-slide-image-wrapper img {
  transform: scale(1);
}

/* Banner Frame & Slider using CSS Grid for natural height overlap */
.hero-banner-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-banner-slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.hero-banner-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-banner-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Arrows */
.hero-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 83, 157, 0.65);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.hero-banner-arrow:hover {
  background: var(--color-amber);
  color: #042044;
  border-color: var(--color-amber);
  transform: translateY(-50%) scale(1.1);
}

.hero-banner-arrow-prev {
  left: -1rem;
}

.hero-banner-arrow-next {
  right: -1rem;
}

/* Dots */
.hero-banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  background: transparent;
  padding: 0;
  border: none;
  margin-top: 1.5rem;
}

.hero-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-banner-dot.active {
  background: var(--color-amber);
  width: 26px;
  border-radius: 6px;
}

/* 5 Box Type Layout in One Single Row */
.hero-slide-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@keyframes fadeInBadges {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-detail-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  background: #ffffff;
  color: #031733;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.85rem 0.6rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  box-shadow: none;
  transition: all 0.2s ease;
  line-height: 1.35;
  box-sizing: border-box;
  min-height: 68px;
}

.hero-detail-badge i {
  color: var(--color-amber-hover);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-detail-badge:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #031733;
  box-shadow: none;
  transform: none;
}

@media (max-width: 991px) {
  .hero-showcase-title {
    font-size: 2.1rem;
  }

  .hero-category-tab {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  .hero-banner-slider {
    aspect-ratio: 16 / 10;
  }

  .hero-slide-badges {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
  }

  .hero-detail-badge {
    font-size: 0.72rem;
    padding: 0.65rem 0.35rem;
    min-height: 60px;
  }

  .hero-detail-badge i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-slide-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .hero-detail-badge:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hero-showcase-section {
    padding: 2rem 0 1.5rem;
  }

  .hero-showcase-title {
    font-size: 1.65rem;
  }

  .hero-showcase-subtitle {
    font-size: 0.9rem;
  }

  .hero-banner-frame {
    border-radius: 16px;
  }

  .hero-banner-slider {
    aspect-ratio: 4 / 3;
  }

  .hero-banner-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .hero-category-nav {
    gap: 0.4rem;
  }

  .hero-category-tab {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-slide-badges {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-detail-badge:last-child {
    grid-column: span 1;
  }
}

/* =============================================
   HERO V2 (LEGACY COMPATIBILITY)
============================================= */
.hero-v2 {
  background: #dce8f2;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .hero-v2 {
    padding-top: 2.25rem;
    padding-bottom: 1rem;
  }
}

.hero-v2-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 260px;
  gap: 0;
}

/* LEFT TEXT PANEL */
.hero-v2-text {
  padding: 0.5rem 2rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 2;
  position: relative;
}

.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.2px;
  margin: 0 0 0.75rem 0;
}

.hero-v2-eyebrow i {
  color: var(--color-amber-hover);
  font-size: 0.85rem;
}

.hero-v2-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #042044;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 0.65rem;
}

.hero-v2-title span {
  color: #042044;
}

.hero-v2-subtitle {
  font-size: 0.85rem;
  color: #4a5f74;
  line-height: 1.6;
  margin: 0 0 1.1rem;
  max-width: 380px;
}

/* CTA BUTTON */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-amber);
  color: #042044;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #A87328;
  color: #042044;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #042044;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.73rem 1.6rem;
  border-radius: 6px;
  border: 2px solid #042044;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: #042044;
  color: #ffffff;
}

/* RIGHT MACHINE IMAGE PANEL */
.hero-v2-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 2rem;
  height: 100%;
  overflow: visible;
}

.hero-machine-img {
  width: 82%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  mix-blend-mode: multiply;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

/* Hero image crossfade slider */
.hero-img-slider {
  display: grid;
  width: 100%;
  transform: translateY(0);
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero-slide--active {
  opacity: 1;
}


@media (max-width: 960px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 0;
  }

  .hero-v2-text {
    padding: 0 0 2rem;
  }

  .hero-v2-title {
    font-size: 2rem;
  }

  .hero-v2-image {
    justify-content: center;
  }

  .hero-machine-img {
    width: 90%;
    max-width: 360px;
  }
}



/* Keep old classes for backward compat */
.btn-secondary-outline {
  background: #ffffff;
  color: #042044;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary-outline:hover {
  background: #f8fafc;
  border-color: var(--color-amber);
}



/* ADVANCED PART SEARCH PANEL */
.search-panel-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 100;
  margin-bottom: 4rem;
}

.search-panel-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border-top: 4px solid var(--color-amber);
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.search-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.search-panel-title h3 {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #042044;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 120px;
  gap: 1rem;
}

.form-group-input {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-input label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-slate-600);
  letter-spacing: 0.5px;
}

.form-control-custom {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #042044;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control-custom:focus {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(199, 141, 50, 0.2), 0 0 12px rgba(199, 141, 50, 0.22);
}

.popular-search-pills {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--color-slate-600);
}

.pill-item {
  background: #f1f5f9;
  color: #111827;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}

.pill-item:hover {
  background: var(--color-amber-light);
  color: var(--color-amber-hover);
}

/* SECTION COMMONS - UNIFIED PAGE COLOR */
.section-wrapper {
  padding: 4rem 0;
  background-color: #dce8f2;
}

.section-wrapper.dark {
  background-color: #dce8f2;
  color: #042044;
}

.section-wrapper.light-grey {
  background-color: #dce8f2;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-badge {
  color: var(--color-amber-hover);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  color: #042044;
}

.section-wrapper.dark .section-title {
  color: #ffffff;
}

.section-desc {
  color: #111827;
  font-size: 0.975rem;
}

.section-wrapper.dark .section-desc {
  color: #cbd5e1;
}

/* CATEGORY CARDS GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.category-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 83, 157, 0.08), 0 0 16px rgba(199, 141, 50, 0.2);
  border-color: rgba(199, 141, 50, 0.6);
}

.category-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #042044;
}

.category-card-desc {
  font-size: 0.825rem;
  color: #111827;
  margin-bottom: 1.25rem;
  flex: 1;
}

.category-link {
  color: var(--color-amber-hover);
  font-weight: 700;
  font-size: 0.825rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* LIVE FILTER TABS */
.live-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.live-filter-tab {
  background: #ffffff;
  color: #111827;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.live-filter-tab:hover,
.live-filter-tab.active {
  background: var(--color-amber);
  color: #042044;
  border-color: var(--color-amber);
  box-shadow: 0 4px 14px rgba(199, 141, 50, 0.35);
}

/* BACKHOE HOTSPOT SECTION */
.backhoe-hotspot-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hotspot-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
}

.hotspot-machine-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.hotspot-pin {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--color-amber);
  color: #042044;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(199, 141, 50, 0.8);
  animation: pulseRing 2.5s infinite;
  z-index: 10;
  transition: transform 0.2s ease;
}

.hotspot-pin:hover {
  transform: scale(1.25);
  box-shadow: 0 0 20px rgba(199, 141, 50, 1);
}

.hotspot-tooltip {
  position: absolute;
  background: #ffffff;
  color: #042044;
  padding: 1rem;
  border-radius: 6px;
  width: 220px;
  box-shadow: var(--shadow-xl), 0 0 14px rgba(199, 141, 50, 0.25);
  border: 2px solid var(--color-amber);
  display: none;
  z-index: 20;
  font-size: 0.8rem;
}

.hotspot-pin:hover .hotspot-tooltip {
  display: block;
}

/* PRODUCT CARD */
.product-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(199, 141, 50, 0.6);
  box-shadow: 0 12px 28px rgba(15, 83, 157, 0.08), 0 0 16px rgba(199, 141, 50, 0.2);
  transform: translateY(-4px);
}

.product-thumb {
  height: 170px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #042044;
  color: var(--color-amber);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-part-no {
  font-family: monospace;
  background: #f1f5f9;
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: #042044;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-meta {
  font-size: 0.8rem;
  color: #111827;
  margin-bottom: 0.85rem;
}

.product-price-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-amber-hover);
  margin-bottom: 0.85rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-sm-quote {
  background: var(--color-amber);
  color: #042044;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-sm-quote:hover {
  background: var(--color-amber-hover);
  color: #ffffff;
}

.btn-sm-details {
  background: #f1f5f9;
  color: #111827;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
}

/* CROSS REFERENCE BOX */
.cross-ref-box {
  background: #ffffff;
  border: 2px solid var(--color-amber);
  border-radius: 10px;
  padding: 2.5rem;
  color: #042044;
  box-shadow: var(--shadow-md);
}

/* QUALITY PROCESS TIMELINE */
.quality-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.step-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 1.25rem;
  border-left: 4px solid var(--color-amber);
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-amber-hover);
}

/* SITE FOOTER */
.site-footer {
  background-color: #dce8f2;
  color: #111827;
  padding: 3.5rem 1.5rem 1.5rem;
  border-top: none;
}

.footer-boxed-wrapper {
  max-width: 1320px;
  margin: 1.5rem auto 0;
  background: linear-gradient(135deg, #042044 0%, #031733 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(15, 83, 157, 0.35);
  color: #cbd5e1;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0;
}

.footer-col h4::after {
  display: none;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

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

.footer-bottom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}


/* MOBILE BOTTOM STICKY BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--color-amber);
  z-index: 1200;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.4rem;
  gap: 0.4rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-bar a {
  text-align: center;
  color: #042044;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.mobile-sticky-bar a.call-btn {
  background: #f1f5f9;
}

.mobile-sticky-bar a.wa-btn {
  background: #e2e8f0;
}

.mobile-sticky-bar a.rfq-btn {
  background: var(--color-amber);
  color: #042044;
}

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

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    justify-content: center;
    text-align: center;
  }

  .nav-menu {
    display: none;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  .search-form-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CREATIVE DETAIL-TYPE COMPONENTS
============================================= */

/* Enhanced Product Card */
.product-card-enhanced {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #c8d7e6;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 83, 157, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-enhanced:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 141, 50, 0.6);
  box-shadow: 0 12px 28px rgba(15, 83, 157, 0.08), 0 0 16px rgba(199, 141, 50, 0.2);
}

.product-enhanced-thumb {
  height: 180px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.product-enhanced-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #111827;
  background: #f1f5f9;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.stock-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 83, 157, 0.85);
  backdrop-filter: blur(4px);
  color: #34d399;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.stock-pill i {
  font-size: 0.5rem;
}

/* Creative Value Matrix Layout */
.creative-value-matrix {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 2rem;
  align-items: stretch;
}

.creative-value-spotlight {
  background: linear-gradient(135deg, #042044 0%, #031733 100%);
  color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 12px 30px rgba(15, 83, 157, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.creative-value-spotlight::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(199, 141, 50, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.creative-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.creative-value-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #c8d7e6;
  box-shadow: 0 4px 12px rgba(15, 83, 157, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.creative-value-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-amber-hover);
  box-shadow: 0 8px 22px rgba(15, 83, 157, 0.08), 0 0 12px rgba(199, 141, 50, 0.15);
}

.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.value-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(199, 141, 50, 0.12);
  color: var(--color-amber-hover);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.value-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #111827;
  background: #f1f5f9;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Creative Industry Rows */
.creative-industry-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.creative-industry-row {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #c8d7e6;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 12px rgba(15, 83, 157, 0.04);
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 2rem;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.creative-industry-row:hover {
  transform: translateY(-2px);
  border-color: var(--color-amber-hover);
  box-shadow: 0 8px 24px rgba(15, 83, 157, 0.08), 0 0 14px rgba(199, 141, 50, 0.15);
}

.industry-meta-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.industry-icon-box {
  width: 52px;
  height: 52px;
  background: #042044;
  color: var(--color-amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.industry-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.industry-spec-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111827;
  background: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
}

@media (max-width: 960px) {
  .creative-value-matrix {
    grid-template-columns: 1fr;
  }

  .creative-value-grid {
    grid-template-columns: 1fr;
  }

  .creative-industry-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =============================================
   GLOBAL & NATIONAL EXPORT NETWORK SECTION
============================================= */
.export-network-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.export-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.export-map-wrapper {
  position: relative;
  overflow: hidden;
  background: #dce8f2;
}

.export-map-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.export-network-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.export-net-pill {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #042044;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.export-net-pill i {
  color: var(--color-amber-hover);
}

.export-detail-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #c8d7e6;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(15, 83, 157, 0.05);
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.export-detail-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-amber-hover);
  box-shadow: 0 8px 22px rgba(15, 83, 157, 0.08), 0 0 12px rgba(199, 141, 50, 0.15);
}

.export-detail-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .export-grid-layout {
    grid-template-columns: 1fr;
  }

  .export-network-badge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   FEATURE HIGHLIGHT CARDS (ASYMMETRIC BIG/SMALL)
============================================= */
.feature-cards-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

/* === BIG CARD (3 of 5 cols) - horizontal layout === */
.feature-highlight-card.card-big {
  grid-column: span 3;
  background: #ffffff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2rem;
  gap: 1.75rem;
  box-shadow: 0 1px 6px rgba(15, 83, 157, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.feature-highlight-card.card-big:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 141, 50, 0.45);
  box-shadow: 0 8px 28px rgba(15, 83, 157, 0.07), 0 0 14px rgba(199, 141, 50, 0.13);
}

/* Image on RIGHT for big card */
.feature-highlight-card.card-big.img-right {
  flex-direction: row-reverse;
}

.feature-highlight-card.card-big .feature-card-image {
  width: 200px;
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f8fc;
  border-radius: 10px;
  padding: 1.25rem;
  align-self: stretch;
}

.feature-highlight-card.card-big .feature-card-image img {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* === SMALL CARD (2 of 5 cols) - vertical layout === */
.feature-highlight-card.card-small {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid #e2eaf3;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  box-shadow: 0 1px 6px rgba(15, 83, 157, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.feature-highlight-card.card-small:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 141, 50, 0.45);
  box-shadow: 0 8px 28px rgba(15, 83, 157, 0.07), 0 0 14px rgba(199, 141, 50, 0.13);
}

.feature-highlight-card.card-small .feature-card-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.feature-highlight-card.card-small .feature-card-image img {
  width: 130px;
  height: 120px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* === SHARED TEXT STYLES === */
.feature-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-content h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #042044;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.feature-card-content p {
  font-size: 0.81rem;
  color: #111827;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}

.feature-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.feature-card-tag {
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--color-amber-hover);
  background: rgba(199, 141, 50, 0.08);
  border: 1px solid rgba(199, 141, 50, 0.28);
  padding: 0.18rem 0.5rem;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-highlight-card.card-big {
    grid-column: span 1;
    flex-direction: column;
  }

  .feature-highlight-card.card-big.img-right {
    flex-direction: column;
  }

  .feature-highlight-card.card-small {
    grid-column: span 1;
  }

  .feature-highlight-card.card-big .feature-card-image {
    width: 100%;
    min-width: unset;
    height: 170px;
    align-self: auto;
  }
}

/* SMOOTH HOVER ZOOM CARDS (NO SHADOW / NO GLOW) */
.zoom-service-card {
  box-shadow: none !important;
  transition: transform 0.25s ease;
}

.zoom-service-card:hover {
  box-shadow: none !important;
}

.zoom-service-card:hover .zoom-img {
  transform: scale(1.08);
}

/* REDUCED SECTION SPACING */
.section-wrapper {
  padding: 2rem 0;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE REDESIGN (DESKTOP REMAINS 100% UNTOUCHED)
   ========================================================================== */

/* --- Default Mobile Elements (Hidden on Desktop) --- */
.mobile-toggle-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #042044;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-toggle-btn:hover {
  background: var(--color-amber-light);
  border-color: var(--color-amber-border);
  color: var(--color-amber-hover);
}

.btn-rfq-header-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-amber);
  color: #042044;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-rfq-header-sm:hover {
  background: var(--color-amber-hover);
  color: #ffffff;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Navigation Drawer Overlay */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 83, 157, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(15, 83, 157, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.mobile-drawer-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #111827;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #e2e8f0;
  color: #042044;
}

.mobile-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-search-input {
  width: 100%;
  padding: 0.65rem 2.5rem 0.65rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
  background: #f8fafc;
  box-sizing: border-box;
}

.mobile-search-input:focus {
  border-color: var(--color-amber);
  background: #ffffff;
}

.mobile-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #111827;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #111827;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-list li a i {
  color: #111827;
  width: 20px;
  text-align: center;
}

.mobile-nav-list li.active a,
.mobile-nav-list li a:hover {
  background: var(--color-amber-light);
  color: #042044;
}

.mobile-nav-list li.active a i,
.mobile-nav-list li a:hover i {
  color: var(--color-amber-hover);
}

.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.drawer-contact-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111827;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem 0;
}

.drawer-phone-link,
.drawer-wa-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.drawer-phone-link {
  background: #f1f5f9;
  color: #042044;
}

.drawer-wa-link {
  background: rgba(37, 211, 102, 0.12);
  color: #16a34a;
}

/* Mobile Sticky Action Bar Styles */
.mobile-sticky-bar {
  display: none;
}

/* Table Overflow Responsive Helper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   MEDIA QUERIES (APPLIED ONLY ON MOBILE/TABLET VIEWPORTS)
   ========================================================================== */

/* Tablet & Mobile Screens (<= 991px) */
@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: inline-flex;
  }

  .main-header-container {
    height: 66px;
    padding: 0 1.25rem;
  }

  .custom-machinery-cta-box {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
    background: none;
  }

  .top-bar-container {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
  }

  .top-bar-contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Reduced Section Padding on Mobile */
  .section-wrapper {
    padding: 1.25rem 0 !important;
  }

  /* Hero Section Responsiveness */
  .hero-v2 {
    padding: 0 1rem 1.25rem !important;
  }

  .hero-v2-inner {
    flex-direction: column;
    grid-template-columns: 1fr !important;
    gap: 0.2rem !important;
    text-align: center;
  }

  .hero-v2-text {
    max-width: 100%;
    padding: 0 !important;
    margin-top: -0.25rem !important;
  }

  .hero-v2-eyebrow {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto 0.4rem !important;
    width: 100% !important;
  }

  .hero-v2-title {
    font-size: 2rem !important;
    line-height: 1.22;
  }

  .hero-v2-subtitle {
    font-size: 0.92rem !important;
    margin: 0 auto 1rem;
  }

  .hero-v2-text>div {
    justify-content: center;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-v2-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: auto;
  }

  .hero-img-slider {
    transform: none !important;
  }

  .hero-machine-img {
    max-height: 260px;
    object-fit: contain;
    padding-top: 0 !important;
    padding-bottom: 0.5rem !important;
  }

  /* Feature Cards Mobile Hover / Tap Reveal */
  /* Built for Importers Section & Side Box Mobile Redesign */
  .importers-trade-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    padding: 0 1rem !important;
  }

  .importers-info-block {
    text-align: center !important;
  }

  .importers-info-block .section-badge {
    display: inline-block !important;
    margin: 0 auto 0.5rem !important;
  }

  .importers-info-block .section-title {
    text-align: center !important;
  }

  .importers-info-block p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .importers-info-block>div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
  }

  .importers-info-block>div[style*="grid-template-columns"]>div {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    text-align: center !important;
  }

  .private-label-card {
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid #cbd5e1 !important;
    border-top: 3px solid var(--color-amber) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.25rem !important;
    box-shadow: 0 8px 20px rgba(15, 83, 157, 0.07) !important;
  }

  .private-label-card h4 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #042044 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.6rem !important;
  }

  .private-label-card p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin-bottom: 1rem !important;
  }

  .private-label-card a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    background: var(--color-amber-light) !important;
    color: var(--color-amber-hover) !important;
    border: 1px solid rgba(199, 141, 50, 0.3) !important;
    padding: 0.6rem 1.1rem !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .card-expand-icon {
    display: inline-block !important;
    transition: transform 0.3s ease;
  }

  .hover-reveal-card .card-detail-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0 !important;
  }

  .hover-reveal-card:hover .card-detail-text,
  .hover-reveal-card:active .card-detail-text,
  .hover-reveal-card.open .card-detail-text {
    max-height: 140px;
    opacity: 1;
    margin-top: 0.5rem !important;
  }

  .hover-reveal-card:hover .card-expand-icon,
  .hover-reveal-card:active .card-expand-icon,
  .hover-reveal-card.open .card-expand-icon {
    transform: rotate(180deg);
  }
}

.card-expand-icon {
  display: none;
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  .mobile-search-wrapper {
    display: none !important;
  }

  body {

    /* Offset for Mobile Sticky Bar */
    /* Statistics Section Mobile Responsiveness (Single Row Display) */
    .stats-section {
      padding: 1rem 0 !important;
    }

    .stats-grid-container {
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 0.25rem !important;
      padding: 0 0.4rem !important;
    }

    .counter-num {
      font-size: 1.15rem !important;
      line-height: 1.15 !important;
      margin: 0 !important;
      letter-spacing: -0.3px;
    }

    .card-expand-icon {
      display: none;
    }

    .stats-label {
      font-size: 0.65rem !important;
      line-height: 1.15 !important;
      margin-top: 0.15rem !important;
    }

    /* Show Sticky Action Bar on Mobile */
    .mobile-sticky-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #042044;
      z-index: 1200;
      align-items: center;
      justify-content: space-around;
      padding: 0.65rem 0.5rem;
      padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
      gap: 0.4rem;
    }

    .mobile-sticky-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      font-weight: 800;
      padding: 0.6rem 0.4rem;
      border-radius: 6px;
      text-decoration: none;
      white-space: nowrap;
      text-align: center;
    }

    .mobile-sticky-bar .call-btn {
      background: #031733;
      color: #f1f5f9;
      border: 1px solid #334155;
    }

    .mobile-sticky-bar .wa-btn {
      background: #25D366;
      color: #ffffff;
    }

    .mobile-sticky-bar .rfq-btn {
      background: var(--color-amber);
      color: #042044;
    }

    .whatsapp-float-btn {
      bottom: 80px;
      /* elevate floating whatsapp button so it doesn't overlap sticky bar */
      right: 18px;
      width: 50px;
      height: 50px;
      font-size: 26px;
    }

    /* Grid Layout Overrides for Mobile */
    [style*="grid-template-columns:repeat(3"],
    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns:repeat(4"],
    [style*="grid-template-columns: repeat(4"],
    [style*="grid-template-columns:repeat(5"],
    [style*="grid-template-columns: repeat(5"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns:1.15fr 0.85fr"],
    [style*="grid-template-columns: 1.15fr 0.85fr"] {
      grid-template-columns: 1fr !important;
    }

    /* Form Padding on Mobile */
    form[style*="padding:3rem"],
    form[style*="padding: 3rem"] {
      padding: 1.5rem 1.25rem !important;
    }

    .export-grid-layout,
    .creative-value-matrix,
    .creative-value-grid,
    .feature-cards-grid,
    .footer-container {
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
    }

    /* Creative Mobile Footer Redesign (< 768px) */
    .site-footer {
      padding: 1.5rem 0.75rem 2.5rem !important;
    }

    .footer-boxed-wrapper {
      padding: 1.5rem 1.1rem 1.25rem !important;
      margin: 0 auto !important;
      border-radius: 18px !important;
      box-shadow: 0 10px 25px rgba(15, 83, 157, 0.25) !important;
    }

    .footer-container {
      display: flex !important;
      flex-direction: column !important;
      gap: 1.5rem !important;
      padding-bottom: 1.25rem !important;
    }

    .footer-col-brand {
      text-align: center !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }

    .footer-col-brand .brand-logo {
      justify-content: center !important;
    }

    .footer-col-brand p {
      font-size: 0.78rem !important;
      text-align: center !important;
      color: #cbd5e1 !important;
      margin-bottom: 0.85rem !important;
    }

    .footer-social-links {
      justify-content: center !important;
      gap: 0.85rem !important;
    }

    /* 2-Column Mobile Links Layout */
    .footer-links-grid-mobile {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 1.25rem 0.75rem !important;
    }

    .footer-col-support {
      display: none !important;
    }

    .footer-col h4 {
      font-size: 0.82rem !important;
      color: var(--color-amber) !important;
      text-transform: uppercase !important;
      letter-spacing: 0.8px !important;
      margin-bottom: 0.65rem !important;
    }

    .footer-links {
      gap: 0.45rem !important;
    }

    .footer-links a {
      font-size: 0.78rem !important;
    }

    /* Sleek HQ Card for Mobile */
    .footer-col-hq {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 12px !important;
      padding: 1.1rem 1rem !important;
      text-align: center !important;
    }

    .footer-col-hq h4 {
      text-align: center !important;
      margin-bottom: 0.75rem !important;
    }

    .footer-col-hq p {
      font-size: 0.78rem !important;
      justify-content: center !important;
      text-align: center !important;
    }

    .footer-bottom {
      padding-top: 1rem !important;
      font-size: 0.72rem !important;
    }

    .footer-bottom-container {
      flex-direction: column !important;
      text-align: center !important;
      gap: 0.5rem !important;
    }

    /* Section Spacing & Headers */
    .section-header {
      text-align: center;
      padding: 0 1rem;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-size: 1.6rem !important;
    }

    .section-desc {
      font-size: 0.88rem !important;
    }

    /* RFQ Form & Tables */
    .rfq-container,
    .contact-container,
    .about-container {
      padding: 0 1rem;
    }

    /* Parts Hero Mobile Space Reduction & Centering */
    .parts-hero-section {
      padding: 0.85rem 0 1.5rem !important;
    }

    .parts-hero-text-col {
      margin-top: 0 !important;
      text-align: center !important;
    }

    .parts-hero-eyebrow {
      margin-bottom: 0.4rem !important;
      justify-content: center !important;
    }

    .parts-hero-title {
      font-size: 1.75rem !important;
      text-align: center !important;
    }

    .parts-hero-subtitle {
      text-align: center !important;
    }

    .parts-quick-shortcuts {
      justify-content: center !important;
    }

    .parts-search-card {
      flex-direction: column;
      padding: 0.75rem;
    }

    .parts-search-card button {
      width: 100%;
      justify-content: center;
    }

    /* Mobile Compact 2-Column Category Filter Grid (Show All) */
    .showcase-category-tabs {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 0.45rem 0.5rem !important;
      padding: 0.25rem 0 0.85rem !important;
      margin: 0 0 1.25rem 0 !important;
      border-bottom: 1px solid #cbd5e1 !important;
      list-style: none !important;
    }

    .showcase-tab-item {
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .showcase-tab-item:first-child {
      grid-column: span 2 !important;
    }

    .showcase-tab-link {
      width: 100% !important;
      box-sizing: border-box !important;
      justify-content: center !important;
      text-align: center !important;
      font-size: 0.72rem !important;
      font-weight: 800 !important;
      padding: 0.55rem 0.4rem !important;
      border-radius: 8px !important;
      border: 1px solid #cbd5e1 !important;
      background: #ffffff !important;
      color: #042044 !important;
      white-space: normal !important;
      display: flex !important;
      align-items: center !important;
      transition: all 0.2s ease !important;
      line-height: 1.25 !important;
      letter-spacing: 0.3px !important;
    }

    .showcase-tab-link.active {
      background: var(--color-amber-hover) !important;
      color: #ffffff !important;
      border-color: var(--color-amber-hover) !important;
      box-shadow: 0 4px 10px rgba(199, 141, 50, 0.2) !important;
    }

    .showcase-tab-link:hover {
      border-color: var(--color-amber-hover) !important;
    }
  }

  /* Small Phones (<= 480px) */
  @media (max-width: 480px) {
    .logo-title {
      font-size: 1.15rem !important;
    }

    .logo-tagline {
      font-size: 0.6rem !important;
    }

    .btn-rfq-header-sm span {
      display: none;
    }

    .hero-v2-title {
      font-size: 1.65rem !important;
    }

    .mobile-sticky-bar a {
      font-size: 0.72rem;
      padding: 0.55rem 0.25rem;
    }
  }
}

/* ==========================================================================
   3D CURVED CYLINDRICAL PROCESS CAROUSEL
   ========================================================================== */
.cylinder-carousel-stage {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  user-select: none;
}

.cylinder-carousel-ring {
  position: absolute;
  width: 220px;
  height: 165px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.cylinder-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 165px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  cursor: pointer;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  will-change: transform, opacity;
}

/* Dark Back Layer (Giving the 3D depth tab look from the reference image) */
.cylinder-card-back {
  position: absolute;
  top: 8px;
  right: -8px;
  bottom: -8px;
  left: 8px;
  background: #031733;
  border-radius: 18px;
  z-index: 1;
  opacity: 0.85;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.3s ease;
}

.cylinder-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 26px rgba(15, 83, 157, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cylinder-card.is-active .cylinder-card-content {
  border-color: var(--color-amber-hover);
  box-shadow: 0 16px 36px rgba(199, 141, 50, 0.16);
}

.cylinder-card .step-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-amber-hover);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 0.35rem;
}

.cylinder-card .step-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #042044;
  margin: 0 0 0.3rem;
  line-height: 1.25;
}

.cylinder-card .step-desc {
  font-size: 0.72rem;
  color: #111827;
  line-height: 1.35;
  margin: 0;
}

.cylinder-nav-btn:hover {
  background: var(--color-amber-hover) !important;
  color: #ffffff !important;
  border-color: var(--color-amber-hover) !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.cylinder-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.cylinder-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--color-amber-hover);
}

/* ==========================================================================
   3 CORE OFFERINGS: 3D CURVED CYLINDRICAL CAROUSEL ANIMATION
   ========================================================================== */
@media (min-width: 992px) {
  .offerings-deck-grid {
    position: relative;
    overflow: visible;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
  }

  .deck-card {
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.5s ease,
      box-shadow 0.4s ease,
      border-color 0.3s ease;
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }

  /* Center Card: Facing forward and elevated in 3D depth */
  .deck-card-center {
    position: relative !important;
    z-index: 10 !important;
    background: #ffffff !important;
    transform: translateZ(30px) rotateY(0deg) scale(1.02);
  }

  /* Collapsed State (Exit / Not In-View): Side cards curve and tuck deep behind center */
  .offerings-deck-section:not(.is-expanded) .deck-card-left {
    transform: translateX(calc(100% + 1.5rem)) translateZ(-140px) rotateY(38deg) scale(0.88);
    z-index: 1 !important;
    pointer-events: none;
    opacity: 0.35;
  }

  .offerings-deck-section:not(.is-expanded) .deck-card-right {
    transform: translateX(calc(-100% - 1.5rem)) translateZ(-140px) rotateY(-38deg) scale(0.88);
    z-index: 1 !important;
    pointer-events: none;
    opacity: 0.35;
  }

  /* Expanded State (In-View / Active): Side cards form the 3D curved carousel ring */
  .offerings-deck-section.is-expanded .deck-card-left {
    transform: translateX(0) translateZ(-20px) rotateY(16deg) scale(0.98);
    z-index: 4 !important;
    pointer-events: auto;
    opacity: 1;
  }

  .offerings-deck-section.is-expanded .deck-card-right {
    transform: translateX(0) translateZ(-20px) rotateY(-16deg) scale(0.98);
    z-index: 4 !important;
    pointer-events: auto;
    opacity: 1;
    transition-delay: 0.04s;
  }

  /* Interactive Hover: Card focuses and pulls forward in 3D space */
  .deck-card:hover {
    transform: translateZ(50px) rotateY(0deg) scale(1.03) !important;
    z-index: 20 !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 24px 50px rgba(15, 83, 157, 0.14) !important;
  }
}

/* ==========================================================================
   B2B TRADE SUPPORT & IMPORTERS SHOWCASE RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
  .importers-trade-showcase {
    grid-template-columns: 1fr !important;
    padding: 1.75rem 1.5rem !important;
    gap: 2rem !important;
  }

  .givingli-bento-grid {
    grid-template-columns: 1fr !important;
  }

  .bento-pastel-card {
    grid-column: span 1 !important;
    grid-row: auto !important;
    padding: 1.5rem 1.25rem !important;
  }
}

/* ==========================================================================
   BLUEPRINT LINE-ART DIVISIONS SECTION (LIGHT THEME CARDS + DARK IMAGE VIEWPORT)
   ========================================================================== */
.blueprint-divisions-section {
  background: transparent;
  padding: 1.25rem 0 3.5rem;
  position: relative;
}

.blueprint-divisions-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blueprint-divisions-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem;
}

.blueprint-divisions-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-amber-hover);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.blueprint-divisions-title {
  font-size: 2.15rem;
  font-weight: 900;
  color: #042044;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.blueprint-divisions-desc {
  font-size: 0.95rem;
  color: #111827;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout matching the 3x2 blueprint layout */
.blueprint-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blueprint-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 1.75rem 1.65rem 1.65rem;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 30px -5px rgba(15, 83, 157, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blueprint-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px -5px rgba(15, 83, 157, 0.12);
  transform: translateY(-5px);
}

/* DARK IMAGE CONTAINER / FRAME BEHIND WHITE LINE ART */
.blueprint-img-wrapper {
  height: 145px;
  width: 100%;
  background-color: #121316;
  background-image: radial-gradient(circle at 50% 50%, #1c1d22 0%, #111215 100%);
  border: 1px solid #031733;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blueprint-card:hover .blueprint-img-wrapper {
  border-color: rgba(199, 141, 50, 0.45);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(199, 141, 50, 0.15);
}

.blueprint-img {
  max-width: 250px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.35s ease;
}

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

/* Card Content Container */
.blueprint-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-grow: 1;
}

/* Card Title */
.blueprint-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #042044;
  margin: 0 0 0.65rem;
  line-height: 1.35;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.blueprint-card:hover .blueprint-card-title {
  color: var(--color-amber-hover);
}

/* Card Subtitle / Specs Details */
.blueprint-card-details {
  font-size: 0.86rem;
  color: #111827;
  line-height: 1.6;
  margin-bottom: 0.95rem;
  width: 100%;
}

/* Distinct Technical Specification Bar */
.blueprint-card-spec {
  font-size: 0.75rem;
  font-weight: 700;
  color: #031733;
  background: #f8fafc;
  border-left: 3px solid var(--color-amber-hover);
  padding: 0.45rem 0.65rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.1rem;
  width: 100%;
  text-align: left;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  border-top: 1px solid #edf2f7;
  border-right: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.blueprint-card-spec i {
  color: var(--color-amber-hover);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* Badges / Micro tags list */
.blueprint-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.blueprint-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: #111827;
  background: #f8fafc;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease;
}

.blueprint-card:hover .blueprint-tag {
  background: #eafaf3;
  color: #A87328;
  border-color: #a7f3d0;
}

/* Action link inside card */
.blueprint-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-amber-hover);
  margin-top: auto;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blueprint-card:hover .blueprint-action-btn {
  gap: 0.65rem;
  color: #A87328;
}

@media (max-width: 991px) {
  .blueprint-divisions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .blueprint-divisions-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blueprint-card {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .blueprint-img-wrapper {
    height: 125px;
  }

  .blueprint-img {
    max-height: 95px;
  }
}

/* ==========================================================================
   4-PILLAR VALUE PROPOSITION STRIP (ABOVE SPECIFIC SPARE PART CTA)
   ========================================================================== */
.trust-pillars-section {
  padding: 1.5rem 0 1rem;
  position: relative;
  background: transparent;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.trust-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.trust-pillar-icon-wrapper {
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-pillar-icon-wrapper i {
  font-size: 2.2rem;
  color: #042044;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-pillar-item:hover .trust-pillar-icon-wrapper {
  background: transparent;
  border: none;
  transform: translateY(-4px);
  box-shadow: none;
}

.trust-pillar-item:hover .trust-pillar-icon-wrapper i {
  color: var(--color-amber, #c78d32);
  transform: scale(1.1);
}

.trust-pillar-title {
  font-size: 1.02rem;
  font-weight: 900;
  color: #042044;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.trust-pillar-desc {
  font-size: 0.86rem;
  color: #111827;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0;
    gap: 2.25rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .trust-pillars-grid {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 2rem;
  }
}

/* ==========================================================================
   CUSTOM ON-DEMAND MACHINERY SOURCING & GLOBAL DELIVERY SECTION
   ========================================================================== */
.custom-machinery-section {
  padding: 3rem 0 0.5rem;
  background: transparent;
  position: relative;
}

.custom-machinery-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-machinery-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2.5rem;
}

.custom-machinery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-amber);
  background: transparent;
  border: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.9rem;
}

.custom-machinery-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #042044;
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
}

.custom-machinery-desc {
  font-size: 1.05rem;
  color: #111827;
  line-height: 1.65;
  margin: 0;
}

/* Big Interactive Visual Showcase Card */
.custom-machinery-showcase-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0 1.5rem;
  box-shadow: none;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.custom-machinery-showcase-card:hover {
  box-shadow: none;
  border: none;
}

.custom-machinery-banner-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.custom-machinery-banner-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #042044;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-machinery-banner-badge .guarantee-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: #C78D32;
  background: #eafaf3;
  border: 1px solid #a7f3d0;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.custom-machinery-visual-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  background: transparent;
  border-radius: 16px;
}

.custom-machinery-img {
  width: 100%;
  max-width: 870px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.06));
  transition: transform 0.4s ease;
}

.custom-machinery-showcase-card:hover .custom-machinery-img {
  transform: scale(1.015);
}

/* Category Pills Strip */
.custom-machinery-pills-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  border-top: none;
}

.machinery-pill-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.machinery-pill-tag i {
  color: #C78D32;
  font-size: 0.75rem;
}

.machinery-pill-tag:hover {
  background: #eafaf3;
  color: #C78D32;
  border-color: #C78D32;
  transform: translateY(-2px);
}

/* 4 Capability Value Cards Grid */
.custom-machinery-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.custom-machinery-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 4px 16px rgba(15, 83, 157, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.custom-machinery-feature-card:hover {
  transform: translateY(-4px);
  border-color: #C78D32;
  box-shadow: 0 12px 28px -5px rgba(199, 141, 50, 0.12);
}

.custom-machinery-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eafaf3;
  color: #C78D32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.custom-machinery-feature-card:hover .custom-machinery-feature-icon {
  background: #C78D32;
  color: #ffffff;
}

.custom-machinery-feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #042044;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.custom-machinery-feature-desc {
  font-size: 0.88rem;
  color: #111827;
  line-height: 1.55;
  margin: 0;
}

/* Action Strip */
.custom-machinery-cta-box {
  background: transparent;
  padding: 1rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  color: #111827;
}

.custom-machinery-cta-info h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #042044;
  margin: 0 0 0.35rem;
}

.custom-machinery-cta-info p {
  font-size: 0.92rem;
  color: #475569;
  margin: 0;
}

.custom-machinery-cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-custom-rfq {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C78D32;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(199, 141, 50, 0.3);
}

.btn-custom-rfq:hover {
  background: #A87328;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-custom-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #C78D32;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #ffffff;
}

.btn-custom-wa:hover {
  background: #eafaf3;
  transform: translateY(-2px);
  color: #A87328;
}

@media (max-width: 991px) {
  .custom-machinery-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-machinery-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .custom-machinery-features-grid {
    grid-template-columns: 1fr;
  }

  .custom-machinery-title {
    font-size: 1.5rem;
  }

  .custom-machinery-showcase-card {
    padding: 1.25rem 1rem 1.25rem;
  }

  .custom-machinery-cta-box {
    padding: 1.5rem 1.25rem;
  }
}