:root {
  --ink: #171614;
  --muted: #6f6a63;
  --paper: #fbf7f0;
  --cream: #f3eadc;
  --white: #ffffff;
  --line: rgba(23, 22, 20, 0.1);
  --red: #b3272d;
  --red-dark: #7f1519;
  --copper: #c16e3f;
  --gold: #d8a948;
  --teal: #1c7b74;
  --blue: #315f84;
  --green: #5b7e45;
  --shadow: 0 24px 70px rgba(23, 22, 20, 0.14);
  --soft-shadow: 0 18px 45px rgba(23, 22, 20, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

::selection {
  color: var(--white);
  background: var(--red);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0.85rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-width: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--copper));
  box-shadow: 0 14px 32px rgba(179, 39, 45, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  transform: translateY(-1px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #171614;
  background: #fff;
}

.btn-orange {
  background-color: #ff7a00;
  color: #fff;
  border: 1px solid #ff7a00;
}
.btn-orange:hover, .btn-orange:focus {
  background-color: #e66e00;
  color: #fff;
  border-color: #e66e00;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

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

.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title h2,
.section-heading,
.quote-panel h2,
.quality-intro h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.section-title p,
.section-copy,
.quote-panel p,
.quality-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  padding: 0.65rem 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topbar-links a,
.topbar-links span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.98);
  box-shadow: 0 14px 40px rgba(23, 22, 20, 0.08);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: radial-gradient(circle at 28% 20%, var(--gold), var(--red) 60%, var(--ink));
  box-shadow: 0 16px 30px rgba(179, 39, 45, 0.24);
  flex: 0 0 auto;
}

.navbar-brand strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 900;
}

.navbar-brand small,
.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 0.25rem;
}

.nav-link {
  color: rgba(23, 22, 20, 0.74);
  font-size: 0.94rem;
  font-weight: 850;
  padding: 0.65rem 0.85rem !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--red);
  background: rgba(179, 39, 45, 0.08);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.header-btn {
  white-space: nowrap;
}

.hero-section {
  position: relative;
  background: var(--ink);
}

.hero-slide {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, calc(100vh - 145px), 780px);
  background-image: url("../img/gloves-manufacturing-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-slide-alt {
  background-position: center 45%;
}

.hero-slide-third {
  background-position: center 56%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.72) 36%, rgba(10, 9, 8, 0.38) 68%, rgba(10, 9, 8, 0.26) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.22), rgba(10, 9, 8, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.min-vh-hero {
  min-height: clamp(620px, calc(100vh - 145px), 780px);
  padding: 5rem 0 7rem;
}

.hero-content h1,
.hero-heading {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
  max-width: 920px;
}

.hero-content .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-trust i {
  color: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-indicators {
  right: auto;
  bottom: 40px;
  left: calc((100vw - min(1320px, 100vw - 24px)) / 2 + 12px);
  justify-content: flex-start;
  margin: 0;
  gap: 0.45rem;
}

.carousel-indicators [data-bs-target] {
  width: 36px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.carousel-indicators .active {
  width: 64px;
  background: var(--red);
}

.stats-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.hero-stats {
  position: relative;
  z-index: 10;
}

.stat-tile {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  padding: 1.45rem;
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.stat-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-tile.stat-red { background: linear-gradient(135deg, var(--red), #931218); }
.stat-tile.stat-blue { background: linear-gradient(135deg, var(--blue), #0b345b); }
.stat-tile.stat-gold { background: linear-gradient(135deg, var(--gold), #ad7e14); }
.stat-tile.stat-green { background: linear-gradient(135deg, var(--green), #0d5e2d); }

.stat-icon {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 6.5rem;
  opacity: 0.15;
  z-index: -1;
  transform: rotate(-15deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-tile:hover .stat-icon {
  transform: rotate(0deg) scale(1.15);
}

.stat-tile strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.stat-tile span {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.category-section {
  background:
    linear-gradient(180deg, var(--paper), var(--cream));
  padding-top: 150px;
}

.category-card {
  height: 100%;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card-media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream);
}

.category-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 8, 0.46));
}

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

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

.category-card-media span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.category-card-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.65rem;
}

.category-card-content > a {
  margin-top: auto;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -88px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.accent-red {
  --accent: var(--red);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-gold {
  --accent: var(--gold);
}

.accent-green {
  --accent: var(--green);
}

.category-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.category-card h3,
.process-step h3,
.quality-card h3,
.product-body h3 {
  font-size: 1.32rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.category-card p,
.process-step p,
.quality-card p,
.product-body p,
.testimonial-card p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.category-card a,
.product-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent, var(--red));
  font-weight: 900;
}

.about-band {
  background: var(--white);
}

.image-panel {
  position: relative;
  overflow: visible;
  border-radius: 8px;
}

.main-factory-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border: 4px solid var(--line) !important;
  border-radius: 8px;
}

.overlay-craft-img {
  position: absolute;
  width: 45%;
  height: 280px;
  object-fit: cover;
  bottom: -40px;
  left: -40px;
  z-index: 5;
  border: 6px solid var(--white) !important;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}
body.dark-theme .overlay-craft-img {
  border: 6px solid #1e1e1e !important;
}

@media (max-width: 991.98px) {
  .overlay-craft-img {
    width: 40%;
    height: 200px;
    bottom: -20px;
    left: -20px;
  }
}
@media (max-width: 575.98px) {
  .overlay-craft-img {
    display: none;
  }
}

.about-link-btn {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.about-link-btn:hover {
  color: var(--red);
  border-color: rgba(179, 39, 45, 0.45);
  background: rgba(179, 39, 45, 0.06);
}

.image-panel-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: calc(100% - 48px);
  color: #fff;
  background: rgba(23, 22, 20, 0.78);
  backdrop-filter: blur(16px);
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-weight: 900;
}

.image-panel-badge i {
  color: var(--gold);
}

.mini-feature {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-feature i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  flex: 0 0 auto;
}

.mini-feature h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 900;
}

.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.process-section {
  background:
    radial-gradient(circle at top left, rgba(179, 39, 45, 0.08), transparent 34%),
    linear-gradient(180deg, var(--cream), var(--paper));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.process-step {
  position: relative;
  min-height: 310px;
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.88);
}

.process-step span {
  color: rgba(179, 39, 45, 0.18);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
}

.process-step i {
  display: block;
  color: var(--red);
  font-size: 2rem;
  margin: 1.1rem 0;
}

.production-section {
  background: var(--white);
}

.production-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.production-card {
  min-height: 190px;
  padding: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.production-card.main {
  grid-column: 1 / -1;
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 22, 20, 0.92), rgba(49, 95, 132, 0.92)),
    url("../img/gloves-manufacturing-hero.png") center / cover;
}

.production-card.main i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 1.9rem;
  flex: 0 0 auto;
}

.production-card.main span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
}

.production-card.main strong {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.metric {
  display: block;
  color: var(--red);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
}

.production-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quality-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 22, 20, 0.92), rgba(28, 123, 116, 0.88)),
    url("../img/gloves-manufacturing-hero.png") center / cover fixed;
}

.quality-intro,
.quality-card {
  height: 100%;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.quality-intro p,
.quality-card p {
  color: rgba(255, 255, 255, 0.75);
}

.quality-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
}

.quality-card.highlight {
  background: rgba(28, 123, 116, 0.42);
}

.products-section {
  background: var(--paper);
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(193, 110, 63, 0.45);
}

.product-visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 22, 20, 0.84), rgba(23, 22, 20, 0.35)),
    url("../img/gloves-manufacturing-hero.png") center / cover;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.08) 42%, rgba(10, 9, 8, 0.48) 100%);
}

.product-visual > i {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 2.4rem;
}

.product-visual.motorbike {
  background-position: 68% 44%;
}

.product-visual.ski {
  background-position: 52% 45%;
}

.product-visual.driving {
  background-position: 76% 48%;
}

.product-visual.fancy {
  background-position: 60% 58%;
}

.product-visual.tactical {
  background-position: 44% 50%;
}

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

.product-body span,
.product-card-cta span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-cta {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(179, 39, 45, 0.92), rgba(28, 123, 116, 0.9)),
    url("../img/gloves-manufacturing-hero.png") center / cover;
}

.product-card-cta span,
.product-card-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.product-card-cta h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 800;
}

.capabilities-section {
  background: var(--white);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.capability-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(23, 22, 20, 0.05);
}

.capability-item i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.testimonials-section {
  background:
    linear-gradient(180deg, var(--cream), var(--paper));
}

.testimonial-card {
  height: 100%;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.testimonial-card > i {
  display: block;
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-card strong {
  display: block;
  font-weight: 900;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  background: var(--paper);
}

.quote-panel {
  overflow: hidden;
  color: #fff;
  padding: clamp(1.4rem, 4vw, 4rem);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(23, 22, 20, 0.9), rgba(23, 22, 20, 0.72)),
    url("../img/gloves-manufacturing-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quote-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form {
  padding: 1.4rem;
  color: #171614 !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.form-label {
  color: #171614 !important;
  font-size: 0.86rem;
  font-weight: 900;
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(23, 22, 20, 0.14);
  font-weight: 650;
  color: #171614;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(179, 39, 45, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(179, 39, 45, 0.12);
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at bottom right, rgba(216, 169, 72, 0.08), transparent 22%),
    linear-gradient(135deg, #071a2e 0%, #0d1f39 45%, #171614 100%);
  padding: 78px 0 30px;
}

.site-footer .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-intro-copy {
  max-width: 360px;
  margin: 1.15rem 0 0;
}

.footer-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-status-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-status-strip i {
  color: var(--gold);
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.site-footer a:not(.footer-brand) {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.55rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.footer-contact-panel {
  max-width: 440px;
}

.footer-contact-panel::before {
  content: none;
}

.footer-contact-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-contact-title i {
  color: #20d6df;
  font-size: 0.95rem;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border-bottom: 0;
}

.footer-contact-card > div {
  min-width: 0;
}

.footer-contact-card-wide {
  align-items: flex-start;
}

.footer-contact-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  align-self: flex-start;
  margin-top: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  font-size: 0.96rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.footer-contact-icon i {
  position: absolute;
  inset: 0;
  display: block;
  line-height: 1;
}

.footer-contact-icon i::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  vertical-align: 0;
}

.footer-contact-icon.phone {
  color: #52e5ec;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.28), rgba(8, 98, 117, 0.45));
}

.footer-contact-icon.phone-alt {
  color: #9cc3ff;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(37, 99, 235, 0.38));
}

.footer-contact-icon.email {
  color: #cdb7ff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(76, 29, 149, 0.45));
}

.footer-contact-icon.whatsapp {
  color: #76f0a3;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.26), rgba(21, 128, 61, 0.42));
}

.footer-contact-icon.location {
  color: #f8d85b;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.26), rgba(133, 77, 14, 0.4));
}

.footer-contact-card small {
  display: block;
  margin: 0 0 0.12rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-card a,
.footer-contact-card span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact-card a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:nth-child(1) { background: #3b5998; }
.social-links a:nth-child(2) { background: #E1306C; }
.social-links a:nth-child(3) { background: #0077b5; }
.social-links a:nth-child(4) { background: #25D366; }

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 28px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(179, 39, 45, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar-nav {
    padding: 0.5rem 0 1rem;
  }

  .header-btn {
    width: 100%;
  }

  .hero-slide,
  .min-vh-hero {
    min-height: 450px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 9, 8, 0.9), rgba(10, 9, 8, 0.56)),
      linear-gradient(180deg, rgba(10, 9, 8, 0.12), rgba(10, 9, 8, 0.76));
  }

  .carousel-indicators {
    bottom: 108px;
  }

  .category-section {
    padding-top: 130px;
  }

  .production-dashboard,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .quality-section {
    background-attachment: scroll;
  }

  .footer-bottom {
    flex-direction: column;
  }

  /* Mega Menu Mobile Behavior */
  .navbar-nav .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 10px 0 !important;
    border: none !important;
  }
  .mega-menu-item {
    padding: 10px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px;
  }
  .mega-menu-item .img-placeholder {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .footer-contact-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .footer-contact-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .footer-contact-card a,
  .footer-contact-card span {
    font-size: 0.86rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

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

  .section-title {
    margin-bottom: 34px;
  }

  .hero-slide,
  .min-vh-hero {
    min-height: 450px;
  }

  .hero-content h1,
  .hero-heading {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .carousel-indicators {
    bottom: 102px;
  }

  .hero-stats {
    margin-top: -62px;
  }

  .stat-tile {
    min-height: 132px;
    padding: 1rem;
  }

  .category-section {
    padding-top: 112px;
  }

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

  .process-step {
    min-height: auto;
  }

  .image-panel img {
    height: 420px;
  }

  .production-card.main {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-panel {
    margin: 0 -2px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand strong,
  .footer-brand strong {
    font-size: 1.06rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .min-vh-hero {
    padding-top: 4.7rem;
  }

  .hero-content .lead {
    font-size: 1rem;
  }

  .carousel-indicators {
    left: 12px;
  }

  .category-card,
  .quality-intro,
  .quality-card,
  .testimonial-card {
    padding: 1.35rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

/* --- NEW UX/UI STYLES --- */

/* Scrollbar & Selection */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: var(--copper);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* Dark Mode Theme */
body.dark-theme {
  --ink: #fbf7f0;
  --paper: #121212;
  --cream: #1e1e1e;
  --muted: #a0a0a0;
  --white: #1f1f1f;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --soft-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

body.dark-theme .navbar-brand strong,
body.dark-theme .footer-brand strong,
body.dark-theme .nav-link,
body.dark-theme .stat-tile {
  color: #fff;
}

body.dark-theme .site-header {
  background: rgba(18, 18, 18, 0.85);
}

body.dark-theme .site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.95);
}

body.dark-theme .topbar {
  background: #ff7a00;
  color: #fff;
}

body.dark-theme section {
  border-bottom: 1px solid rgba(255, 122, 0, 0.2);
}

.site-footer {
  border-top: 1px solid #ff7a00;
  border-bottom: none;
}

body.dark-theme .timeline-step:nth-child(1) .process-step {
  background: linear-gradient(145deg, rgba(179, 39, 45, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(179, 39, 45, 0.25);
}
body.dark-theme .timeline-step:nth-child(2) .process-step {
  background: linear-gradient(145deg, rgba(28, 123, 116, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(28, 123, 116, 0.25);
}
body.dark-theme .timeline-step:nth-child(3) .process-step {
  background: linear-gradient(145deg, rgba(49, 95, 132, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(49, 95, 132, 0.25);
}
body.dark-theme .timeline-step:nth-child(4) .process-step {
  background: linear-gradient(145deg, rgba(216, 169, 72, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(216, 169, 72, 0.25);
}
body.dark-theme .timeline-step:nth-child(5) .process-step {
  background: linear-gradient(145deg, rgba(111, 66, 193, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(111, 66, 193, 0.25);
}
body.dark-theme .timeline-step:nth-child(6) .process-step {
  background: linear-gradient(145deg, rgba(40, 167, 69, 0.12), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(40, 167, 69, 0.25);
}

/* Glassmorphism Header Enhancement */
.site-header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.85);
}

.info-bar-section {
  background: #000;
  border-top: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
  padding: 14px 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.info-marquee-container {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeInfo 25s linear infinite;
}
.info-marquee-container:hover {
  animation-play-state: paused;
}
.info-bar-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 40px;
}
.info-bar-item i {
  color: var(--gold);
  font-size: 1.4rem;
}
@keyframes marqueeInfo {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Overlapping Image Collage */
.overlapping-images-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 40px; 
  padding-right: 40px;
}
.overlapping-images-wrapper .main-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
}
.overlapping-images-wrapper .overlay-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  border-radius: 8px;
  border: 10px solid var(--white);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  z-index: 2;
}
body.dark-theme .overlapping-images-wrapper .overlay-img {
  border-color: var(--gold);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.85);
}

/* Split Section */
.split-section {
  background: #171614;
  color: #fff;
}
.split-image-side {
  position: relative;
  min-height: 500px;
}
.split-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.split-text-side {
  display: flex;
  align-items: center;
  padding: 80px 5%;
}
.split-content {
  max-width: 600px;
  margin: 0 auto;
}
.split-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.1;
  color: #fff;
}
.split-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}
.split-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}
.split-list li i {
  color: var(--gold);
  font-size: 1.25rem;
}

/* Hover Effects on Cards (Image Zoom) */
.product-card .product-visual,
.category-card,
.image-panel {
  overflow: hidden;
}
.product-card .product-visual {
  transition: background-size 0.4s ease;
}
.product-card:hover .product-visual {
  background-size: 105%;
}

/* Quick View Modal Styles */
.modal-content {
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.modal-header {
  border-bottom: 1px solid var(--line);
}
.modal-title {
  color: var(--ink);
  font-weight: 800;
}

/* Interactive Timeline (Process Section) */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--red);
  transform: translateX(-50%);
  opacity: 0.3;
}
.timeline-step {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding-right: 40px;
}
.timeline-step:nth-child(even) {
  left: 50%;
  padding-right: 0;
  padding-left: 40px;
}
.timeline-step .process-step {
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  height: 100%;
}
.timeline-step::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--red);
  border: 4px solid var(--paper);
  border-radius: 50%;
  z-index: 2;
}
.timeline-step:nth-child(even)::after {
  left: -10px;
}

@media (max-width: 767.98px) {
  .process-timeline::before {
    left: 20px;
  }
  .timeline-step {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    left: 0 !important;
  }
  .timeline-step::after {
    left: 10px !important;
  }
}

/* Testimonial Stars & Avatar */
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--muted);
}

/* Floating Labels & Multi-step for Contact Form */
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  min-height: auto;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--red);
}
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-step.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-widget:hover {
  transform: scale(1.1);
  color: white;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.36);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-indicator:hover {
  color: #fff;
  background: rgba(10, 9, 8, 0.6);
}
.scroll-indicator i {
  animation: scrollArrow 1.7s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

/* Mega Menu */
.mega-menu-container {
  position: static !important;
}
.navbar-nav .dropdown-menu.mega-menu {
  width: 100%;
  max-width: 800px;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px;
  background: var(--white);
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 15px;
}
body.dark-theme .dropdown-menu.mega-menu {
  background: var(--paper);
}
.mega-menu-item {
  text-align: center;
  padding: 15px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: block;
}
.mega-menu-item:hover {
  background: rgba(179, 39, 45, 0.05);
}
.mega-menu-item .img-placeholder {
  height: 90px;
  width: 100%;
  background: var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.5rem;
}
.mega-menu-item span {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
}

/* Dark Mode Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.theme-toggle-btn:hover {
  background: var(--white);
  color: var(--ink);
}

/* Product actions & utilities */
.product-visual { position: relative; overflow: hidden; }
.product-image-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.product-chip-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.68);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.product-chip-btn i {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  font-size: inherit;
}
.product-chip-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.product-chip-btn:focus-visible,
.product-action-link:focus-visible {
  outline: 3px solid rgba(216, 169, 72, 0.7);
  outline-offset: 2px;
}
.product-card-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 1.25rem;
}
.product-action-link {
  min-height: 42px;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.product-action-link:hover {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(193, 110, 63, 0.55);
  transform: translateY(-1px);
}
.product-action-link[data-action="quote"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--copper));
  box-shadow: 0 10px 22px rgba(179, 39, 45, 0.2);
}
.product-action-link[data-action="quote"]:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}
.product-desc {
  min-height: 0 !important;
  max-height: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 0;
}
.header-utilities .utility-btn { position: relative; }
.utility-count {
  position: absolute; top: -6px; right: -6px; background: var(--primary); color: #fff;
  font-size: 0.65rem; min-width: 18px; height: 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
}
.panel-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.panel-item { padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.compare-table th, .compare-table td { vertical-align: top; font-size: 0.85rem; }
.cms-page-content .cms-content p { color: var(--muted); line-height: 1.7; }
.cms-page-content .cms-content h2, .cms-page-content .cms-content h3 { margin-top: 1.5rem; }
.category-hero .section-heading { color: var(--ink); }
body.dark-theme .category-hero .section-heading { color: #fff; }

/* Improve text-muted visibility in dark theme */
body.dark-theme .text-muted {
  color: var(--muted) !important;
}

/* Cloud Zoom (Mirror Zoom) Styles */
.zoom-container {
  position: relative;
  width: 100%;
}
.zoom-box {
  position: relative;
  cursor: crosshair;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-box img {
  width: 100%;
  height: auto;
  display: block;
}
.zoom-lens {
  position: absolute;
  border: 2px solid var(--gold);
  background: rgba(216, 169, 72, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 120px;
  height: 120px;
  display: none;
  pointer-events: none;
  z-index: 10;
  border-radius: 4px;
}
.zoom-result {
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
  background-repeat: no-repeat;
  background-color: var(--cream);
  box-shadow: var(--shadow);
  pointer-events: none;
  border-radius: 12px;
  border: 2px solid var(--gold);
}
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.gallery-thumb:hover {
  transform: translateY(-2px);
}
.gallery-thumb.active {
  border-color: var(--red);
}
@media (max-width: 991.98px) {
  .zoom-result {
    display: none !important;
  }
  .zoom-box {
    cursor: default;
  }
}

/* Dark Theme Form Styling & Input Contrast Fixes */
body.dark-theme .contact-form {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}
body.dark-theme .contact-form .form-label {
  color: var(--ink) !important;
}
body.dark-theme .form-control,
body.dark-theme .form-select {
  color: var(--ink) !important;
  background-color: var(--cream) !important;
  border-color: var(--line) !important;
}
body.dark-theme .form-control::placeholder {
  color: var(--muted) !important;
}

/* Categories Sidebar Vertical Menu Styling */
.category-sidebar-menu {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #171614 !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.category-sidebar-menu .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(179, 39, 45, 0.35), rgba(193, 110, 63, 0.14)),
    rgba(255, 255, 255, 0.04);
  letter-spacing: 0;
}

.category-sidebar-menu .card-header i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--copper));
  box-shadow: 0 12px 28px rgba(179, 39, 45, 0.24);
}

.category-sidebar-menu .list-group {
  gap: 0.45rem;
  padding: 0.75rem;
  background: transparent;
}

.category-sidebar-menu .list-group-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045) !important;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.category-sidebar-menu .list-group-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--copper));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.category-sidebar-menu .list-group-item:hover {
  transform: translateX(4px);
  border-color: rgba(216, 169, 72, 0.34) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.category-sidebar-menu .list-group-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 56px;
  padding: 0.75rem 0.95rem;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.category-sidebar-menu .list-group-item a::after {
  content: "\F285";
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-family: "bootstrap-icons";
  font-size: 0.82rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.category-sidebar-menu .list-group-item a i {
  display: inline-grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 1.08rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.category-sidebar-menu .list-group-item:hover a {
  color: #fff !important;
}

.category-sidebar-menu .list-group-item:hover a::after {
  color: var(--gold);
  transform: translateX(2px);
}

.category-sidebar-menu .list-group-item:hover a i {
  transform: scale(1.06);
  background: rgba(216, 169, 72, 0.18);
}

.category-sidebar-menu .list-group-item.active-category {
  border-color: rgba(179, 39, 45, 0.45) !important;
  background:
    linear-gradient(135deg, rgba(179, 39, 45, 0.26), rgba(193, 110, 63, 0.12)),
    rgba(255, 255, 255, 0.06) !important;
}

.category-sidebar-menu .list-group-item.active-category::before {
  opacity: 1;
}

.category-sidebar-menu .list-group-item.active-category a {
  color: #fff !important;
}

.category-sidebar-menu .list-group-item.active-category a i {
  background: linear-gradient(135deg, var(--red), var(--copper));
  box-shadow: 0 10px 24px rgba(179, 39, 45, 0.24);
}

.category-sidebar-menu .list-group-item.active-category a::after {
  color: var(--gold);
}

@media (max-width: 991.98px) {
  .category-sidebar-menu {
    position: static;
  }
}

/* Footer Bar Marquee */
.footer-bar-section {
  background: #000;
  border-top: 2px solid var(--red) !important;
  border-bottom: 2px solid var(--red) !important;
  padding: 14px 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.footer-marquee-container {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeFooter 20s linear infinite;
}
.footer-marquee-container:hover {
  animation-play-state: paused;
}
.footer-marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 40px;
}
.footer-marquee-item i {
  color: var(--red);
  font-size: 1.25rem;
}
@keyframes marqueeFooter {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ Accordion Styling overrides */
#faqAccordion .accordion-item {
  border-bottom: 1px solid var(--line) !important;
  border-top: none;
  border-left: none;
  border-right: none;
}
#faqAccordion .accordion-button {
  box-shadow: none !important;
  transition: padding-left 0.25s ease, color 0.25s ease;
  border-width: 0;
}
#faqAccordion .accordion-button:not(.collapsed) {
  color: var(--red) !important;
  background-color: transparent !important;
}
#faqAccordion .accordion-button:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}
#faqAccordion .accordion-button::after {
  filter: invert(1) !important;
}
#faqAccordion .accordion-button:hover {
  padding-left: 12px;
}

/* Hotspots Styling */
.hotspots-image-wrapper {
  position: relative;
}
.hotspot-pin {
  width: 32px;
  height: 32px;
  z-index: 10;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.hotspot-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  top: 4px;
  left: 4px;
  z-index: 2;
  border: 2px solid #fff;
  transition: background-color 0.2s ease;
}
.hotspot-pulse {
  position: absolute;
  width: 32px;
  height: 32px;
  background: rgba(179, 39, 45, 0.4);
  border-radius: 50%;
  animation: pulseHotspot 1.8s infinite ease-in-out;
  z-index: 1;
}
@keyframes pulseHotspot {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.feature-item {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.feature-item:hover, .feature-item.highlighted {
  border-color: var(--red) !important;
  background: rgba(179, 39, 45, 0.05);
  transform: translateX(5px);
}
.hotspot-pin.active .hotspot-dot {
  background: var(--gold) !important;
}

/* Global Markets Section */
.text-gradient {
  background: linear-gradient(135deg, var(--red), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-blue-grad {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}
.bg-red-grad {
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
}
.bg-gold-grad {
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}
.bg-green-grad {
  background: linear-gradient(135deg, #10b981, #047857) !important;
}
.bg-blue { background-color: #3b82f6 !important; }
.bg-red { background-color: #ef4444 !important; }
.bg-gold { background-color: #f59e0b !important; }
.bg-green { background-color: #10b981 !important; }

.markets-intro-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(216, 169, 72, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.markets-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.markets-intro-copy h3 {
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
}

.markets-intro-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.markets-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.markets-mini-stat {
  padding: 0.9rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.markets-mini-stat strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.markets-mini-stat span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.market-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.market-card:hover, .market-card.active-market {
  transform: translateX(6px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.market-card:hover::before,
.market-card.active-market::before {
  opacity: 1;
}

.market-card.active-market#market-na { border-color: #3b82f6 !important; }
.market-card.active-market#market-eu { border-color: #ef4444 !important; }
.market-card.active-market#market-ap { border-color: #f59e0b !important; }
.market-card.active-market#market-asa { border-color: #10b981 !important; }
.market-card.active-market#market-na::before { background: linear-gradient(180deg, #60a5fa, #1d4ed8); }
.market-card.active-market#market-eu::before { background: linear-gradient(180deg, #f87171, #b91c1c); }
.market-card.active-market#market-ap::before { background: linear-gradient(180deg, #fbbf24, #d97706); }
.market-card.active-market#market-asa::before { background: linear-gradient(180deg, #34d399, #047857); }

.market-card-topline {
  gap: 0.75rem;
}

.market-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.market-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.market-meta-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.map-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(49, 95, 132, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(179, 39, 45, 0.22), transparent 26%),
    linear-gradient(160deg, rgba(8, 10, 13, 0.94), rgba(20, 24, 30, 0.96));
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.map-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.map-panel-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-card-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
}

.map-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.map-container {
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(19, 28, 40, 0.74), rgba(4, 5, 7, 0.98) 72%),
    #07090c;
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 52%, transparent 100%);
  opacity: 0.3;
}

.map-routes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  border-radius: 999px;
  opacity: 0.8;
}

.map-route::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
  box-shadow: 0 0 12px currentColor;
}

.map-route-na {
  top: 39%;
  left: 50%;
  width: 30%;
  color: rgba(96, 165, 250, 0.8);
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.95));
  transform: rotate(-168deg);
}

.map-route-eu {
  top: 38%;
  left: 50%;
  width: 7%;
  color: rgba(248, 113, 113, 0.88);
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.12), rgba(248, 113, 113, 0.95));
  transform: rotate(-132deg);
}

.map-route-africa {
  top: 45%;
  left: 50%;
  width: 14%;
  color: rgba(52, 211, 153, 0.8);
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.95));
  transform: rotate(108deg);
}

.map-route-apac {
  top: 43%;
  left: 50%;
  width: 16%;
  color: rgba(251, 191, 36, 0.88);
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.95));
  transform: rotate(-20deg);
}

.map-route-japan {
  top: 44%;
  left: 50%;
  width: 29%;
  color: rgba(251, 191, 36, 0.68);
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.03), rgba(251, 191, 36, 0.82));
  transform: rotate(-12deg);
}

.map-route-australia {
  top: 47%;
  left: 50%;
  width: 39%;
  color: rgba(251, 191, 36, 0.52);
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.03), rgba(251, 191, 36, 0.72));
  transform: rotate(31deg);
}

.map-world-shape {
  color: rgba(137, 148, 166, 0.32);
  opacity: 0.96;
}

/* Map Markers Styling */
.map-marker-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  z-index: 10;
  cursor: pointer;
  opacity: 0.66;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
.map-marker-pin:hover, .map-marker-pin.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.1));
}
.pin-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 14px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  top: 6px;
  left: 6px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.pin-pulse {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  opacity: 0.22;
  animation: pulsePin 2.2s infinite ease-in-out;
  z-index: 1;
}
@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.pin-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(11, 14, 18, 0.92);
  color: #fff;
  padding: 0.42rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}
.map-marker-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-panel-footer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  z-index: 3;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(9, 12, 16, 0.76);
  backdrop-filter: blur(10px);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 700;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.legend-blue { color: #60a5fa; background: #60a5fa; }
.legend-red { color: #f87171; background: #f87171; }
.legend-gold { color: #fbbf24; background: #fbbf24; }
.legend-green { color: #34d399; background: #34d399; }

.map-summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(9, 12, 16, 0.76);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

@media (max-width: 991.98px) {
  .markets-mini-stats {
    grid-template-columns: 1fr;
  }

  .map-card-header,
  .map-panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-panel-footer {
    position: static;
    margin-top: 1rem;
  }

  .map-container {
    height: 360px;
  }

  .map-route {
    display: none;
  }
}

/* Sparkle Showcase Section */
.vertical-display-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #1b4d75, #1cb5c2, #734bbd, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(180deg);
  line-height: 1;
}
.vertical-gradient-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, #1cb5c2, #734bbd);
}
.vertical-subtitle-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 0.4em;
  font-weight: 700;
  transform: rotate(180deg);
}

/* Sticky Floating Social Media Capsule */
.sticky-social-capsule {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(23, 32, 42, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 18px 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: left 0.3s ease;
}
.sticky-social-capsule .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #a0a0a0;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.sticky-social-capsule .social-icon:hover {
  transform: scale(1.15);
  color: #fff !important;
}
.sticky-social-capsule .social-icon.facebook:hover {
  background-color: #1877F2 !important;
}
.sticky-social-capsule .social-icon.instagram:hover {
  background-color: #E1306C !important;
}
.sticky-social-capsule .social-icon.youtube:hover {
  background-color: #FF0000 !important;
}
.sticky-social-capsule .social-icon.twitter-x:hover {
  background-color: #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.sticky-social-capsule .social-icon.whatsapp:hover {
  background-color: #25D366 !important;
}

@media (max-width: 767.98px) {
  .sticky-social-capsule {
    left: -52px;
  }
  .sticky-social-capsule:hover {
    left: 10px;
  }
}

.sticky-section-navigator {
  position: fixed;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(10, 13, 18, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.sticky-section-navigator .nav-dot {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sticky-section-navigator .nav-dot i {
  font-size: 1rem;
  line-height: 1;
}

.sticky-section-navigator .nav-dot:hover,
.sticky-section-navigator .nav-dot:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(-2px);
}

.sticky-section-navigator .highlight-dot {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--copper));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(179, 39, 45, 0.28);
}

.sticky-section-navigator .nav-dot.active-dot {
  background-color: #1cb5c2 !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(28, 181, 194, 0.6) !important;
}

@media (max-width: 991.98px) {
  .sticky-section-navigator {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .sticky-section-navigator {
    top: auto;
    right: 12px;
    bottom: 12px;
    transform: none;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: calc(100vw - 24px);
    padding: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
  }

  .sticky-section-navigator .nav-dot {
    flex: 0 0 auto;
  }
}

.vertical-title-panel {
  position: relative;
}

.showcase-content-wrapper {
  max-width: 100%;
}

.showcase-visual-layout {
  display: grid;
  grid-template-columns: minmax(72px, 110px) minmax(0, 1fr) minmax(88px, 126px);
  align-items: center;
  column-gap: 1rem;
}

.showcase-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  pointer-events: none;
}

.showcase-image-frame {
  min-width: 0;
}

.showcase-ghost-label,
.showcase-main-label {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
}

.showcase-ghost-label {
  display: block;
  font-size: clamp(3.75rem, 7vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  color: transparent;
}

.showcase-main-label {
  font-size: clamp(4.5rem, 8vw, 8rem);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #1b4d75, #1cb5c2, #734bbd, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vertical-ghost-text {
  position: absolute;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: clamp(6.5rem, 12vw, 12rem);
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  color: transparent;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  letter-spacing: 0.15em;
  pointer-events: none;
}

.vertical-display-text {
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .showcase-visual-layout {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .showcase-visual-side {
    display: none;
  }

  .showcase-image-frame {
    overflow: hidden;
  }
}
