/* =========================================================
   Shree Cables — Modern White / Orange-Brown Design System
   ========================================================= */

:root {
  --sc-primary: #E85D04;
  --sc-primary-dark: #C44D03;
  --sc-primary-soft: rgba(232, 93, 4, 0.12);
  --sc-brown: #8B4513;
  --sc-copper: #C97A3D;
  --sc-secondary: #8B4513;
  --sc-accent: #C97A3D;
  --sc-ink: #2B2118;
  --sc-text: #5C5148;
  --sc-muted: #8A7D72;
  --sc-surface: #ffffff;
  --sc-surface-alt: #F7F3EE;
  --sc-surface-warm: #F7F3EE;
  --sc-border: rgba(139, 69, 19, 0.12);
  --sc-shadow-sm: 0 4px 16px rgba(43, 33, 24, 0.06);
  --sc-shadow-md: 0 12px 40px rgba(43, 33, 24, 0.1);
  --sc-shadow-lg: 0 24px 60px rgba(43, 33, 24, 0.12);
  --sc-radius: 12px;
  --sc-radius-sm: 8px;
  --sc-radius-lg: 18px;
  --sc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sc-font-display: "Outfit", sans-serif;
  --sc-font-body: "Inter", sans-serif;
  --sc-glow: 0 0 32px rgba(232, 93, 4, 0.22);
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  color: var(--sc-text) !important;
  font-family: var(--sc-font-body) !important;
  font-weight: 400;
  background-color: #ffffff !important;
  background-image: none !important;
  -webkit-font-smoothing: antialiased;
}

.sc-site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #ffffff;
}

.sc-site-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  transform: scale(1.02);
}

.sc-site-bg__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 69, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 69, 19, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 40%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 40%, #000 100%);
  opacity: 0.55;
}

.wrapper {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading__title {
  font-family: var(--sc-font-display) !important;
  color: var(--sc-ink) !important;
  letter-spacing: -0.02em;
}

.heading__subtitle {
  color: var(--sc-primary) !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px !important;
}

.heading-2 .heading__title {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem) !important;
  line-height: 1.25;
}

.heading__desc,
.about__text p {
  color: var(--sc-text) !important;
  line-height: 1.8;
  font-size: 15.5px;
}

/* Light surfaces */
.about,
.about-layout2,
.features-numberd,
.testimonials,
.contact,
.text-content-section,
.privacy,
.faqs,
.quality-page>section:not(.sc-page-header),
.applications-page>section:not(.sc-page-header),
.products-page>section:not(.sc-page-header),
.product-detail-page>section:not(.sc-page-header) {
  background-color: rgba(255, 255, 255, 0.92) !important;
}

.bg-gray,
.home-highlights,
.services.bg-gray,
.quality-page .bg-gray,
.products-page .bg-gray,
.sc-section-sand {
  background: var(--sc-surface-alt) !important;
}

/* Home About — warm sand band */
#aboutLayout2.about-layout2 {
  background: var(--sc-surface-alt) !important;
  border-top: 1px solid var(--sc-border);
  border-bottom: 1px solid var(--sc-border);
}

@keyframes sc-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

/* ---------- Solid white header ---------- */
.header {
  position: relative;
  z-index: 1050;
}

.header.header-transparent .navbar,
.header .navbar {
  background: #fff !important;
  border-bottom: 1px solid var(--sc-border) !important;
  box-shadow: none !important;
}

.header .navbar.fixed-navbar,
.header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--sc-shadow-sm) !important;
  min-height: 80px;
}

.header .navbar {
  min-height: 80px;
}

.btn__secondary.btn__bordered,
.sc-hero-video .btn__secondary {
  background: transparent !important;
  border: 2px solid var(--sc-brown) !important;
  color: var(--sc-brown) !important;
  box-shadow: none !important;
}

.btn__secondary.btn__bordered:hover,
.sc-hero-video .btn__secondary:hover {
  background: var(--sc-brown) !important;
  color: #fff !important;
}

.bg-gray {
  background-color: var(--sc-surface-alt) !important;
}

.widget-help.bg-overlay,
.widget.widget-help {
  background: var(--sc-surface-alt) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: var(--sc-radius) !important;
  color: var(--sc-ink) !important;
}

.widget-help.bg-overlay::before,
.widget-help .bg-img {
  display: none !important;
}

.widget-help .widget__title,
.widget-help p,
.widget-help .btn {
  color: var(--sc-ink) !important;
}

.widget-help .btn__primary {
  color: #fff !important;
}

.widget-help .widget__content h5 {
  color: var(--sc-ink) !important;
}

.widget-help .widget__icon {
  color: var(--sc-primary) !important;
}

.widget-help .btn__link {
  color: var(--sc-primary) !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff !important;
    border: 1px solid var(--sc-border);
    border-radius: var(--sc-radius);
    margin-top: 12px;
    padding: 12px 16px 20px;
    box-shadow: var(--sc-shadow-md);
  }

  .navbar .nav__item-link {
    padding: 12px 8px !important;
  }

  .navbar .nav__item-link::after {
    bottom: 8px;
  }
}

.header .logo-light {
  display: none !important;
}

.header .logo-dark {
  display: inline-block !important;
}

.navbar .nav__item-link,
.header .module__btn,
.header .module__btn-phone,
.header .module__btn-phone a {
  color: var(--sc-ink) !important;
  font-weight: 600 !important;
}

.navbar .nav__item-link {
  position: relative;
  font-size: 14px !important;
  transition: color 0.25s var(--sc-ease) !important;
}

.navbar .nav__item-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 0;
  height: 2px;
  background: var(--sc-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s var(--sc-ease);
}

.navbar .nav__item-link:hover,
.navbar .nav__item-link.active {
  color: var(--sc-primary) !important;
}

.navbar .nav__item-link:hover::after,
.navbar .nav__item-link.active::after {
  width: 70%;
}

.fixed-navbar .nav__item-link::after {
  bottom: 22px;
}

.module__btn-request,
.header .module__btn-request.btn__primary.btn__bordered {
  background: var(--sc-primary) !important;
  border: 2px solid var(--sc-primary) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.25);
}

.module__btn-request:hover,
.header .module__btn-request.btn__primary.btn__bordered:hover {
  background: var(--sc-primary-dark) !important;
  border-color: var(--sc-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn:not(.btn__link) {
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px !important;
  transition: transform 0.3s var(--sc-ease), box-shadow 0.3s var(--sc-ease), background-color 0.3s var(--sc-ease), border-color 0.3s var(--sc-ease), color 0.3s var(--sc-ease);
}

.btn__primary:not(.btn__link):not(.btn__bordered) {
  background: var(--sc-primary) !important;
  border-color: var(--sc-primary) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(232, 93, 4, 0.28);
}

.btn__primary:not(.btn__link):not(.btn__bordered):hover {
  background: var(--sc-primary-dark) !important;
  border-color: var(--sc-primary-dark) !important;
  transform: translateY(-2px);
}

.btn__secondary:not(.btn__link):not(.btn__bordered) {
  background: var(--sc-brown) !important;
  border-color: var(--sc-brown) !important;
  color: #fff !important;
}

.btn__secondary:not(.btn__link):not(.btn__bordered):hover {
  background: #6e3610 !important;
  border-color: #6e3610 !important;
  transform: translateY(-2px);
}

.btn__bordered {
  background: transparent !important;
  box-shadow: none !important;
}

.btn__primary.btn__bordered {
  border: 2px solid var(--sc-primary) !important;
  color: var(--sc-primary) !important;
}

.btn__primary.btn__bordered:hover {
  background: var(--sc-primary) !important;
  color: #fff !important;
}

.btn__white {
  background: #fff !important;
  color: var(--sc-ink) !important;
  border: 2px solid #fff !important;
}

.btn__white.btn__bordered {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
}

.btn__white.btn__bordered:hover {
  background: #fff !important;
  color: var(--sc-ink) !important;
}

.btn__link {
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

.btn__link.btn__primary {
  color: var(--sc-primary) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.btn__link.btn__secondary {
  color: var(--sc-brown) !important;
  background: transparent !important;
  border-color: transparent !important;
}

/* ---------- Light page header ---------- */
.sc-page-header {
  position: relative;
  padding: 140px 0 70px;
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(232, 93, 4, 0.08), transparent 60%),
    linear-gradient(180deg, #F7F3EE 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--sc-border);
  overflow: hidden;
}

.sc-page-header--photo {
  isolation: isolate;
  background: var(--sc-surface-alt);
}

.sc-page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sc-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sc-page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgb(222 102 23 / 30%);
}

.sc-page-header--photo .container {
  position: relative;
  z-index: 2;
}

.sc-page-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sc-primary), var(--sc-copper));
  z-index: 3;
  pointer-events: none;
}

.sc-page-header__eyebrow {
  display: inline-block;
  color: var(--sc-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sc-page-header__title {
  font-family: var(--sc-font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin: 0 0 14px;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.5);
}

.sc-page-header__desc {
  max-width: 640px;
  color: #fff !important;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.4);
}

.sc-page-header .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.sc-page-header .breadcrumb-item,
.sc-page-header .breadcrumb-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.sc-page-header .breadcrumb-item.active {
  color: #fff;
}

.sc-page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

@media (max-width: 991px) {
  .sc-page-header {
    padding: 120px 0 50px;
  }
}

/* ---------- Page banner (after page title) ---------- */
.sc-page-banner {
  position: relative;
  line-height: 0;
  background: #f7f3ee;
  border-bottom: 1px solid var(--sc-border);
  overflow: hidden;
}

.sc-page-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* ---------- Cards ---------- */
.highlight-card,
.mfg-process-card,
.home-product-card,
.products-page .product-card,
.quality-page .testing-card,
.applications-page .app-card,
.product-map-card {
  border-radius: var(--sc-radius) !important;
  border: 1px solid var(--sc-border) !important;
  box-shadow: var(--sc-shadow-sm);
  background: #fff !important;
  transition: transform 0.35s var(--sc-ease), box-shadow 0.35s var(--sc-ease), border-color 0.35s var(--sc-ease) !important;
}

.highlight-card:hover,
.mfg-process-card:hover,
.home-product-card:hover,
.products-page .product-card:hover,
.quality-page .testing-card:hover,
.applications-page .app-card:hover,
.product-map-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--sc-shadow-md) !important;
  border-color: rgba(232, 93, 4, 0.28) !important;
}

.home-about-visual__main,
.mfg-visual__main,
.about__img,
.product-gallery,
.quality-gallery img,
.achievement-img {
  border-radius: var(--sc-radius) !important;
  overflow: hidden;
}

/* ---------- Hero / Video banner ---------- */
.sc-hero-video {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 78vh;
  overflow: hidden;
  background: #1a1410;
}

.sc-hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sc-hero-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sc-hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(27, 26, 26, 0.72) 0%, rgba(43, 33, 24, 0.55) 45%, rgba(27, 26, 26, 0.35) 100%);
}

.sc-hero-video .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.sc-hero-video__content {
  position: relative;
  z-index: 1;
}

.sc-hero-video__title {
  font-family: var(--sc-font-display) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  margin: 0 0 18px;
}

.sc-hero-video__desc {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 28px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.sc-hero-video .btn__secondary {
  border-color: #fff !important;
  color: #fff !important;
}

.sc-hero-video .btn__secondary:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .sc-hero-video__video {
    display: none;
  }

  .sc-hero-video__media {
    background:
      url("../images/backgrounds/6.jpg") center / cover no-repeat;
  }
}

@media (max-width: 767px) {
  .sc-hero-video {
    min-height: 70vh;
  }

  .sc-hero-video .container {
    padding-top: 90px;
    padding-bottom: 48px;
  }
}

/* ---------- Light manufacturing (home) ---------- */
.mfg-excellence {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(201, 122, 61, 0.1), transparent 60%),
    radial-gradient(700px 380px at 88% 70%, rgba(232, 93, 4, 0.07), transparent 55%),
    var(--sc-surface-alt) !important;
  color: var(--sc-ink);
}

.mfg-excellence .mfg-copper-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mfg-excellence .mfg-copper-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 69, 19, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 69, 19, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  opacity: 0.55;
}

.mfg-excellence .mfg-copper-bg__svg {
  position: absolute;
  inset: -8% -4%;
  width: 108%;
  height: 116%;
  opacity: 0.75;
}

.mfg-excellence .copper-wire {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mfg-excellence .copper-wire--base {
  stroke: rgba(139, 69, 19, 0.22);
  stroke-width: 2.5;
}

.mfg-excellence .copper-wire--glow {
  stroke: url(#copperGradient);
  stroke-width: 3.5;
  filter: url(#copperGlow);
  stroke-dasharray: 18 220;
  animation: copper-flow 9s linear infinite;
}

.mfg-excellence .copper-wire--glow.delay-1 {
  animation-duration: 11s;
  animation-delay: -2.5s;
  stroke-width: 2.8;
}

.mfg-excellence .copper-wire--glow.delay-2 {
  animation-duration: 13s;
  animation-delay: -5s;
  stroke-width: 2.2;
}

.mfg-excellence .copper-coil {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201, 122, 61, 0.35);
  box-shadow:
    inset 0 0 18px rgba(232, 93, 4, 0.12),
    0 0 24px rgba(201, 122, 61, 0.15);
  animation: copper-coil-spin 18s linear infinite;
}

.mfg-excellence .copper-coil--1 {
  width: 160px;
  height: 160px;
  top: 12%;
  right: 6%;
  border-top-color: rgba(232, 93, 4, 0.45);
  border-left-color: rgba(201, 122, 61, 0.4);
}

.mfg-excellence .copper-coil--2 {
  width: 110px;
  height: 110px;
  bottom: 16%;
  left: 5%;
  animation-duration: 14s;
  animation-direction: reverse;
  border-bottom-color: rgba(232, 93, 4, 0.4);
}

.mfg-excellence .copper-coil--3 {
  width: 70px;
  height: 70px;
  top: 48%;
  left: 42%;
  opacity: 0.55;
  animation-duration: 22s;
}

.mfg-excellence .copper-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E85D04;
  box-shadow: 0 0 12px 4px rgba(232, 93, 4, 0.4);
  animation: copper-spark 4.5s ease-in-out infinite;
}

.mfg-excellence .copper-spark--1 {
  top: 22%;
  left: 18%;
}

.mfg-excellence .copper-spark--2 {
  top: 58%;
  right: 22%;
  animation-delay: -1.5s;
}

.mfg-excellence .copper-spark--3 {
  bottom: 24%;
  left: 55%;
  animation-delay: -3s;
}

@keyframes copper-flow {
  to {
    stroke-dashoffset: -480;
  }
}

@keyframes copper-coil-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes copper-spark {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.mfg-excellence>.container {
  position: relative;
  z-index: 1;
}

.mfg-excellence .mfg-process-heading {
  text-align: center;
  margin-bottom: 35px;
}

.mfg-excellence .mfg-process-heading span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.mfg-excellence .mfg-process-heading h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.mfg-excellence .mfg-process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -12px;
  margin-right: -12px;
}

.mfg-excellence .mfg-process-col {
  width: 16.666%;
  padding: 0 12px 24px;
}

.mfg-excellence .mfg-process-card {
  padding: 28px 16px 24px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mfg-excellence .mfg-process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mfg-excellence .mfg-process-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.mfg-excellence .mfg-process-card__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  max-width: 140px;
}

.mfg-excellence .mfg-visual {
  position: relative;
}

.mfg-excellence .mfg-visual__main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.mfg-excellence .mfg-visual__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 14px 18px;
  max-width: 220px;
  border-radius: 10px;
}

.mfg-excellence .mfg-visual__badge i {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}

.mfg-excellence .mfg-visual__badge span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.mfg-excellence .heading__title,
.mfg-excellence .mfg-process-heading h3,
.mfg-excellence .mfg-process-card__title {
  color: var(--sc-ink) !important;
}

.mfg-excellence .heading__desc {
  color: var(--sc-text) !important;
}

.mfg-excellence .heading__subtitle,
.mfg-excellence .mfg-process-heading span {
  color: var(--sc-primary) !important;
}

.mfg-excellence .mfg-process-card {
  background: #fff !important;
  border: 1px solid var(--sc-border) !important;
}

.mfg-excellence .mfg-process-card__num {
  background: var(--sc-primary-soft);
  color: var(--sc-primary);
}

.mfg-excellence .mfg-process-card__icon {
  background: rgba(201, 122, 61, 0.1);
  border: 1px solid rgba(201, 122, 61, 0.25);
  color: var(--sc-copper);
}

.mfg-excellence .mfg-process-card:hover .mfg-process-card__icon {
  background: var(--sc-primary);
  border-color: var(--sc-primary);
  color: #fff;
}

.mfg-excellence .mfg-visual__main {
  border: 1px solid var(--sc-border);
  background: #fff;
  box-shadow: var(--sc-shadow-md);
}

.mfg-excellence .mfg-visual__badge {
  background: #fff;
  border: 1px solid var(--sc-border);
  color: var(--sc-ink);
}

.mfg-excellence .mfg-visual__badge span {
  color: var(--sc-ink);
}

.mfg-excellence .mfg-visual__badge i {
  color: var(--sc-primary);
}

.mfg-excellence .btn__secondary {
  background: var(--sc-primary) !important;
  border-color: var(--sc-primary) !important;
  color: #fff !important;
}

@media (max-width: 1199px) {
  .mfg-excellence .mfg-process-col {
    width: 33.333%;
  }
}

@media (max-width: 767px) {
  .mfg-excellence .mfg-process-col {
    width: 50%;
  }

  .mfg-excellence .mfg-visual__main img {
    height: 260px;
  }

  .mfg-excellence .copper-coil--1,
  .mfg-excellence .copper-coil--3 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mfg-excellence .copper-wire--glow,
  .mfg-excellence .copper-coil,
  .mfg-excellence .copper-spark {
    animation: none !important;
  }
}

/* ---------- Light mid CTA ---------- */
.sc-mid-cta {
  padding: 80px 0;
  background:
    radial-gradient(600px 240px at 10% 50%, rgba(232, 93, 4, 0.08), transparent 60%),
    var(--sc-surface-alt);
  border-top: 1px solid var(--sc-border);
  border-bottom: 1px solid var(--sc-border);
}

.sc-mid-cta .heading__title {
  color: var(--sc-ink) !important;
}

.sc-mid-cta .heading__desc {
  color: var(--sc-text) !important;
}

/* ---------- Footer (light) ---------- */
.footer {
  background: var(--sc-surface-alt) !important;
  color: var(--sc-text) !important;
  border-top: 1px solid var(--sc-border);
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer__widget-title {
  color: var(--sc-ink) !important;
  letter-spacing: 0.04em;
}

.footer a,
.footer p,
.footer .color-gray,
.footer__widget-content,
.footer__widget-content p,
.footer__contact-phone a {
  color: var(--sc-text) !important;
}

.footer a:hover {
  color: var(--sc-primary) !important;
}

.footer__widget-nav a:hover {
  color: var(--sc-primary) !important;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--sc-border);
  background: #fff;
}

.footer-bottom img {
  max-height: 48px;
  width: auto;
}

.footer__copyright,
.footer__copyright p,
.footer__copyright a,
.footer__copyright-links a {
  color: var(--sc-muted) !important;
}

.footer__copyright a:hover {
  color: var(--sc-primary) !important;
}

/* ---------- Global CTA — Modern Premium Dark Copper Banner ---------- */
.site-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 85px 0 80px;
  color: #ffffff;
  background: var(--sc-ink);
  border-top: 1px solid var(--sc-border);
}

.site-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.site-cta__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 1.2s var(--sc-ease);
  filter: brightness(0.65) contrast(1.1);
}

.site-cta:hover .site-cta__bg img {
  transform: scale(1);
}

.site-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(20, 15, 12, 0.60) 0%,
      rgba(43, 33, 24, 0.55) 50%,
      rgba(20, 15, 12, 0.62) 100%);
}

.site-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.site-cta__glow--1 {
  top: -20%;
  left: 10%;
  width: 450px;
  height: 450px;
  background: rgba(232, 93, 4, 0.22);
}

.site-cta__glow--2 {
  bottom: -20%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: rgba(201, 122, 61, 0.18);
}

.site-cta__frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--sc-radius-lg);
  pointer-events: none;
  z-index: 1;
}

.site-cta .container {
  position: relative;
  z-index: 2;
}

.site-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(232, 93, 4, 0.16);
  border: 1px solid rgba(232, 93, 4, 0.35);
  border-radius: 999px;
  color: #FF9E5E;
  font-family: var(--sc-font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.15);
}

.site-cta__title {
  font-family: var(--sc-font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff !important;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.site-cta__text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 680px;
  margin: 0 auto 34px;
  font-weight: 400;
}

.site-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  margin-bottom: 38px;
}

.site-cta__btn {
  min-width: 200px;
  padding: 14px 28px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px !important;
  font-family: var(--sc-font-display);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--sc-ease) !important;
}

.site-cta__btn.btn__primary {
  background: linear-gradient(135deg, var(--sc-primary), var(--sc-primary-dark)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.4);
}

.site-cta__btn.btn__primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(232, 93, 4, 0.5);
  background: linear-gradient(135deg, #ff6b10, var(--sc-primary)) !important;
}

.site-cta__btn.btn__white.btn__bordered {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(8px);
}

.site-cta__btn.btn__white.btn__bordered:hover {
  background: #ffffff !important;
  color: var(--sc-ink) !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.site-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff !important;
  font-family: var(--sc-font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--sc-ease);
}

.site-cta__phone i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sc-primary);
  color: #ffffff;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.4);
  transition: transform 0.3s var(--sc-ease);
}

.site-cta__phone:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.site-cta__phone:hover i {
  transform: scale(1.1) rotate(5deg);
}

.site-cta__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin: 0;
  padding: 28px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.site-cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 16px;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-cta__trust li::before {
  content: "✓";
  font-weight: 700;
  color: #FF9E5E;
}

.site-cta__trust li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {

  .site-cta__bg img,
  .site-cta:hover .site-cta__bg img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* ---------- Forms / misc ---------- */
.form-control:focus {
  border-color: var(--sc-primary) !important;
  box-shadow: 0 0 0 3px var(--sc-primary-soft) !important;
}

#scrollTopBtn {
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--sc-primary), var(--sc-copper)) !important;
  box-shadow: var(--sc-glow);
}

.clients {
  background: var(--sc-surface-alt) !important;
  padding-top: 50px;
  padding-bottom: 50px;
}

.clients .client {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 14px 18px;
  margin: 4px 0;
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-sm);
  box-sizing: border-box;
}

.clients .client img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 84px !important;
  object-fit: contain !important;
  transform: none !important;
}

.clients .client:hover img {
  filter: grayscale(0) opacity(1);
  transform: none !important;
}

.product-detail-page .product-content-card,
.product-detail-page .sidebar-widget,
.product-detail-page .help-widget {
  border-radius: var(--sc-radius) !important;
  box-shadow: var(--sc-shadow-sm);
}

.product-detail-page .help-widget {
  background: linear-gradient(145deg, var(--sc-brown) 0%, #6e3610 100%) !important;
}

.product-detail-page .help-widget h5,
.product-detail-page .help-widget p {
  color: #fff !important;
}

.standards-strip__item,
.param-chip,
.meta-chip {
  border-radius: 999px !important;
}

.cta__banner {
  border-radius: var(--sc-radius) !important;
}

.quality-quote,
.applications-page .achievement-highlight {
  border-radius: var(--sc-radius) !important;
  box-shadow: var(--sc-shadow-sm);
}

/* Neutralize old dark page-title if any remain */
.page-title {
  background: var(--sc-surface-alt) !important;
}

.page-title .bg-img,
.page-title.bg-overlay::before,
.page-title::after {
  display: none !important;
}

.page-title .pagetitle__heading,
.page-title .pagetitle__subheading,
.page-title .pagetitle__desc {
  color: var(--sc-ink) !important;
}

.page-title .pagetitle__subheading {
  color: var(--sc-primary) !important;
}

.page-title .pagetitle__desc {
  color: var(--sc-text) !important;
}

.page-title .breadcrumb-item,
.page-title .breadcrumb-item a {
  color: var(--sc-muted) !important;
}

@media (max-width: 991px) {
  .site-cta {
    padding: 65px 0 60px;
  }

  .site-cta__title {
    font-size: 32px;
  }

  .site-cta__frame {
    inset: 10px;
  }
}

@media (max-width: 575px) {
  .site-cta {
    padding: 50px 0 45px;
  }

  .site-cta__title {
    font-size: 25px;
  }

  .site-cta__text {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .site-cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .site-cta__btn,
  .site-cta__phone {
    width: 100%;
    justify-content: center;
  }

  .site-cta__trust {
    gap: 8px 12px;
    padding-top: 22px;
  }

  .site-cta__trust li {
    font-size: 12px;
    padding: 5px 12px;
  }
}