* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'CalSans';
  src: url('../assets/fonts/CalSansRegular.ttf') format('truetype');
}

body {
  min-height: 100vh;
  background: #ffffff;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

.header {
  width: 100%;
  border: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #0F3334;
  overflow: visible;
  margin-bottom: 0 !important;
  height: 80px;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 32%;
  background: #E6C369;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    88% 100%,
    0% 100%
  );
}

.navbar * {
  position: relative;
  z-index: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100px;
  padding-left: 0;
  padding-right: 0;
}

.nav-left,
.nav-right {
  flex: 0 0 auto;
  height: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  padding-left: 8px;
  max-height: 80px;
  gap: 4px;
  min-width: 180px;
  position: relative;
  z-index: 2;
  margin-left: -20px;
}

.nav-center {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.navbar-center {
  display: flex;
  gap: 50px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(20px);
}

.nav-item {
  position: relative;
}

.nav-item.dropdown {
  position: relative;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav-search {
  display: flex;
  align-items: center;
}
.nav-search img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.search-container {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  z-index: 10001;
  opacity: 0;
  transition: 0.3s ease;
  box-sizing: border-box;
  background: transparent;
  pointer-events: none;
}
.search-container.active {
  pointer-events: auto;
}

.search-container.active {
  opacity: 1;
}

.search-border {
  position: relative;
  border-radius: 12px;
  padding: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(231, 195, 105, 0.08);
}

.search-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    transparent,
    #E7C369,
    transparent
  );
  animation: borderRun 2s linear infinite;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.search-border::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 10px;
  z-index: 1;
}

.search-container:not(.active) .search-border::before {
  opacity: 0;
}

.search-container.active .search-border::before {
  opacity: 1;
}

@keyframes borderRun {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.search-input {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  transition: box-shadow 0.2s ease;
}

.search-input:focus {
  box-shadow: 0 0 0 3px rgba(0,150,255,0.15);
}

.search-results {
  display: none;
  background: #fff;
  border-radius: 12px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 8px 0;
  box-sizing: border-box;
}

.search-results.active {
  display: block;
}

.search-results:empty {
  display: none;
}

.search-item {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.search-item:hover {
  background: #f5f7fa;
}

.search-item.active {
  background: #eef3ff;
}

.search-item span:last-child {
  font-size: 11px;
  background: #eee;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: capitalize;
}

.no-result {
  padding: 12px 18px;
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .search-container {
    top: 70px;
    width: 92vw;
  }

  .search-input {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.navbar a {
  color: #E8C76D;
  text-decoration: none;
}

.nav-center a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight:300;
  letter-spacing: 0.6px;
  line-height: 1;
  color: #E8C76D;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight:300;
  letter-spacing: 0.6px;
  line-height: normal;
  color: #EBC569;
  text-decoration: none;
  white-space: nowrap;
}

.navbar .nav-link {
  font-size: 16px;
  font-weight:300;
  color: #EBC569;
  line-height: normal;
}

.nav-item.dropdown .nav-link {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.dropdown-toggle {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  font-weight:300;
}

.navbar .nav-item > .nav-link {
  font-size: 16px !important;
  font-weight: 300 !important;
}

.navbar .nav-link {
  font-size: 16px !important;
  font-weight: 300 !important;
  letter-spacing: 0px !important;
  line-height: 1.2 !important;
  font-family: 'Inter', sans-serif !important;
  transform: none !important;
}

.navbar,
.navbar * {
  transform: none !important;
  zoom: 1 !important;
}

.nav-item.dropdown .nav-link,
.dropdown-toggle {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.nav-item.dropdown > .nav-link {
  text-transform: none !important;
}

.navbar .nav-link {
  text-transform: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #FFFFFF !important;
  min-width: 260px;
  padding: 12px 0;
  list-style: none;
  border: 1px solid #E5E7EB;
  border-top: 4px solid #D4B254;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  z-index: 10001;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.dropdown::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #083335;
  font-family: 'CalSans', sans-serif;
  font-size: 14px;
  transition: 0.2s;
}

.dropdown-item:hover {
  background: #E8EDE9;
  color: #003B3F !important;
  padding-left: 24px;
}

.dropdown-item:focus,
.dropdown-item:active {
  background: #E8EDE9;
  color: #003B3F;
  padding-left: 24px;
}

.dropdown-item {
  color: #083335 !important;
}

.navbar .nav-link {
  color: #EBC569;
}

.navbar a:hover,
.navbar a:focus,
.navbar a:active {
  color: #E8C76D;
  text-decoration: none;
  background: transparent;
}

.navbar .cta-btn {
  background: #EBC86E;
  color: #0F3334;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight:600;
  text-decoration: none;
  font-size: 16px;
  transition: none;
}

.navbar .cta-btn:hover,
.navbar .cta-btn:focus,
.navbar .cta-btn:active {
  background: #EBC86E;
  color: #0F3334;
  text-decoration: none;
}

.nav-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: 'CalSans', sans-serif;
  font-size: 26px;
  font-weight:400;
  line-height: 20px;
  letter-spacing: 0px;
  color: #083335;
  white-space: nowrap;
  margin-left: -3px;
}

@media (max-width: 1200px) {
  .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-left,
  .nav-right {
    flex-basis: 220px;
  }

  .nav-center {
    gap: 42px;
  }

  .nav-links {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-left,
  .nav-right {
    flex-basis: 120px;
  }

  .nav-center {
    gap: 28px;
  }

  .nav-center a {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-link {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 700px) {
  .nav-container {
    height: 90px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-left,
  .nav-right {
    flex-basis: 0;
  }

  .nav-center {
    gap: 16px;
  }

  .nav-center a {
    font-size: 14px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    font-size: 14px;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding: 64px 16px;
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.home-hero .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 1;
}

.home-hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.home-hero .slide-1 {
  background-image: url('../assets/hero/hero-enh10.webp');
}

.home-hero .slide-2 {
  background-image: url('../assets/hero/hero-enh6.webp');
}

.home-hero .slide-3 {
  background-image: url('../assets/hero/Vt-smart-signage.webp');
}

.home-hero .slide-4 {
  background-image: url('../assets/hero/Vt-videowall.webp');
}

.home-hero .overlay {
  display: none;
}

.home-hero > :not(.hero-slider):not(.overlay):not(.hero-content) {
  position: relative;
  z-index: 3;
}

section {
  padding: 60px 0;
  display: block;
  position: static;
  height: auto;
}

.hero {
  padding: 64px 16px;
}

.hero-content {
  position: absolute;
  top: 140px;
  left: 80px;
  z-index: 3;
}

.hero-metrics {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.metric {
  padding: 18px 22px;
  border-radius: 12px;
}

.metric-number {
  font-size: 32px;
  line-height: 32px;
}

.metric-label {
  font-size: 14px;
}

.hero-btns {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}
  font-weight:200;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255,255,255,0.7);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.product-hero {
  margin-top: 40px;
  padding-top: 0 !important;
  background: #ffffff;
}

.product-hero-container {
  width: fit-content;
  margin: 0 auto;
}

.product-carousel-banner {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #A9C6D8;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
}

.product-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.product-carousel-image.active {
  display: block;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

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

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-55%);
  z-index: 2;
  max-width: 460px;
  color: #FFFFFF;
}

.slide-content h2 {
  font-family: 'CalSans', sans-serif;
  font-weight:500;
  font-size: 38px;
  line-height: 45.6px;
  margin-bottom: 16px;
}

.slide-content p {
  font-family: 'CalSans', sans-serif;
  font-weight:200;
  font-size: 14px;
  line-height: 18.6px;
  opacity: 0.9;
}

.dark-text {
  color: #000000;
}

.dark-text p {
  opacity: 0.85;
}

.slide-overlay.light {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.08) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}

.product-cards-row {
  width: 1206px;
  display: flex;
  gap: 42px;
  margin: 20px auto 25px;
}

.product-card {
  width: 270px;
  height: 250px;
  border: none;
  border-radius: 24px;
  background: #A9C6D8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero-divider {
  width: 75%;
  height: 2px;
  background: #000000;
  margin: 20px auto 0;
}

.product-hero-copy {
  text-align: center;
}

.product-hero-title {
  margin-top: 12px;
  font-family: 'CalSans', sans-serif;
  font-size: 32px;
  font-weight:500;
  line-height: 1.2;
  color: #000000;
}

.product-hero-subtext {
  margin-top: 6px;
  font-family: 'CalSans', sans-serif;
  font-size: 18px;
  font-weight:200;
  line-height: 1.6;
  color: #000000;
}

.btn-primary {
  background: #083335;
  color: #EBC569;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'CalSans', sans-serif;
font-size: 16px;
  font-weight:500;
  cursor: pointer;
}

button.btn-secondary {
  background: #EDC86B !important;
  color: #083335 !important;
  padding: 18px 36px;
  border-radius: 10px;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-box-shadow: none !important;
  -webkit-filter: none !important;
  text-decoration: none;
  font-family: 'CalSans', sans-serif;
  font-size: 16px;
  font-weight:500;
  cursor: pointer;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
}

.display-section {
  background-color: #fff;
  padding: 80px 40px;
  text-align: left;
}

.display-section h2 {
  font-family: 'CalSans', sans-serif;
  font-size: 36px;
  font-weight:400;
  color: #083335;
  margin-bottom: 8px;
}

.display-subhead {
  font-family: 'CalSans', sans-serif;
  font-weight:200;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}
  letter-spacing: 0px;
  margin-top: 12px;
  color: #666666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.display-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 0;
  background: none;
}

.display-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border-radius: 12px;
}

.display-card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #083335;
}

.display-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border-radius: 12px;
}

.display-card span {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px auto 0 auto;
  justify-items: center;
}

.display-card.interactive-card {
  width: 400px;
  text-align: left;
}

.display-card.interactive-card .card-content {
  margin-top: 16px;
  display: block;
}

.display-card.interactive-card .card-title {
  font-size: 24px;
  font-weight:500;
  color: #083335;
  margin-bottom: 8px;
}

.display-card.interactive-card .card-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .display-grid {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .display-grid {
    justify-content: center;
  }
}

/* INDUSTRIES SECTION */
.industries-section {
  padding: 100px 0;
  background: #f5f7f6;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.industries-header h2 {
  font-size: 44px;
  font-weight:400;
  margin-bottom: 12px;
  color: #0f3334;
}

.industries-header p {
  font-size: 18px;
  line-height: 28px;
  max-width: 520px;
  margin-bottom: 30px;
  color: #0f3334;
  opacity: 0.8;
}

.divider {
  width: 100%;
  height: 1px;
  background: #cfd6d3;
  margin-bottom: 60px;
}

/* BLOCK LAYOUT */
.industry-block {
  display: grid;
  grid-template-columns: 1fr 750px;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.industry-content {
  max-width: 520px;
}

.industry-content h3 {
  font-size: 42px;
  font-weight:400;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #0f3334;
}

.industry-content .intro {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
  color: #0f3334;
}

.industry-content .desc {
  font-size: 19px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #0f3334;
  opacity: 0.85;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 22px;
  background: #083335;
  color: #E9C166;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
}

/* IMAGE */
.industry-image {
  width: 750px;
  justify-self: end;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.industries-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.industries-header {
  margin-bottom: 60px;
}

.industries-section .industry-divider {
  border: none;
  border-top: 2px solid #083335;
  width: 100%;
  max-width: none;
  margin-top: 20px;
}

.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.industry-section {
  padding: 60px 0;
}

.normal-layout {
  grid-template-columns: 1fr 1fr;
}

.reverse-layout {
  grid-template-columns: 1fr 1fr;
}

.industry-row.reverse {
  direction: rtl;
}

.industry-text {
  max-width: 520px;
}

.industry-row.first-industry-row:not(.reverse) .industry-text {
  max-width: 100%;
}

.industry-row .industry-image,
.industry-row .industry-content {
  direction: ltr;
}

.industry-text h3:not(.industry-title) {
  font-size: 32px;
  font-weight:500;
  color: #083335;
  margin-bottom: 16px;
}

.industry-text p:not(.industry-subtext):not(.industry-desc) {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.industry-title {
  font-family: 'CalSans', sans-serif;
  font-size: 42px;
  font-weight:500;
  line-height: 1.2;
  color: #0f3d3e;
  margin-top: -8px;
  margin-bottom: 10px;
}

.industry-subtext {
  font-family: 'CalSans', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.industry-desc {
  font-family: 'CalSans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #5f6f73;
  max-width: 100%;
  margin-bottom: 20px;
}

.industry-btn {
  display: inline-block;
  width: max-content;
  align-self: flex-start;
  padding: 10px 24px;
  background: linear-gradient(135deg, #0f8f6f, #0c6f58);
  color: #ffffff;
  font-family: 'CalSans', sans-serif;
  font-size: 16px;
  font-weight:400;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 128, 96, 0.25);
  transition: all 0.3s ease;
}

.industry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 128, 96, 0.35);
}



/* First industries row: premium two-card split layout */
.industry-row.first-industry-row {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 100px;
}

.first-industry-row .industry-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.first-industry-row .text-card {
  flex: 0 0 40% !important;
  max-width: 40%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-industry-row .industry-tag {
  font-size: 14px;
  color: #083335;
  margin-bottom: 12px;
  display: inline-block;
}

.first-industry-row .text-card h3:not(.industry-title) {
  font-size: 32px;
  font-weight:500;
  color: #083335;
  margin-bottom: 16px;
}

.first-industry-row .text-card p:not(.industry-subtext):not(.industry-desc) {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}

.first-industry-row .image-card {
  flex: 0 0 60% !important;
  max-width: 60%;
  width: 100%;
  flex-grow: 1;
  position: static;
  padding: 0;
  margin-top: 0 !important;
  margin-left: auto;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center;
}

.first-industry-row .image-inner {
  max-width: 100%;
  width: 100%;
  aspect-ratio: auto;
  border-radius: 20px;
  overflow: hidden;
  position: static;
  display: block;
  align-self: flex-end !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}

.first-industry-row .image-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.industries-section p {
  color: #083335 !important;
  opacity: 1 !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

.industry-row.first-industry-row .image-card {
  width: 100% !important;
  flex-grow: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  padding-right: 0 !important;
}

.industry-row.first-industry-row .image-inner {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.industry-row.first-industry-row .industry-btn {
  width: max-content !important;
  padding: 10px 24px !important;
  align-self: flex-start !important;
}

.industries-right {
  display: flex;
  justify-content: flex-end;
}

.industry-section.normal-layout .industries-right img {
  transform: translateX(40px);
}

.industry-section:nth-of-type(4) .industry-title {
  white-space: nowrap;
}

.industry-section:nth-of-type(4) .industry-text {
  max-width: 600px;
}

.industry-section.reverse-layout .industries-right {
  transform: translateX(-40px);
}

.why-choose {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-choose .why-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: start;
  margin-top: 60px;
}

.why-choose .left-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
  width: 100%;
}

.why-choose .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: #f5f5f5;
  color: #1d3b3c;
  cursor: pointer;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.why-choose .feature-item:not(.active):hover {
  background: #eaf0ee;
}

.why-choose .feature-item.active {
  background-color: #083335;
  color: #ffffff;
}

.why-choose .feature-item.active::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #083335;
}

.why-choose .feature-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6ece9;
  color: #198754;
  font-family: 'CalSans', sans-serif;
  font-size: 14px;
  font-weight:500;
  flex-shrink: 0;
}

.why-choose .feature-item.active .icon {
  background: #1f4d50;
  color: #ffffff;
}

.why-choose .feature-item h5 {
  margin: 0 0 2px;
  font-family: 'CalSans', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight:500;
}

.why-choose .feature-item p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.why-choose .right-content {
  width: 100%;
  min-width: 0;
}

.why-choose .section-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: 'CalSans', sans-serif;
  font-size: 38px;
  line-height: 45.6px;
  letter-spacing: 0;
  font-weight:500;
  color: #000000;
}

.why-choose .section-subheading {
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: center;
}

.why-choose .why-choose-header {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.why-choose .why-choose-subhead {
  max-width: 750px;
  margin: 10px auto 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight:200;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0px;
  color: #14201C;
  opacity: 1;
  visibility: visible;
}

.why-choose .content-card {
  width: auto;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease-in-out;
}

.why-choose .content-card.is-switching {
  opacity: 0;
}

.why-choose .content-left {
  flex: 0 0 55%;
  width: 55%;
  max-width: 55%;
  margin-left: 0;
}

.why-choose .content-left h3 {
  margin: 0;
  font-family: 'CalSans', sans-serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight:500;
  color: #083335;
}

.why-choose .underline {
  width: 40px;
  height: 3px;
  background: #198754;
  margin: 10px 0 20px;
}

.why-choose .panel-description {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #3b5455;
}

.why-choose .highlight-box {
  margin: 20px 0;
  background: #eaf5ef;
  padding: 20px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #204041;
}

.why-choose .check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-choose .check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d4b4c;
}

.why-choose .check-icon {
  color: #198754;
  font-weight:500;
  line-height: 1;
  margin-top: 4px;
}

.why-choose .content-right {
  flex: 0 0 40%;
  width: 40%;
  max-width: 40%;
  align-self: flex-start;
  min-width: 0;
}

.why-choose .panel-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .why-choose .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose .feature-item.active::after {
    display: none;
  }

  .why-choose .section-title {
    font-size: 34px;
  }

  .why-choose .content-card {
    flex-direction: column;
    min-height: 0;
    padding: 24px;
  }

  .why-choose .content-left {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .why-choose .content-right {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .why-choose .panel-image {
    min-height: 260px;
    height: auto;
  }
}
.card-label {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  font-size: 18px;
  line-height: 23.9px;
  font-weight:500;
  font-family: 'Inter', sans-serif;
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

.product-card:nth-child(3) .card-label,
.product-card:nth-child(4) .card-label {
  bottom: 18px;
}

/* █── FILTER SORT BAR ── */
.fs-bar {
  background: #063B3E;
  padding: 12px 0;
  position: sticky;
  top: 80px;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.fs-bar.is-stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.fs-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fs-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.fs-badge {
  font-family: 'CalSans', sans-serif;
  font-weight:400;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #063B3E;
  background: #D9B85A;
  padding: 4px 10px;
  border-radius: 4px;
}
.fs-chevron {
  color: rgba(255,255,255,0.3);
  font-size: 18px;
  font-weight:100;
}
.fs-heading {
  font-family: 'CalSans', sans-serif;
  font-weight:500;
  font-size: 18px;
  color: #ffffff;
}
.fs-count {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.fs-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fs-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fs-pill {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight:300;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.fs-pill:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.fs-pill.active-pill {
  background: #D9B85A;
  color: #063B3E;
  border-color: #D9B85A;
}
.fs-select {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 30px 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23ffffff'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.fs-select option {
  color: #063B3E;
  background: #fff;
}

.filter-section {
  padding: 40px 20px;
  margin-top: 0;
  background: #f8f9fa;
}

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 10px;
  display: flex;
  gap: 24px;
}

.filter-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  margin-left: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.clear-filters {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: #083335;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}

.clear-filters:hover {
  background: #0b4a4d;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 16px;
  font-weight:400;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: 'CalSans', sans-serif;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: color 0.2s;
}

.filter-option:hover {
  color: #0F3334;
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0F3334;
}

.model-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-brand {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.model-brand:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.model-brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight:400;
  font-size: 14px;
  color: #1a1a1a;
  padding: 4px 0;
}

.model-brand-header:hover {
  color: #0F3334;
}

.model-toggle {
  font-size: 12px;
  transition: transform 0.2s;
}

.model-brand.expanded .model-toggle {
  transform: rotate(180deg);
}

.model-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.model-item {
  font-size: 13px;
  color: #555;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.model-item:hover {
  background: #f0f0f0;
  color: #0F3334;
}

.model-item.selected {
  background: #0F3334;
  color: #fff;
}

.model-item.hidden {
  display: none;
}

.model-brand.expanded .model-item.hidden {
  display: block;
}

.product-grid-container {
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid-card {
  width: 310px;
  height: 460px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-grid-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 12px;
  display: block;
  margin-top: -40px;
}

.product-content {
  padding: 10px 16px 0 16px;
  margin-top: -20px;
}

.samsung-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -30px;
}

.samsung-fix .product-brand,
.samsung-fix .product-title,
.samsung-fix .product-usage,
.samsung-fix .product-size {
  margin: 0;
}

.samsung-fix .product-content > * + * {
  margin-top: 6px;
}

.vu-vibe-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vu-vibe-fix .product-brand,
.vu-vibe-fix .product-model,
.vu-vibe-fix .product-title,
.vu-vibe-fix .product-usage,
.vu-vibe-fix .product-size {
  margin: 0;
}

.vu-vibe-fix .product-content > * + * {
  margin-top: 6px;
}

.vu-glo-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vu-glo-fix .product-brand,
.vu-glo-fix .product-model,
.vu-glo-fix .product-title,
.vu-glo-fix .product-usage,
.vu-glo-fix .product-size {
  margin: 0;
}

.vu-glo-fix .product-content > * + * {
  margin-top: 6px;
}

.vu-masterpiece-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vu-masterpiece-fix .product-brand,
.vu-masterpiece-fix .product-model,
.vu-masterpiece-fix .product-title,
.vu-masterpiece-fix .product-usage,
.vu-masterpiece-fix .product-size {
  margin: 0;
}

.vu-masterpiece-fix .product-content > * + * {
  margin-top: 6px;
}

.samsung-5th-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -40px;
}

.samsung-5th-fix .product-brand,
.samsung-5th-fix .product-title,
.samsung-5th-fix .product-usage,
.samsung-5th-fix .product-size {
  margin: 0;
}

.samsung-5th-fix .product-content > * + * {
  margin-top: 6px;
}

.qhfx-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.qhfx-fix .product-brand,
.qhfx-fix .product-model,
.qhfx-fix .product-title,
.qhfx-fix .product-usage,
.qhfx-fix .product-size {
  margin: 0;
}

.qhfx-fix .product-content > * + * {
  margin-top: 6px;
}

.qh43c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -30px;
}

.qh43c-fix .product-brand,
.qh43c-fix .product-title,
.qh43c-fix .product-usage,
.qh43c-fix .product-size {
  margin: 0;
}

.qh43c-fix .product-content > * + * {
  margin-top: 6px;
}

.qm43c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.qm43c-fix .product-brand,
.qm43c-fix .product-model,
.qm43c-fix .product-title,
.qm43c-fix .product-usage,
.qm43c-fix .product-size {
  margin: 0;
}

.qm43c-fix .product-content > * + * {
  margin-top: 6px;
}

.be43fx-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.be43fx-fix .product-brand,
.be43fx-fix .product-model,
.be43fx-fix .product-title,
.be43fx-fix .product-usage,
.be43fx-fix .product-size {
  margin: 0;
}

.be43fx-fix .product-content > * + * {
  margin-top: 6px;
}

.vh55c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vh55c-fix .product-brand,
.vh55c-fix .product-model,
.vh55c-fix .product-title,
.vh55c-fix .product-usage,
.vh55c-fix .product-size {
  margin: 0;
}

.vh55c-fix .product-content > * + * {
  margin-top: 6px;
}

.vmcr-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vmcr-fix .product-brand,
.vmcr-fix .product-model,
.vmcr-fix .product-title,
.vmcr-fix .product-usage,
.vmcr-fix .product-size {
  margin: 0;
}

.vmcr-fix .product-content > * + * {
  margin-top: 6px;
}

.vhce-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vhce-fix .product-brand,
.vhce-fix .product-model,
.vhce-fix .product-title,
.vhce-fix .product-usage,
.vhce-fix .product-size {
  margin: 0;
}

.vhce-fix .product-content > * + * {
  margin-top: 6px;
}

.vmce-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vmce-fix .product-brand,
.vmce-fix .product-model,
.vmce-fix .product-title,
.vmce-fix .product-usage,
.vmce-fix .product-size {
  margin: 0;
}

.vmce-fix .product-content > * + * {
  margin-top: 6px;
}

.vmbu-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.vmbu-fix .product-brand,
.vmbu-fix .product-model,
.vmbu-fix .product-title,
.vmbu-fix .product-usage,
.vmbu-fix .product-size {
  margin: 0;
}

.vmbu-fix .product-content > * + * {
  margin-top: 6px;
}

.waf-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.waf-fix .product-brand,
.waf-fix .product-model,
.waf-fix .product-title,
.waf-fix .product-usage,
.waf-fix .product-size {
  margin: 0;
}

.waf-fix .product-content > * + * {
  margin-top: 6px;
}

.hu700f-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.hu700f-fix .product-brand,
.hu700f-fix .product-model,
.hu700f-fix .product-title,
.hu700f-fix .product-usage,
.hu700f-fix .product-size {
  margin: 0;
}

.hu700f-fix .product-content > * + * {
  margin-top: 6px;
}

.hu701f-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.hu701f-fix .product-brand,
.hu701f-fix .product-model,
.hu701f-fix .product-title,
.hu701f-fix .product-usage,
.hu701f-fix .product-size {
  margin: 0;
}

.hu701f-fix .product-content > * + * {
  margin-top: 6px;
}

.hu800f-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.hu800f-fix .product-brand,
.hu800f-fix .product-model,
.hu800f-fix .product-title,
.hu800f-fix .product-usage,
.hu800f-fix .product-size {
  margin: 0;
}

.hu800f-fix .product-content > * + * {
  margin-top: 6px;
}

.hbu800-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.hbu800-fix .product-brand,
.hbu800-fix .product-model,
.hbu800-fix .product-title,
.hbu800-fix .product-usage,
.hbu800-fix .product-size {
  margin: 0;
}

.hbu800-fix .product-content > * + * {
  margin-top: 6px;
}

.lg-32lr571c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.lg-32lr571c-fix .product-brand,
.lg-32lr571c-fix .product-model,
.lg-32lr571c-fix .product-title,
.lg-32lr571c-fix .product-usage,
.lg-32lr571c-fix .product-size {
  margin: 0;
}

.lg-32lr571c-fix .product-content > * + * {
  margin-top: 6px;
}

.lg-43ut801c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.lg-43ut801c-fix .product-brand,
.lg-43ut801c-fix .product-model,
.lg-43ut801c-fix .product-title,
.lg-43ut801c-fix .product-usage,
.lg-43ut801c-fix .product-size {
  margin: 0;
}

.lg-43ut801c-fix .product-content > * + * {
  margin-top: 6px;
}

.lg-43ua831c-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.lg-43ua831c-fix .product-brand,
.lg-43ua831c-fix .product-model,
.lg-43ua831c-fix .product-title,
.lg-43ua831c-fix .product-usage,
.lg-43ua831c-fix .product-size {
  margin: 0;
}

.lg-43ua831c-fix .product-content > * + * {
  margin-top: 6px;
}

.lg-43ul5q-fix .product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -60px;
}

.lg-43ul5q-fix .product-brand,
.lg-43ul5q-fix .product-model,
.lg-43ul5q-fix .product-title,
.lg-43ul5q-fix .product-usage,
.lg-43ul5q-fix .product-size {
  margin: 0;
}

.lg-43ul5q-fix .product-content > * + * {
  margin-top: 6px;
}

.product-model {
  font-size: 16px;
  font-weight:500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.product-brand {
  font-size: 16px;
  font-weight:400;
  color: #1a1a1a;
}

.product-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 6px 0 10px 0;
}

.product-title {
  font-size: 16px;
  font-weight:400;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-usage {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.product-size {
  font-size: 16px;
  color: #333;
  margin-top: 2px;
}

.product-cta {
  margin-top: auto;
  padding: 12px 16px 16px;
  display: flex;
  justify-content: center;
}

.quote-btn {
  min-width: 170px;
  height: 38px;
  background: #0F3334;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight:400;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-btn:hover {
  background: #1a4a4b;
}

.no-products {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.no-products-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #E6C369;
  border-radius: 12px;
  padding: 36px 40px 32px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.no-products-icon {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.no-products-card h2 {
  font-size: 22px;
  font-weight:400;
  color: #083335;
  margin: 0 0 12px;
  font-family: 'CalSans', sans-serif;
}

.no-products-divider {
  width: 50px;
  height: 2px;
  background: #E6C369;
  border: none;
  margin: 0 auto 16px;
}

.no-products-line {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.no-products-line + .no-products-line {
  margin-top: 2px;
}

/* Search Bar Styles */
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  color: #E6C369;
}

.search-overlay {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay .search-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #fff;
  color: #333;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.search-overlay .search-input::placeholder {
  color: #888;
}

/* Unified Button System */
.btn-primary {
  display: inline-block;
  width: auto;
  padding: 10px 20px;
  background: #0f3d3a;
  color: #E6C369;
  font-family: 'CalSans', sans-serif;
  font-size: 15px;
  font-weight:300;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #145c55;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 61, 58, 0.3);
}

.card .btn-primary,
.display-card .btn-primary,
.industry-card .btn-primary {
  align-self: flex-start;
}

.trusted-section {
  background: #F4F9F7;
  padding: 60px 0 40px;
}

.carousel-title {
  font-family: 'CalSans', sans-serif;
  font-weight:500;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: #0A3223;
  text-align: center;
  margin: 0;
}

.carousel-divider {
  width: 70%;
  max-width: 900px;
  height: 1px;
  background: rgba(10, 50, 35, 0.25);
  position: relative;
  margin: 20px auto 32px;
}

.carousel-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 3px;
  background: #0A3223;
  border-radius: 2px;
}
/* Logo Carousel Section */
.logo-carousel-section {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.client-track {
  display: flex;
  align-items: center;
  height: 100px;
  width: max-content;
}

.top-track {
  animation: scrollLeft 16s linear infinite;
}

.bottom-track {
  animation: scrollRight 16s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.client-item img {
  max-height: 70px;
  width: auto;
  filter: none;
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero Typography */
.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 32px;
  padding-right: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-left: 0;
  max-width: 520px;
  transform: translateX(-120px);
  margin-top: -110px;
}

.hero-pill {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #E6C369;
  background: #0F3334;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: -20px;
}

.hero-heading {
  font-family: 'CalSans', sans-serif;
  font-weight:400;
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 4px 0 8px 0;
}

.hero-subtext {
  font-family: 'CalSans', sans-serif;
  font-weight:200;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  color: #FFFFFFBF;
  max-width: 520px;
}

.hero-metrics {
  display: flex;
  gap: 24px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-number {
  font-size: 32px;
  line-height: 32px;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #FFFFFFBF;
}

.hero-cta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

/* HERO LOCK - Safe isolation */
.hero-locked * {
  box-sizing: border-box;
}

.hero-locked {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-locked .hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-locked .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-locked .hero-heading {
  font-family: 'CalSans', sans-serif;
  font-weight:400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: clamp(38px, 5vw, 62px);
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 4px 0 8px 0;
}
.home-hero.hero-locked .hero-heading {
  color: #FFFFFF;
}

.hero-locked .hero-subtext {
  font-family: 'CalSans', sans-serif;
  font-weight:200;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0;
  color: #FFFFFF;
  max-width: 520px;
}

.home-hero.hero-locked .hero-subtext {
  color: #FFFFFF;
}

.hero-locked .hero-metrics {
  display: flex;
}

.hero-locked .hero-cta {
  display: flex;
}

.hero-locked .btn-primary,

.hero-locked .btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
}

.hero-locked .metric-card {
  backdrop-filter: blur(14px);
}

.home-hero.hero-locked .metric-card {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.home-hero.hero-locked .metric-number,
.home-hero.hero-locked .metric-label {
  color: #FFFFFF;
}

.home-hero.hero-locked .hero-pill {
  color: #EBC569;
}

.home-hero.hero-locked .btn-primary {
  color: #FFFFFF;
}

.home-hero.hero-locked .btn-secondary {
  color: #0F3334;
  border-color: #0F3334;
}

/* Our Display Solutions - CLEAN */
.display-section {
  background-color: #fff;
  padding: 80px 40px;
}

.display-title {
  font-size: 36px;
  margin-bottom: 8px;
  color: #083335;
}

.display-subtext {
  margin-bottom: 40px;
  color: #666;
}

.display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.display-card {
  display: flex;
  flex-direction: column;
}

.display-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.display-card h3 {
  font-size: 20px;
  color: #083335;
  margin: 0;
}

.display-subtext {
  margin-bottom: 40px;
  color: #666;
  font-size: 18px;
}

.display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.display-card {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.display-card h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 0 16px;
  font-size: 18px;
  color: #083335;
}
.home-hero {
  position: relative;
  min-height: 100vh;
}

.home-hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px;
  max-width: 60%;
}

/* Hero - no overlay */
.hero-content::before {
  display: none;
}

/* Products grid */
.display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px auto 0;
}

/* Industry sections */
.industry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.industry-row .industry-image img,
.industry-row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.industry-content,
.industry-text {
  max-width: 520px;
}



.industries-section {
  padding: 100px 40px;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.industries-header {
  margin-bottom: 40px;
  padding: 0;
  margin-left: -10%;
}

.industries-title {
  font-family: 'CalSans', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  color: #0F3334;
  margin-bottom: 12px;
  margin-left: -40px;
}

.industries-subtext {
  font-size: 22px;
  line-height: 28px;
  color: #0F3334;
  opacity: 0.8;
  max-width: 520px;
  margin-left: -40px;
}

.industries-divider {
  height: 3px;
  width: 100%;
  background: #0F3334;
  opacity: 0.2;
  margin: 24px 0 40px 0;
  transform: scaleX(1.08);
  transform-origin: left center;
}

.industries-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industries-left {
  max-width: 560px;
}

.industry-heading {
  font-family: 'CalSans', sans-serif;
  font-weight:400;
  font-size: 42px;
  line-height: 50.4px;
  letter-spacing: 0px;
  color: #0A3223;
  margin-bottom: 12px;
}

.industry-text {
  font-family: 'CalSans', sans-serif;
  font-weight:200;
  font-size: 22px;
  line-height: 28.8px;
  letter-spacing: 0px;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 12px;
}

.industries-right img {
  width: 100%;
  border-radius: 16px;
}

.industry-btn {
  background-color: #083335;
  color: #E9C166;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight:300;
  display: inline-block;
  cursor: pointer;
  box-shadow: none;
  width: auto;
  text-align: left;
  margin: 0;
}

.industry-btn:hover {
  background-color: #062829;
  color: #E9C166;
}

.industry-block {
  display: grid;
  grid-template-columns: 1fr 750px;
  gap: 80px;
  align-items: center;
}

.industry-content {
  grid-column: 1;
}

.industry-image {
  grid-column: 2;
}

.industry-block:nth-of-type(even) {
  grid-template-columns: 750px 1fr;
}

.industry-block:nth-of-type(even) .industry-content {
  grid-column: 2;
}

.industry-block:nth-of-type(even) .industry-image {
  grid-column: 1;
}

/* HEADING */
.industry-content h3 {
  font-size: 42px;
  font-weight:400;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #0f3334;
}

/* INTRO (FIRST PARA) */
.industry-content .intro {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px;
  color: #0f3334;
}

/* DESCRIPTION (SECOND PARA) */
.industry-content .desc {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 22px;
  color: #0f3334;
  opacity: 0.85;
  max-width: 460px;
}

/* BUTTON */
.industry-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 22px;
  font-size: 15px;
  font-weight:300;
  background: #083335;
  color: #E9C166;
  border-radius: 999px;
  text-decoration: none;
}

/* BUTTON */
.industry-btn {
  margin-top: 4px;
}

/* PARAGRAPHS */
.industry-content p {
  margin: 0 0 14px 0;
  line-height: 1.7;
}

/* BUTTON */
.industry-btn {
  font-size: 15px;
  font-weight:300;
  display: inline-block;
  margin: 0;
}

/* IMAGE (TOUCH NAHI KARNA THA, STILL SAFE) */
.industry-image {
  width: 750px;
  justify-self: end;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.industry-image {
  width: 750px;
  flex-shrink: 0;
  justify-self: end;
  display: flex;
  transform: translateX(90px);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}







.card-first h3 {
  margin: 0 0 6px -18px;
  font-size: 26px;
  color: #0F3334;
}

.card-first p {
  font-size: 19px;
}

.card-first .display-btn {
  border-radius: 999px !important;
  padding: 10px 22px !important;
  background: #0F3B36 !important;
  color: #E3BD62 !important;
  font-weight: 500 !important;
  display: inline-block !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
  text-decoration: none;
  cursor: pointer;
}






/* VT Industries Rebuild (scoped, isolated) */
.vt-industries-section {
  background: #F5FAF7;
  padding: 88px 0 96px;
}

.vt-industries-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.vt-industries-header h2 {
  margin: 0;
  font-family: 'CalSans', sans-serif;
  font-size: 56px;
  font-weight:500;
  line-height: 1.08;
  color: #0b3f42;
}

.vt-industries-header p {
  margin: 18px 0 0;
  max-width: 520px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight:200;
  line-height: 1.45;
  color: #0b3f42;
}

.vt-divider {
  margin: 30px 0 56px;
  width: 100%;
  height: 2px;
  background: #0b5557;
  opacity: 0.75;
}

.vt-industry-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: center;
  gap: 54px;
  margin-bottom: 72px;
}

.vt-industry-block:last-child {
  margin-bottom: 0;
}

.vt-industry-block.vt-reverse {
  grid-template-columns: 560px minmax(0, 1fr);
}

.vt-industry-content h3 {
  margin: 0 0 16px;
  font-family: 'CalSans', sans-serif;
  font-size: 52px;
  font-weight:500;
  line-height: 1.08;
  color: #0b3f42;
}

.vt-intro,
.vt-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight:200;
  line-height: 1.45;
  color: #0b3f42;
}

.vt-desc {
  margin-top: 18px;
}

.vt-industry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-width: 190px;
  height: 50px;
  padding: 0 24px;
border-radius: 12px;
  background: #083335;
  color: #E9C166;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight:500;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 98, 84, 0.28);
}

.vt-industry-media {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.vt-industry-block.vt-reverse .vt-industry-media {
  justify-self: start;
}

.vt-industry-media img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
}

.vt-industry-block.vt-reverse .vt-industry-content {
  order: 2;
}

.vt-industry-block.vt-reverse .vt-industry-media {
  order: 1;
}

@media (max-width: 1600px) {
  .vt-industries-header h2 {
  margin: 0;
  font-family: 'CalSans', sans-serif;
  font-size: 56px;
  font-weight:500;
  line-height: 1.08;
  color: #0b3f42;
}

  .vt-industry-content h3 {
    font-size: 46px;
  }
}

/* FOOTER */
.footer {
  background: #0d2b26;
  color: #DDDDDD;
  padding: 80px 0 40px;
  opacity: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.footer h3 {
  font-family: 'CalSans', sans-serif;
  font-weight:300;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 16px;
  white-space: nowrap;
}

.footer h3 {
  font-family: 'CalSans', sans-serif;
  font-weight:300;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 16px;
  white-space: nowrap;
}

.footer h4 {
  font-family: 'CalSans', sans-serif;
  font-weight:300;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer p,
.footer .footer-col p {
  font-size: 16px;
  line-height: 1.5;
  color: #DDDDDD;
  opacity: 1;
  margin: 0;
}
.footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .footer-col p.contact-info {
  white-space: nowrap;
  max-width: 260px;
  line-height: 1.6;
  margin: 0;
}
.footer a {
  text-decoration: none;
  color: #DDDDDD;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #F1CF71;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #DDDDDD;
  opacity: 1;
}

.footer-social {
  margin-top: 16px;
}

.footer-social a {
  margin-right: 12px;
  font-size: 16px;
  color: #DDDDDD;
  text-decoration: none;
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
  margin: 6px 0;
  color: #DDDDDD;
  opacity: 1;
}

.footer-bottom .tagline {
  font-size: 16px;
  color: #DDDDDD;
  opacity: 1;
}

.footer-bottom .legal {
  font-size: 16px;
  color: #AAAAAA;
  opacity: 1;
}

.footer-seo {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-seo p {
  font-size: 13px;
  color: #999999;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Product Slider (Left Block Only) */
.product-image-slider {
  width: 623px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-viewport {
  width: 623px;
  height: 351px;
  display: block;
  overflow: hidden;
  position: relative;
}

.product-image-slider .slider-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s ease;
}

.product-image-slider .slider-track img {
  width: 623px;
  height: 351px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-image-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.product-image-slider .slider-arrow.left { left: 10px; }
.product-image-slider .slider-arrow.right { right: 10px; }

.product-image-slider .slider-dots {
  position: static;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.product-image-slider .slider-dots span {
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.product-image-slider .slider-dots .active {
  background: #000;
}

/* Product Detail Page */
.product-detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 60px auto;
  align-items: flex-start; /* FIXED: align from top */
}

.product-image-wrapper {
  width: 615px;
  height: 348px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-details-content {
  max-width: 520px;
  padding-left: 50px;
  color: #000000;
}

.product-title-main {
  font-family: 'CalSans', sans-serif;
  font-size: 28px;
  font-weight:500;
  line-height: 1.25;
  margin-bottom: 6px;
  white-space: nowrap;
}

.product-subtext {
  font-size: 16px;
  font-weight:300;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 480px;
}

.product-features {
  font-size: 15px;
  line-height: 1.8;
  margin-left: 18px;
  margin-bottom: 24px;
}

.product-size-section {
  margin-top: 20px;
}

.product-size-label {
  font-size: 22px;
  font-weight:500;
  margin-bottom: 14px;
}

.product-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 420px;
}

.product-size-option {
  background: #D9D9D9;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-weight:400;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.product-size-option:hover {
  background: #c5c5c5;
}

.product-size-option.active {
  background: #083335;
  color: #fff;
}

body:has(.product-navbar) .navbar {
  position: relative !important;
}

.product-cta-box {
  background: #E6E6E6;
  margin-top: 30px;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  max-width: 480px;
}

.product-cta-btn {
  background: #0D2B26;
  color: #ffffff;
  padding: 15px 50px;
  border-radius: 40px;
  font-size: 18px;
  font-weight:500;
  border: none;
  cursor: pointer;
}

/* Product Navbar */
.product-navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar-content {
  height: 65px;
  background: #0D2A1E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 20px;
}

.product-nav-title {
  color: #fff;
  font-size: 20px;
  font-weight:500;
  font-family: 'CalSans', sans-serif;
  margin-left: 52px;
}

.contact-btn {
  background: #C5A059;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight:500;
  text-decoration: none;
}

.navbar-accent {
  height: 8px;
  background: #C5A059;
}

/* Section Divider */
.section-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
}

.divider-line {
  width: 100%;
  max-width: 1100px;
  height: 2px;
  background: #111;
  display: block;
  position: relative;
}

.divider-highlight {
  position: absolute;
  top: -1px;
  height: 4px;
  width: 180px;
  background: #f5b400;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.section-divider--thick .divider-line {
  height: 4px;
}

.section-divider--bottom .divider-line {
  max-width: 600px;
}

/* Context Section */
.context-section {
  width: 100%;
  padding: 100px 20px 80px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.context-wrapper {
  max-width: 1150px;
  width: 100%;
}

.context-title {
  font-size: 34px;
  font-weight:300;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #111;
}

.context-tagline {
  font-size: 22px;
  font-weight:200;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.5;
}

.context-para {
  font-size: 20px;
  line-height: 1.9;
  color: #222;
  margin-bottom: 50px;
}

.context-box {
  background: #dcdcdc;
  padding: 35px 40px;
  border-radius: 12px;
  width: 100%;
}

.context-box-title {
  font-size: 20px;
  font-weight:400;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: #111;
}

.context-box-para {
  font-size: 19px;
  line-height: 1.9;
  color: #222;
  margin: 0;
}

/* Feature Section */
.feature-section {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-wrapper {
  max-width: 1150px;
  width: 100%;
}

.feature-wrapper > *:first-child {
  margin-top: 0;
}

.feature-title {
  font-size: 30px;
  font-weight:300;
  margin-bottom: 20px;
  color: #111;
}

.feature-text {
  font-size: 20px;
  line-height: 1.9;
  color: #222;
  margin-bottom: 25px;
}

.feature-box {
  background: #dcdcdc;
  padding: 35px 40px;
  border-radius: 12px;
  margin-top: 30px;
}

.feature-box-heading {
  font-size: 20px;
  font-weight:300;
  margin-bottom: 15px;
  color: #111;
}

.feature-list {
  padding-left: 22px;
  margin: 15px 0 25px 0;
}

.feature-list li {
  font-size: 19px;
  line-height: 1.9;
  color: #222;
  margin-bottom: 8px;
}

/* Alt Layout - text-driven section with tighter spacing */
.alt-layout .feature-text {
  margin-bottom: 18px;
}

.alt-layout .feature-list {
  margin: 10px 0 20px 0;
}

.alt-layout .feature-list li {
  margin-bottom: 6px;
}

.specs-list {
  padding-left: 22px;
  margin-top: 10px;
}

.specs-list li {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #222;
}

/* Final CTA Section */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta .feature-wrapper {
  max-width: 1150px;
  width: 100%;
}

.highlight-box {
  background: #dcdcdc;
  padding: 35px 40px;
  border-radius: 14px;
  margin-bottom: 40px;
  max-width: 1150px;
  width: 100%;
}

.cta-box {
  background: #dcdcdc;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 1150px;
  width: 100%;
}

.info-banner {
  max-width: 1100px;
  margin: 40px auto 20px;
  padding: 28px 32px;
  background: #f3f3f3;
  border-radius: 14px;
  text-align: center;
}

.info-banner h1 {
  font-size: 28px;
  font-weight:400;
  margin-bottom: 12px;
  color: #111;
}

.info-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .info-banner {
    padding: 20px;
    margin: 30px 16px;
  }

  .info-banner h1 {
    font-size: 20px;
  }

  .info-banner p {
    font-size: 14px;
  }
}

.cta-heading {
  font-size: 22px;
  font-weight:300;
  margin-bottom: 10px;
  color: #111;
}

.cta-subtext {
  font-size: 18px;
  color: #333;
}

.cta-button-wrapper {
  display: flex;
  justify-content: center;
  max-width: 1150px;
  width: 100%;
}

.cta-button {
  background: #0D2B26;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
}

/* Bulk CTA - QBC-style reusable conversion section */
.bulk-cta {
    text-align: center;
    padding: 60px 0 80px;
}

.bulk-cta h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #111;
}

.bulk-cta p {
    margin-bottom: 25px;
    color: #555;
}

.bulk-cta .cta-button {
    background: #0b3d2e;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

/* Image Banner Section - full-width product banner */
.image-banner-section {
    text-align: center;
    padding: 60px 0;
}

.image-banner-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #111;
}

.image-banner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

/* Product Info Bar - exact QBC match */
.product-info-bar {
    max-width: 1100px;
    margin: 30px auto 10px auto;
    padding: 25px 30px;
    background: #f1f1f1;
    border-radius: 12px;
    text-align: center;
}

.product-info-bar h3 {
    font-size: 28px;
    font-weight:500;
    margin-bottom: 10px;
    color: #000;
}

.product-info-bar p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.image-banner-section .container {
    max-width: 1150px;
    margin: 0 auto;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.slider-wrapper .slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-wrapper .slides .slide {
    min-width: 100%;
    display: block;
}

.slider-wrapper .slides .slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.slider-wrapper .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper .slider-arrow.left {
    left: 15px;
}

.slider-wrapper .slider-arrow.right {
    right: 15px;
}

.slider-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #f5b400;
}

/* Image Section */
.image-section {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  max-width: 1150px;
  width: 100%;
}

.image-title {
  font-size: 26px;
  font-weight:300;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #111;
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.image-container img {
  width: 100%;
  max-width: 1000px;
  border-radius: 6px;
  object-fit: cover;
}


/* Split Section */
.split-section {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}

.split-text,
.split-image {
  width: 50%;
}

.split-text {
  background: #f1f1f1;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h3 {
  font-size: 24px;
  font-weight:500;
  margin-bottom: 12px;
  color: #000;
}

.split-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.split-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
}

.split-image img,
.split-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }
  .split-text,
  .split-image {
    width: 100%;
  }
}


/* Image Modal/Lightbox */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 60px 40px 30px;
  box-sizing: border-box;
  gap: 16px;
}

.modal-main {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.modal-main img {
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 26px;
  font-weight:100;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  line-height: 1;
}
.modal-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}
.modal-arrow.left { left: 10px; }
.modal-arrow.right { right: 10px; }

.modal-close {
  display: none;
}

.modal-close-img {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 22px;
  font-weight:500;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.modal-close-img:hover {
  background: #D9B85A;
  color: #063B3E;
  border-color: #D9B85A;
  transform: scale(1.15);
}

.modal-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 13px;
  font-weight:300;
  font-family: 'Inter', sans-serif;
  padding: 3px 12px;
  border-radius: 100px;
  z-index: 10;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.modal-thumbnails {
  flex: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0;
  max-width: 700px;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.modal-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.modal-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
}

.modal-thumbnails img {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
}
.modal-thumbnails img:hover {
  opacity: 0.8;
}
.modal-thumbnails img.active {
  opacity: 1;
  border-color: #D9B85A;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 50px 12px 16px;
    gap: 12px;
  }
  .modal-main img {
    max-height: 55vh;
  }
  .modal-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .modal-thumbnails img {
    width: 48px;
    height: 36px;
  }
  .modal-thumbnails {
    max-width: 100%;
  }
}

/* Replica Slider Section */
.replica-slider-section {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.replica-slider-section .section-title {
  font-size: 26px;
  font-weight:300;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #111;
}

.replica-container {
  max-width: 1150px;
  width: 100%;
}

.replica-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.replica-slider-section .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.replica-slider-section .slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.replica-slider-section .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.replica-slider-section .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.replica-slider-section .slider-arrow.left {
  left: 15px;
}

.replica-slider-section .slider-arrow.right {
  right: 15px;
}

.replica-slider-section .slider-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.replica-slider-section .dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.replica-slider-section .dot.active {
  background: #f5b400;
}
/* █── Display Solutions Section (Premium) ── */
.dp-section {
  padding: 100px 60px;
  background: #F4F9F7;
  position: relative;
  overflow: hidden;
}
.dp-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217,184,90,0.04));
}
.dp-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dp-header {
  text-align: center;
  margin-bottom: 56px;
}
.dp-header-left {
  margin: 0 auto;
}
.dp-title {
  font-family: 'CalSans', sans-serif;
  font-weight:600;
  font-size: 48px;
  color: #063B3E;
  margin: 0;
  line-height: 1.15;
}
.dp-title span {
  color: #D9B85A;
}
.dp-desc {
  font-size: 20px;
  color: rgba(6,59,62,0.7);
  max-width: 800px;
  line-height: 1.7;
  margin: 16px auto 0;
}
.dp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.dp-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.dp-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: #D9B85A;
  transition: height 0.4s ease;
}
.dp-card:hover::before {
  height: 100%;
}
.dp-card:hover {
  background: rgba(6,59,62,0.02);
  border-color: rgba(217,184,90,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6,59,62,0.06);
}
.dp-card-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}
.dp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.dp-card:hover .dp-card-image img {
  transform: scale(1.06);
  opacity: 1;
}
.dp-card-body {
  padding: 28px 32px 34px;
}
.dp-card-body h3 {
  font-family: 'CalSans', sans-serif;
  font-weight:500;
  font-size: 24px;
  color: #063B3E;
  margin: 0 0 8px;
}
.dp-card-body p {
  font-size: 20px;
  color: rgba(6,59,62,0.65);
  margin: 0 0 20px;
  line-height: 1.6;
}
.dp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight:400;
  color: #D9B85A;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.dp-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.dp-btn:hover {
  color: #063B3E;
}
.dp-btn:hover i {
  transform: translateX(6px);
}

.dp-section {
  background: linear-gradient(180deg, #F8FAF9 0%, #FFFFFF 100%);
}

.dp-card { box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s; display: block; text-decoration: none; color: inherit; }
.dp-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.vt-industries-section { background: #EEF3F1; }

/* ── Get Quote Modal ── */
.quote-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.quote-modal-overlay.active {
  display: flex;
}
.quote-modal {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  padding: 35px 30px 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}
.quote-modal-close:hover {
  color: #333;
}
.quote-modal h2 {
  font-size: 22px;
  font-weight: 600;
  color: #063B3E;
  margin: 0 0 6px;
}
.quote-modal .modal-sub {
  font-size: 14px;
  color: #888;
  margin: 0 0 20px;
}
.quote-modal .form-group {
  margin-bottom: 14px;
}
.quote-modal .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
}
.quote-modal .form-group input,
.quote-modal .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.quote-modal .form-group input:focus,
.quote-modal .form-group textarea:focus {
  border-color: #D9B85A;
}
.quote-modal .form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.quote-modal .form-group input[readonly] {
  background: #f9f9f9;
  color: #666;
  cursor: not-allowed;
}
.quote-modal .form-group .error-msg {
  font-size: 12px;
  color: #e74c3c;
  display: none;
  margin-top: 3px;
}
.quote-modal .form-group.invalid input,
.quote-modal .form-group.invalid textarea {
  border-color: #e74c3c;
}
.quote-modal .form-group.invalid .error-msg {
  display: block;
}
.quote-modal .btn-submit {
  width: 100%;
  padding: 12px;
  background: #063B3E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.quote-modal .btn-submit:hover {
  background: #0a5256;
}
.quote-modal .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.quote-modal .modal-divider {
  text-align: center;
  margin: 18px 0;
  color: #bbb;
  font-size: 13px;
  position: relative;
}
.quote-modal .modal-divider::before,
.quote-modal .modal-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #eee;
}
.quote-modal .modal-divider::before { left: 0; }
.quote-modal .modal-divider::after { right: 0; }
.quote-modal .btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.quote-modal .btn-whatsapp:hover {
  background: #1da851;
}
.quote-modal .btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.quote-modal .modal-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.quote-modal .modal-success.show {
  display: block;
}
.quote-modal .modal-success .check-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 28px;
}
.quote-modal .modal-success h3 {
  color: #063B3E;
  margin: 0 0 6px;
  font-size: 20px;
}
.quote-modal .modal-success p {
  color: #888;
  font-size: 14px;
  margin: 0;
}
.quote-modal .modal-form {
  display: block;
}
.quote-modal .modal-form.hidden {
  display: none;
}

/* ── Mobile-Only Elements (hidden on desktop) ── */
.mobile-search-bar,
.mobile-category-chips,
.mobile-hero,
.mobile-bottom-nav,
.mobile-categories,
.mobile-featured-section,
.mobile-filter-overlay,
.mobile-menu-overlay {
  display: none;
}

/* ── Bottom Navigation ── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 9998;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: none;
  border: none;
  padding: 4px 12px;
  cursor: pointer;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  min-width: 56px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item i,
.bottom-nav-item svg {
  font-size: 22px;
  color: #9CA3AF;
  transition: color 0.2s;
}
.bottom-nav-item.active,
.bottom-nav-item:hover,
.bottom-nav-item.active i,
.bottom-nav-item:hover i {
  color: #0F3334;
}
.bottom-nav-item span {
  font-size: 10px;
  line-height: 1;
}

/* ── Mobile Search Bar ── */
.mobile-search-bar {
  display: none;
  padding: 8px 12px;
  background: #FFFFFF;
  position: sticky;
  top: 56px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.mobile-search-bar .mobile-search-inner {
  display: flex;
  align-items: center;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 12px 16px;
  gap: 10px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.mobile-search-bar .mobile-search-inner i {
  color: #9CA3AF;
  font-size: 18px;
}
.mobile-search-bar .mobile-search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: transparent;
}
.mobile-search-bar .mobile-search-inner input::placeholder {
  color: #9CA3AF;
}

/* ── Category Chips ── */
.mobile-category-chips {
  display: none;
  padding: 8px 12px 4px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #FFFFFF;
  gap: 8px;
}
.mobile-category-chips::-webkit-scrollbar { display: none; }
.mobile-category-chips .chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #F3F4F6;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  margin-right: 8px;
  border: 1px solid transparent;
}
.mobile-category-chips .chip:active {
  background: #0F3334;
  color: #FFFFFF;
}

/* ── Mobile Hero ── */
.mobile-hero {
  display: none;
  position: relative;
  background: #0F3334;
  background-image: url('../assets/hero/hero-enh10.webp');
  background-size: cover;
  background-position: center;
  padding: 20px 20px;
  text-align: center;
  min-height: 28vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 51, 52, 0.75);
  z-index: 1;
}
.mobile-hero * {
  position: relative;
  z-index: 2;
}
.mobile-hero h1 {
  font-family: 'CalSans', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 4px;
  font-weight:500;
}
.mobile-hero p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}
.mobile-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EBC569;
  color: #0F3334;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight:500;
  transition: background 0.2s;
}
.mobile-hero-btn:active {
  background: #d4a94a;
}

/* ── Mobile Category Cards (2-column) ── */
.mobile-categories {
  display: none;
  padding: 12px 12px;
  background: #F9FAFB;
}
.mobile-categories .mob-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mob-cat-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.mob-cat-card:active {
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.mob-cat-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}
.mob-cat-card .mob-cat-body {
  padding: 6px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.mob-cat-card .mob-cat-body .mob-cat-text {
  flex: 1;
  min-width: 0;
}
.mob-cat-card .mob-cat-body h4 {
  font-size: 12px;
  font-weight:500;
  color: #111827;
  margin: 0 0 1px;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.mob-cat-card .mob-cat-body p {
  font-size: 10px;
  color: #6B7280;
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.mob-cat-card .mob-cat-body i {
  color: #9CA3AF;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Mobile Featured Products ── */
.mobile-featured-section {
  display: none;
  padding: 12px 12px;
  background: #FFFFFF;
}
.mobile-featured-section .mob-feat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mobile-featured-section .mob-feat-header h2 {
  font-size: 16px;
  font-weight:500;
  color: #111827;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.mobile-featured-section .mob-feat-header a {
  font-size: 12px;
  color: #0F3334;
  text-decoration: none;
  font-weight:500;
}
.mob-product-card {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}
.mob-product-card:last-child { margin-bottom: 0; }
.mob-product-card:active {
  border-color: #D1D5DB;
}
.mob-product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 8px;
  background: #F9FAFB;
}
.mob-product-card .mob-prod-body {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.mob-product-card .mob-prod-body .mob-prod-brand {
  font-size: 10px;
  color: #6B7280;
  font-weight:500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1px;
}
.mob-product-card .mob-prod-body .mob-prod-model {
  font-size: 11px;
  color: #111827;
  font-weight:600;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mob-product-card .mob-prod-body .mob-prod-name {
  font-size: 10px;
  color: #6B7280;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mob-product-card .mob-prod-body .mob-prod-size {
  font-size: 11px;
  color: #111827;
  font-weight:500;
  margin: 0 0 4px;
}
.mob-product-card .mob-prod-body .mob-prod-btn {
  display: inline-block;
  background: #0F3334;
  color: #FFFFFF;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: center;
  width: fit-content;
}
.mob-product-card .mob-prod-body .mob-prod-btn:active {
  background: #1a4a4b;
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 10002;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #EBC569;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}
.hamburger span:nth-child(1) { transform: translateY(-6px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(6px); }
.hamburger.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── Mobile Filter Bottom Sheet ── */
.mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 10005;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.mobile-filter-overlay.active {
  display: flex;
}
.mobile-filter-sheet {
  background: #FFFFFF;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px 16px 24px;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.mobile-filter-sheet .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}
.mobile-filter-sheet .filter-header h3 {
  font-size: 18px;
  font-weight:500;
  color: #111827;
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.mobile-filter-sheet .filter-header .filter-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6B7280;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.mobile-filter-sheet .mob-filter-group {
  margin-bottom: 18px;
}
.mobile-filter-sheet .mob-filter-group label {
  display: block;
  font-size: 14px;
  font-weight:500;
  color: #374151;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.mobile-filter-sheet .mob-filter-group .mob-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mobile-filter-sheet .mob-filter-group .mob-filter-chip {
  padding: 6px 14px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  user-select: none;
}
.mobile-filter-sheet .mob-filter-group .mob-filter-chip.selected {
  background: #0F3334;
  color: #FFFFFF;
  border-color: #0F3334;
}
.mobile-filter-sheet .filter-footer {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}
.mobile-filter-sheet .filter-footer button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight:500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.mobile-filter-sheet .filter-footer .btn-reset {
  background: #F3F4F6;
  color: #374151;
}
.mobile-filter-sheet .filter-footer .btn-apply {
  background: #0F3334;
  color: #FFFFFF;
}
.mobile-filter-sheet .filter-footer .btn-apply:active { background: #1a4a4b; }
.mobile-filter-sheet .filter-footer .btn-reset:active { background: #E5E7EB; }

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 10003;
  display: none;
}

@media (max-width: 992px) {
  .mobile-menu-overlay, .mobile-menu-sheet { display: none !important; }
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu-sheet {
  position: fixed;
  top: 56px;
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  width: 90%;
  max-width: 340px;
  background: #FFFFFF;
  z-index: 10004;
  transition: transform 0.25s ease, opacity 0.25s ease;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  max-height: calc(100vh - 72px);
}
.mobile-menu-sheet.active {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-sheet .menu-header {
  background: #0F3334;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px 12px 0 0;
}
.mobile-menu-sheet .menu-header img {
  height: 28px;
  width: auto;
}
.mobile-menu-sheet .menu-header span {
  font-family: 'CalSans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
}
.mobile-menu-sheet .menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  opacity: 0.8;
}
.mobile-menu-sheet .menu-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.2s;
}
.mobile-menu-sheet .menu-list li a:active { background: #F3F4F6; }
.mobile-menu-sheet .menu-list li a i {
  width: 20px;
  color: #9CA3AF;
  font-size: 16px;
}

.mobile-menu-sheet .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-sheet .menu-label {
  font-family: 'CalSans', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 16px 6px;
  border-bottom: none;
}

/* ── Mobile Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
  .hamburger { display: none; }

  /* Mobile nav center - only Products */
  .nav-center { display: flex; position: static; height: auto; background: none; flex-direction: row; padding: 0; overflow: visible; flex: 1 1 auto; justify-content: center; }
  .nav-center.active { display: flex; }
  .nav-links { flex-direction: row; gap: 0; width: auto; transform: none; display: flex; align-items: center; }
  .nav-item { display: none; }
  .nav-item:nth-child(3) { display: block; position: relative; }
  .nav-link { display: block; padding: 0; font-size: 15px !important; text-align: center; border-bottom: none; color: #EBC569 !important; }
  .dropdown-menu { position: absolute; top: 100%; display: none; width: auto; border: none; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); background: #FFFFFF !important; padding: 4px 0; left: 50% !important; transform: translateX(-50%) !important; min-width: 200px; }
  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown.open .dropdown-menu,
  .nav-item.dropdown .dropdown-menu.show { display: block; }
  .nav-item.dropdown::after { display: none; }
  .dropdown-item { padding: 10px 20px; color: #374151 !important; font-size: 14px; border-bottom: 1px solid #F3F4F6; white-space: nowrap; }
  .dropdown-item:hover { background: #F9FAFB; padding-left: 20px; color: #111827 !important; }

  /* Navbar compact */
  .navbar { padding: 0 10px; height: 56px; }
  .nav-container { height: 56px; }
  .nav-left { margin-left: 0; min-width: auto; gap: 2px; }
  .nav-logo { height: 30px; }
  .brand-name { display: block; font-size: 12px; color: #083335; margin-left: 0; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .navbar .cta-btn { display: none; }
  .nav-search img { width: 20px; height: 20px; }
  .nav-right { gap: 4px; }
  .nav-left, .nav-right { flex-basis: auto; }
  .nav-search { display: flex; }
  .navbar .hamburger { margin-right: 0; }

  /* Bottom nav */
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 60px; }

  /* Mobile search bar */
  .mobile-search-bar { display: block; }

  /* Category chips */
  .mobile-category-chips { display: flex; }

  /* Hide desktop homepage sections, show mobile */
  .home-hero .hero-slider,
  .home-hero .overlay,
  .home-hero > .hero-content { display: none !important; }
  .home-hero { min-height: 0; }
  .home-hero::before { display: none; }
  .mobile-hero { display: flex; }

  /* Mobile category grid */
  .display-section { display: none !important; }
  .mobile-categories { display: block; }

  /* Mobile featured */
  .dp-section { display: none !important; }
  .mobile-featured-section { display: block; }

  .trusted-section { padding: 20px 0 16px; }
  .carousel-title { font-size: 20px; }
  .carousel-divider { margin: 8px auto 12px; }

  .vt-industries-header h2 { font-size: 24px; }
  .vt-industry-content h3 { font-size: 24px; }

  /* Why choose mobile */
  .why-choose .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-choose .feature-item.active::after { display: none; }
  .why-choose .section-title { font-size: 22px; }
  .why-choose .content-card { flex-direction: column; min-height: 0; padding: 16px; }
  .why-choose .content-left { flex: 1 1 auto; width: 100%; max-width: 100%; }
  .why-choose .content-right { flex: 1 1 auto; width: 100%; max-width: 100%; }
  .why-choose .panel-image { min-height: 160px; }

  /* Hero responsive */
  .hero-content { padding: 20px 16px; max-width: 100%; transform: none; margin-top: 0; }
  .hero-heading, .hero-locked .hero-heading { font-size: 24px; line-height: 30px; }
  .hero-subtext, .hero-locked .hero-subtext { font-size: 14px; line-height: 20px; max-width: 100%; }
  .hero-pill { font-size: 12px; padding: 3px 8px; margin-top: 0; }
  .hero-metrics { flex-wrap: wrap; gap: 8px; }
  .metric-card { padding: 8px 12px; }
  .metric-number { font-size: 20px; line-height: 20px; }
  .metric-label { font-size: 11px; }
  .hero-locked .hero-content { padding: 20px 16px; }
  .home-hero .hero-content { top: auto; left: auto; }
  .hero-inner { padding-left: 0; }
  .home-hero { min-height: 0; }

  /* Product grid mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-grid-card { width: 100%; height: auto; }
  .product-grid-card img { height: 120px; margin-top: 0; }
  .product-content { margin-top: 0; padding: 6px 8px 0; }
  .samsung-fix .product-content, .vu-vibe-fix .product-content, .vu-glo-fix .product-content,
  .vu-masterpiece-fix .product-content, .samsung-5th-fix .product-content, .qhfx-fix .product-content,
  .qh43c-fix .product-content, .qm43c-fix .product-content, .be43fx-fix .product-content,
  .vh55c-fix .product-content, .vmcr-fix .product-content, .vhce-fix .product-content,
  .vmce-fix .product-content, .vmbu-fix .product-content, .waf-fix .product-content,
  .hu700f-fix .product-content, .hu701f-fix .product-content, .hu800f-fix .product-content,
  .hbu800-fix .product-content, .lg-32lr571c-fix .product-content, .lg-43ut801c-fix .product-content,
  .lg-43ua831c-fix .product-content, .lg-43ul5q-fix .product-content { margin-top: 0; }
  .product-grid-card .product-cta { padding: 8px 10px 10px; }
  .quote-btn { min-width: 0; width: 100%; height: 34px; font-size: 13px; }
  .product-brand { font-size: 12px; }
  .product-model { font-size: 13px; }
  .product-title { font-size: 12px; -webkit-line-clamp: 2; }
  .product-usage { font-size: 11px; }
  .product-size { font-size: 13px; }
  .product-divider { margin: 4px 0 6px; }
  .no-products-card { padding: 20px; }

  /* Filter bar mobile */
  .fs-container { flex-direction: column; gap: 8px; padding: 0 12px; }
  .fs-right { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .fs-pills { flex-wrap: nowrap; }
  .fs-pill { font-size: 11px; padding: 4px 10px; white-space: nowrap; }
  .fs-select { font-size: 11px; padding: 4px 24px 4px 8px; }
  .fs-heading { font-size: 14px; }
  .fs-badge { font-size: 10px; }
  .fs-bar { top: 56px; }
  .filter-container { flex-direction: column; padding: 0 12px; }
  .filter-sidebar { width: 100%; }

  /* Show filter toggle on mobile */
  .filter-toggle-mobile {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
  }

  /* Product page mobile */
  .product-detail-section { grid-template-columns: 1fr; gap: 20px; padding: 0 12px; margin: 20px auto; }
  .product-image-slider { width: 100%; }
  .slider-viewport { width: 100%; height: auto; aspect-ratio: 623/351; }
  .product-image-slider .slider-track img { width: 100%; height: auto; }
  .product-image-wrapper { width: 100%; height: auto; }
  .product-details-content { max-width: 100%; padding-left: 0; }
  .product-title-main { white-space: normal; font-size: 20px; }
  .product-subtext { font-size: 14px; }
  .product-size-grid { max-width: 100%; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-cta-box { max-width: 100%; padding: 20px; }
  .product-cta-btn { padding: 12px 30px; font-size: 15px; }

  /* Product page compact actions */
  .product-carousel-banner { height: 200px; border-radius: 10px; }
  .product-hero { margin-top: 56px; }
  .product-hero-title { font-size: 22px; }
  .product-hero-subtext { font-size: 14px; }
  .slide-content { left: 16px; max-width: 80%; }
  .slide-content h2 { font-size: 22px; line-height: 28px; }
  .slide-content p { font-size: 12px; }

  .product-cards-row { width: 100%; flex-direction: column; align-items: center; padding: 0 12px; gap: 14px; }
  .product-card { width: 100%; max-width: 100%; height: 180px; }

  /* Footer mobile */
  .footer { padding: 20px 12px 20px; }
  .footer-container { grid-template-columns: 1fr; gap: 0; }
  .footer h3, .footer h4 { font-size: 14px; white-space: normal; margin: 0; padding: 12px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; -webkit-tap-highlight-color: transparent; }
  .footer h3::after, .footer h4::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 12px; transition: transform 0.2s; }
  .footer h3.open::after, .footer h4.open::after { transform: rotate(180deg); }
  .footer .footer-col { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer .footer-col:first-child { border-bottom: none; }
  .footer .footer-col:first-child h3 { cursor: default; }
  .footer .footer-col:first-child h3::after { display: none; }
  .footer p, .footer .footer-col p, .footer ul li { font-size: 13px; }
  .footer .footer-col ul { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0; margin: 0; }
  .footer .footer-col ul.open { max-height: 300px; padding: 0 0 12px; }
  .footer .footer-col p:not(.legal):not(.tagline) { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0; margin: 0; }
  .footer .footer-col p:not(.legal):not(.tagline).open { max-height: 200px; padding: 0 0 12px; }
  .footer .footer-col:first-child p:not(.legal):not(.tagline) { max-height: none; overflow: visible; padding: 0 0 8px; margin: 0; }
  .footer .footer-col:first-child .footer-social { padding: 0 0 8px; }
  .footer-bottom { margin-top: 16px; }
  .footer-bottom p { font-size: 12px; }
  .footer-seo { padding: 8px 0 0; }
  .footer-seo p { font-size: 11px; }
  .footer .footer-col p.contact-info { white-space: normal; max-width: 100%; }

  /* Industries mobile */
  .industries-section { padding: 20px 16px; }
  .industries-title { font-size: 20px; }
  .industries-subtext { font-size: 13px; }
  .industries-content { grid-template-columns: 1fr; gap: 16px; }
  .industries-left { max-width: 100%; }
  .industry-block { grid-template-columns: 1fr; gap: 16px; }
  .industry-block:nth-of-type(even) { grid-template-columns: 1fr; }
  .industry-image { width: 100%; transform: none; justify-self: center; }
  .industry-content h3 { font-size: 20px; }
  .industry-content .intro { font-size: 13px; line-height: 20px; }
  .industry-content .desc { font-size: 13px; line-height: 20px; }
  .industries-header { margin-left: 0; }
  .industries-title { margin-left: 0; }
  .industries-subtext { margin-left: 0; }
  .industry-heading { font-size: 20px; line-height: 26px; }
  .industry-text { font-size: 13px; line-height: 20px; }

  .industry-row { grid-template-columns: 1fr; gap: 16px; }
  .industry-row.reverse { direction: ltr; }
  .industry-text { max-width: 100%; }
  .first-industry-row .text-card { flex: 0 0 100% !important; max-width: 100% !important; }
  .first-industry-row .image-card { flex: 0 0 100% !important; max-width: 100% !important; }
  .industry-row.first-industry-row { flex-direction: column; gap: 16px; }
  .first-industry-row .text-card p:not(.industry-subtext):not(.industry-desc) { max-width: 100%; }
  .first-industry-row .text-card h3:not(.industry-title) { font-size: 20px; }
  .vt-industry-block { grid-template-columns: 1fr; gap: 16px; }
  .vt-industry-block.vt-reverse { grid-template-columns: 1fr; }
  .vt-industry-media { max-width: 100%; justify-self: center; }
  .vt-industry-block.vt-reverse .vt-industry-content { order: 1; }
  .vt-industry-block.vt-reverse .vt-industry-media { order: 2; }
  .vt-industry-content h3 { font-size: 20px; }
  .vt-industries-header h2 { font-size: 22px; }
  .vt-industries-header p { font-size: 13px; }
  .vt-intro, .vt-desc { font-size: 13px; }
  .vt-industry-media img { height: 160px; }

  /* Content sections mobile */
  .context-section { padding: 20px 16px; }
  .context-title { font-size: 18px; }
  .context-tagline { font-size: 14px; }
  .context-para { font-size: 13px; }
  .context-box { padding: 16px; }
  .context-box-title { font-size: 15px; }
  .context-box-para { font-size: 13px; }
  .feature-section { padding: 20px 16px; }
  .feature-title { font-size: 16px; }
  .feature-text { font-size: 13px; line-height: 1.5; }
  .feature-box { padding: 16px; }
  .feature-list li { font-size: 13px; }

  .about-section { padding: 20px 16px; }
  .info-banner { padding: 12px; margin: 12px 10px; }
  .info-banner h1 { font-size: 16px; }
  .info-banner p { font-size: 12px; }

  .navbar-content { padding: 0 10px; }
  .product-nav-title { font-size: 14px; margin-left: 8px; }
  .contact-btn { padding: 6px 16px; font-size: 13px; }

  .section-divider--bottom .divider-line { max-width: 100%; }

  /* Modal mobile */
  .modal-content { padding: 40px 8px 12px; }
  .quote-modal { padding: 24px 16px; }
  .quote-modal h2 { font-size: 18px; }
  .quote-modal .btn-submit { font-size: 14px; }

  .search-container { top: 56px; width: 92vw; }
  .search-input { padding: 10px 14px; font-size: 14px; }

  .split-section { flex-direction: column; gap: 20px; }
  .split-text, .split-image { width: 100%; }
  .split-image { height: 200px; }

  /* Tablet industries */
  .industries-header { margin-left: 0; }
  .industries-title { margin-left: 0; }
  .industries-subtext { margin-left: 0; }

  /* Logo carousel */
  .logo-carousel-section { height: 140px; }
  .client-track { height: 70px; }
  .client-item img { max-height: 50px; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 12px; }
  .mobile-categories .mob-cat-grid { gap: 6px; }
  .mob-cat-card img { height: 60px; }
  .mobile-hero { padding: 16px 16px; min-height: 25vh; background-position: 30% center; }
  .mobile-hero h1 { font-size: 22px; }
  .mobile-hero p { font-size: 12px; margin-bottom: 12px; }
  .mobile-hero-btn { padding: 8px 18px; font-size: 13px; }
  .mobile-featured-section { padding: 10px; }
  .mob-product-card img { width: 100px; height: 100px; }
  .product-grid-card img { height: 100px; }
  .product-carousel-banner { height: 140px; }
  .slider-viewport { aspect-ratio: 4/3; }
  .why-choose .section-title { font-size: 20px; }
  .industries-header h2 { font-size: 20px; }
  .vt-industries-header h2 { font-size: 20px; }
}

@media (max-width: 400px) {
  .mobile-hero h1 { font-size: 18px; }
  .mobile-hero p { font-size: 11px; }
  .mobile-hero { min-height: 22vh; padding: 12px 12px; }
  .mobile-category-chips .chip { font-size: 10px; padding: 4px 8px; }
  .mob-cat-card .mob-cat-body h4 { font-size: 11px; }
  .mob-cat-card .mob-cat-body p { font-size: 10px; }
  .mob-cat-card img { height: 50px; }
  .product-grid-card img { height: 80px; }
  .product-nav-title { font-size: 12px; }
  .mobile-search-bar .mobile-search-inner { padding: 10px 12px; }
  .mobile-search-bar .mobile-search-inner input { font-size: 13px; }
}





