/* WTW Bearings — Brand Styles */
:root {
  --wtw-navy: #0B1F3A;
  --wtw-navy-deep: #061428;
  --wtw-steel: #1E3A5F;
  --wtw-blue: #1A6BFF;
  --wtw-blue-soft: #5B9DFF;
  --wtw-slate: #4A5D73;
  --wtw-mist: #E8EEF6;
  --wtw-white: #FFFFFF;
  --wtw-accent: #E8782A;
  --wtw-font-display: "Syne", sans-serif;
  --wtw-font-body: "DM Sans", sans-serif;
  --wtw-radius: 4px;
  --wtw-shadow: 0 20px 50px rgba(11, 31, 58, 0.12);
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--wtw-font-body);
  color: var(--wtw-navy);
  background: var(--wtw-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--wtw-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

a {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* ---------- NAV ---------- */
.wtw-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  min-height: var(--nav-h);
}

.wtw-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.wtw-navbar .navbar-brand img {
  height: 42px;
  width: auto;
}

.wtw-navbar .nav-link {
  font-family: var(--wtw-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wtw-slate);
  padding: 0.5rem 0.9rem !important;
  position: relative;
}

.wtw-navbar .nav-link:hover,
.wtw-navbar .nav-link.active {
  color: var(--wtw-navy);
}

.wtw-nav-cta {
  color: white !important;
  background: var(--wtw-navy) !important;
  border-radius: var(--wtw-radius);
  padding: 0.55rem 1.15rem !important;
  margin-left: 0.35rem;
}

.wtw-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--wtw-blue);
  border-radius: 2px;
}

.wtw-nav-cta {
  background: var(--wtw-navy) !important;
  color: var(--wtw-white) !important;
  border-radius: var(--wtw-radius);
  padding: 0.55rem 1.15rem !important;
  margin-left: 0.35rem;
}

.wtw-nav-cta:hover {
  background: var(--wtw-blue) !important;
  color: var(--wtw-white) !important;
}

.wtw-nav-cta.active::after {
  display: none;
}

.navbar-toggler {
  border: 1px solid rgba(11, 31, 58, 0.15);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(26, 107, 255, 0.2);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(90vh - var(--nav-h));
  display: flex;
  align-items: center;
  color: var(--wtw-white);
  overflow: hidden;
  background: var(--wtw-navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 20, 40, 0.94) 0%, rgba(11, 31, 58, 0.82) 42%, rgba(11, 31, 58, 0.55) 68%, rgba(11, 31, 58, 0.35) 100%),
    url("../images/hero.svg") center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(26, 107, 255, 0.22), transparent 55%),
    repeating-linear-gradient(-12deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.02) 48px,
      rgba(255, 255, 255, 0.02) 49px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--wtw-font-display);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.hero-brand span {
  color: var(--wtw-blue-soft);
}

.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease 0.12s both;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.8s ease 0.32s both;
}

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

.hero-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-vector {
  position: absolute;
  background-color: #fff;
  opacity: 0.05;
  -webkit-mask: url("../images/bearing-vector.svg") center / contain no-repeat;
  mask: url("../images/bearing-vector.svg") center / contain no-repeat;
}

.hero-vector-1 {
  width: 220px;
  height: 220px;
  top: 12%;
  right: 8%;
  animation: bearingSpin 48s linear infinite;
}

.hero-vector-2 {
  width: 140px;
  height: 140px;
  bottom: 14%;
  right: 34%;
  opacity: 0.035;
  animation: bearingSpinReverse 60s linear infinite;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-visual-glow {
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 255, 0.28) 0%, rgba(26, 107, 255, 0.08) 42%, transparent 72%);
  filter: blur(8px);
  animation: heroGlowPulse 5s ease-in-out infinite;
}

.hero-banner-image {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
  animation: heroBannerFloat 6s ease-in-out infinite;
}

/* ---------- SECTION BEARING DECOR ---------- */
.section-with-bearings {
  position: relative;
  overflow: hidden;
}

.section-bearings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section-with-bearings .container {
  position: relative;
  z-index: 1;
}

.bearing-deco {
  position: absolute;
  -webkit-mask: url("../images/bearing-vector.svg") center / contain no-repeat;
  mask: url("../images/bearing-vector.svg") center / contain no-repeat;
}

.section-bearings-light .bearing-deco {
  background-color: var(--wtw-navy);
  opacity: 0.08;
}

.section-bearings-dark .bearing-deco {
  background-color: #fff;
  opacity: 0.09;
}

.section-bearings-light .bearing-deco-1 {
  width: 280px;
  height: 280px;
  top: -70px;
  right: -40px;
  animation: bearingSpin 70s linear infinite;
}

.section-bearings-light .bearing-deco-2 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  left: -30px;
  opacity: 0.04;
  animation: bearingSpinReverse 55s linear infinite;
}

.section-bearings-light .bearing-deco-3 {
  width: 120px;
  height: 120px;
  top: 42%;
  right: 18%;
  opacity: 0.035;
  animation: bearingSpin 90s linear infinite;
}

.section-bearings-dark .bearing-deco-1 {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -60px;
  opacity: 0.06;
  animation: bearingSpinReverse 80s linear infinite;
}

.section-bearings-dark .bearing-deco-2 {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: 6%;
  opacity: 0.05;
  animation: bearingSpin 65s linear infinite;
}

.section-bearings-dark .bearing-deco-3 {
  width: 140px;
  height: 140px;
  top: 18%;
  left: 42%;
  opacity: 0.04;
  animation: bearingSpinReverse 75s linear infinite;
}

.section-bearings-dark .bearing-deco-4 {
  width: 100px;
  height: 100px;
  bottom: 22%;
  right: 12%;
  opacity: 0.035;
  animation: bearingSpin 95s linear infinite;
}


/* ---------- PAGE HERO (inner) ---------- */
.page-hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  color: var(--wtw-white);
  background: var(--wtw-navy);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 40, 0.88), rgba(11, 31, 58, 0.7)),
    var(--page-hero-img, url("../images/about-hero.svg")) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(26, 107, 255, 0.25), transparent 50%);
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.7s ease both;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0;
  animation: fadeUp 0.7s ease 0.1s both;
}

/* ---------- BUTTONS ---------- */
.btn-wtw {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--wtw-blue);
  --bs-btn-border-color: var(--wtw-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0f57e0;
  --bs-btn-hover-border-color: #0f57e0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d4cc7;
  --bs-btn-active-border-color: #0d4cc7;
  font-weight: 600;
  border-radius: var(--wtw-radius);
  padding: 0.75rem 1.4rem;
}

.btn-wtw-outline {
  --bs-btn-color: #fff;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: rgba(255, 255, 255, 0.55);
  --bs-btn-hover-color: var(--wtw-navy);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  font-weight: 600;
  border-radius: var(--wtw-radius);
  padding: 0.75rem 1.4rem;
}

.btn-wtw-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--wtw-navy);
  --bs-btn-border-color: var(--wtw-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--wtw-blue);
  --bs-btn-hover-border-color: var(--wtw-blue);
  font-weight: 600;
  border-radius: var(--wtw-radius);
  padding: 0.7rem 1.35rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 5rem 0;
}

.section-mist {
  background:
    linear-gradient(180deg, var(--wtw-mist) 0%, #f4f7fb 100%);
  position: relative;
}

.section-navy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(26, 107, 255, 0.18), transparent 45%),
    linear-gradient(160deg, var(--wtw-navy-deep), var(--wtw-navy));
  color: var(--wtw-white);
  position: relative;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--wtw-slate);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-navy .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wtw-blue);
  margin-bottom: 0.65rem;
}

.section-navy .eyebrow {
  color: var(--wtw-blue-soft);
}

/* ---------- FEATURE BLOCKS ---------- */
.feature-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  padding: 0.25rem 0;
}

.feature-item .icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(26, 107, 255, 0.1);
  color: var(--wtw-blue);
  font-size: 1.4rem;
  border-radius: var(--wtw-radius);
  margin-bottom: 1.1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.feature-item p {
  color: var(--wtw-slate);
  margin: 0;
  font-size: 0.98rem;
}

/* ---------- SPLIT ---------- */
.split-media {
  border-radius: var(--wtw-radius);
  overflow: hidden;
  width: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--wtw-radius);
  background: var(--wtw-white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--wtw-shadow);
}

.product-tile .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-tile .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-tile:hover .media img {
  transform: scale(1.05);
}

.product-tile .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.product-tile p {
  color: var(--wtw-slate);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- HOME PRODUCT CAROUSEL ---------- */
.product-carousel-wrap {
  position: relative;
}

.product-carousel .item {
  height: 100%;
}

.product-carousel .product-tile {
  height: 100%;
  margin: 0;
}

.product-carousel.owl-carousel .owl-stage-outer {
  padding: 0.25rem 0 1rem;
}

.product-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}

.product-carousel.owl-carousel .owl-nav button.owl-prev,
.product-carousel.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: var(--wtw-radius);
  background: var(--wtw-white) !important;
  color: var(--wtw-navy) !important;
  border: 1px solid rgba(11, 31, 58, 0.12) !important;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  pointer-events: auto;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.product-carousel.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--wtw-blue) !important;
  color: var(--wtw-white) !important;
  border-color: var(--wtw-blue) !important;
}

.product-carousel.owl-carousel .owl-nav button.owl-prev {
  left: -12px;
}

.product-carousel.owl-carousel .owl-nav button.owl-next {
  right: -12px;
}

.product-carousel.owl-carousel .owl-dots {
  margin-top: 1.25rem;
}

.product-carousel.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px 6px;
  background: rgba(11, 31, 58, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.product-carousel.owl-carousel .owl-dots .owl-dot.active span,
.product-carousel.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--wtw-blue);
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  .product-carousel.owl-carousel .owl-nav button.owl-prev {
    left: 0;
  }

  .product-carousel.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
}


/* ---------- SERVICE LIST ---------- */
.service-block {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(11, 31, 58, 0.12);
}

.service-row {
  display: grid;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
  align-items: start;
  transition: background 0.25s ease;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 80px 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
  }
}

.service-num {
  font-family: var(--wtw-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wtw-blue);
}

.service-row h3 {
  font-size: 1.25rem;
  margin: 0;
}

.service-row p {
  color: var(--wtw-slate);
  margin: 0;
}

/* ---------- STATS ---------- */
.stats-strip {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 0;
}

@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--wtw-white);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 4rem 0;
  background:
    linear-gradient(110deg, var(--wtw-navy) 0%, var(--wtw-steel) 55%, #163a6e 100%);
  color: var(--wtw-white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  right: -80px;
  top: -120px;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  max-width: 420px;
}

/* ---------- CONTACT ---------- */
.contact-panel {
  background: var(--wtw-white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--wtw-radius);
  padding: 2rem;
  box-shadow: var(--wtw-shadow);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(26, 107, 255, 0.1);
  color: var(--wtw-blue);
  border-radius: var(--wtw-radius);
  font-size: 1.15rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--wtw-slate);
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--wtw-blue);
}

.form-control,
.form-select {
  border-radius: var(--wtw-radius);
  border-color: rgba(11, 31, 58, 0.15);
  padding: 0.75rem 0.95rem;
  font-size: 0.98rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--wtw-blue);
  box-shadow: 0 0 0 0.2rem rgba(26, 107, 255, 0.15);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wtw-navy);
}

.map-placeholder {
  min-height: 280px;
  border-radius: var(--wtw-radius);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.75), rgba(26, 107, 255, 0.35)),
    url("../images/map.svg") center / cover no-repeat;
  display: grid;
  place-items: center;
  color: var(--wtw-white);
  text-align: center;
  padding: 2rem;
}

/* ---------- ABOUT TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(26, 107, 255, 0.25);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.25rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wtw-blue);
  box-shadow: 0 0 0 4px rgba(26, 107, 255, 0.18);
}

.timeline-item .year {
  font-weight: 700;
  color: var(--wtw-blue);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: var(--wtw-slate);
  margin: 0;
}

/* ---------- FOOTER ---------- */
.wtw-footer {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(26, 107, 255, 0.12), transparent 42%),
    var(--wtw-navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding-bottom: 2.5rem;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wtw-blue-soft);
  transition: gap 0.2s ease, color 0.2s ease;
}

.footer-cta:hover {
  color: var(--wtw-white);
  gap: 0.65rem;
}

.footer-heading {
  color: var(--wtw-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--wtw-blue-soft);
  padding-left: 0.2rem;
}

.footer-links-grid {
  display: grid;
  gap: 0.55rem 1.5rem;
}

@media (min-width: 576px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 0;
  font-size: 0.88rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991.98px) {
  .wtw-footer {
    padding-top: 3.5rem;
  }

  .footer-brand {
    max-width: none;
    margin-bottom: 0.5rem;
  }
}

/* ---------- ADMIN ---------- */
.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--wtw-mist);
  padding: 2rem 1rem;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--wtw-white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--wtw-radius);
  padding: 2rem;
  box-shadow: var(--wtw-shadow);
}

.admin-page {
  min-height: 100vh;
  background: #f4f7fb;
}

.admin-topbar {
  background: var(--wtw-white);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-content {
  padding: 2rem 0 3rem;
}

.admin-empty {
  text-align: center;
  background: var(--wtw-white);
  border: 1px dashed rgba(11, 31, 58, 0.15);
  border-radius: var(--wtw-radius);
  padding: 4rem 2rem;
  color: var(--wtw-slate);
}

.admin-table-wrap {
  background: var(--wtw-white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--wtw-radius);
  box-shadow: var(--wtw-shadow);
}

.admin-table thead th {
  background: var(--wtw-mist);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wtw-slate);
  border-bottom-width: 1px;
  white-space: nowrap;
}

.admin-table td {
  font-size: 0.95rem;
  vertical-align: top;
}

.admin-message {
  min-width: 220px;
  max-width: 360px;
  color: var(--wtw-slate);
}

.admin-badge {
  background: rgba(26, 107, 255, 0.1);
  color: var(--wtw-blue);
  font-weight: 600;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes heroBannerFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroGlowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes bearingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bearingSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- UTIL ---------- */
.text-slate {
  color: var(--wtw-slate) !important;
}

.bg-dot-pattern {
  background-image: radial-gradient(rgba(11, 31, 58, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

@media (max-width: 991.98px) {
  .wtw-navbar .nav-link.active::after {
    display: none;
  }

  .wtw-nav-cta {
    margin: 0.5rem 0 0.75rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0 2rem;
    max-width: none;
  }

  .hero-visual {
    min-height: 260px;
    padding-bottom: 2.5rem;
  }

  .hero-banner-image {
    width: min(100%, 380px);
  }

  .hero-vector-1 {
    width: 150px;
    height: 150px;
    right: 2%;
  }

  .hero-vector-2 {
    display: none;
  }

  .section-bearings-light .bearing-deco-3,
  .section-bearings-dark .bearing-deco-3,
  .section-bearings-dark .bearing-deco-4 {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }
}