@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}

:root {
  --white: #fff;
  --black: #000;
  --blue: #0071bb;
  --transition: all 0.5s ease-in-out;
  --bg-black: #050505;
  --bg-dark: #111111;
  --bg-card: #161616;
  --accent-blue: #0071bb;
  --accent-blue-hover: rgb(15, 89, 163);
  --text-white: #ffffff;
  --text-silver: #cccccc;
  --border-color: #2a2a2a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-black);
  color: var(--text-silver);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

img,
video {
  max-width: 100%;
}

p {
  transform: all 0.9s ease-in-out;
}

p:hover {
  color: var(--white);
}

.text-primary {
  color: var(--accent-blue) !important;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 113, 187, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 113, 187, 0.6);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- COMPACT UTILITIES --- */
section,
.section-compact {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* --- NAVBAR --- */
.navbar {
  background-color: rgba(5, 5, 5, 0.95) !important;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.shadow {
  box-shadow: 0 5px 30px rgba(0, 113, 187, 0.2);
}

.nav-link {
  color: #999 !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.navbar-brand {
  font-weight: 700;
  color: white !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  max-width: 150px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 113, 187, 0.3));
}

/* --- HERO SECTION --- */
.hero-section {
  /* background: linear-gradient(to right, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.6)),
    url("https://images.unsplash.com/photo-1565610222536-ef125c59da2e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80"); */
  /* background-size: cover;
  background-position: center;
  background-attachment: fixed; */
  /* min-height: 90vh; */
  /* display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  position: relative; */
  padding: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-black), transparent);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-bg {
  /* background: linear-gradient(to right, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.6)),
    url("https://images.unsplash.com/photo-1565610222536-ef125c59da2e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80"); */
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  min-height: max(600px, 90vh);
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  animation: fadeInUp 1s ease;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-silver);
  margin-bottom: 2rem;
  padding-left: 20px;
  border-left: 4px solid var(--accent-blue);
  animation: slideInLeft 1s ease 0.3s both;
}

.hero-section .btn {
  animation: fadeInUp 1s ease 0.6s both;
}

#Home-slider .owl-nav button {
  background: linear-gradient(135deg, #007bff, #00b4ff) !important;
  color: var(--white) !important;
  border: none !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease !important;

  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

#Home-slider.owl-nav button.owl-next {
  left: auto;
  right: 20px;
}

/* --- BUTTONS --- */
.btn-blue {
  background-color: var(--accent-blue);
  color: white;
  border-radius: 0;
  padding: 12px 35px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-blue::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-blue-hover);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn-blue:hover::before {
  width: 300px;
  height: 300px;
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.4);
}

.btn-outline-light {
  border-radius: 0;
  padding: 12px 35px;
  font-weight: 600;
  border: 2px solid #444;
  color: #ccc;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.btn-outline-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline-light:hover::before {
  left: 0;
}

.btn-outline-light:hover {
  color: black;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

#Home-slider .btn-outline-light {
  color: #fff;
  border-color: #fff;
}

#Home-slider .btn-outline-light:hover {
  color: black;
}


/* --- SECTIONS --- */
.bg-dark-section {
  background-color: var(--bg-dark);
}

.bg-black {
  background-color: var(--bg-black);
}

.section-title {
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease;
}

.section-header {
  margin-bottom: 3rem;
}

.divider-blue {
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  margin: 15px 0;
  animation: slideLine 0.8s ease;
}

.about-img {
  filter: grayscale(100%) contrast(110%);
  border-bottom: 4px solid var(--accent-blue);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.about-img:hover::before {
  left: 100%;
}

.about-img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 113, 187, 0.3);
}

/* --- PRODUCT CARDS --- */
.card-custom {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-custom::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(0, 113, 187, 0.1) 0%,
      transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.card-custom:hover::before {
  transform: scale(1);
}

.card-custom:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 113, 187, 0.25);
}

.card-custom .img-box {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  height: 220px;
  object-fit: contain;
  border-radius: 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s ease;
}

.card-custom:hover .card-img-top {
  transform: scale(1.1);
}

.card-body {
  position: relative;
  z-index: 1;
}

.card-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-custom:hover .card-title {
  color: var(--accent-blue);
}

.card-text {
  color: #888;
  transition: color 0.3s ease;
}

.card-custom:hover .card-text {
  color: var(--white);
}

/* --- FEATURES --- */
.feature-box {
  background: var(--bg-card);
  padding: 1.8rem;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--accent-blue);
  transition: height 0.4s ease;
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box:hover {
  border-color: var(--accent-blue);
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(0, 113, 187, 0.2);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin-right: 20px;
  min-width: 60px;
  width: 60px;
  min-height: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 113, 187, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
  background: var(--accent-blue);
  color: white;
  animation: glow 2s infinite;
}

/* --- STATS SECTION --- */
.stats-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-box {
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 10px;
  display: block;
  transition: all 0.4s ease;
}

.stat-label {
  color: var(--text-silver);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-box:hover .stat-number {
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(0, 113, 187, 0.8);
  color: var(--white);
}

/* --- CTA SECTION --- */
.bg-dark-section.border-top {
  padding: 40px 0;
  position: relative;
}

.bg-dark-section.border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 113, 187, 0.05),
      transparent);
  animation: slideRight 3s linear infinite;
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(to bottom, var(--bg-black), #000);
  color: var(--text-silver);
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-blue),
      transparent);
}

footer .logo-box {
  border-left: 3px solid var(--accent-blue);
  padding-left: 10px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

footer .logo-box:hover {
  border-left-width: 8px;
  transform: translateX(10px);
}

footer .logo-box img {
  max-width: 250px;
  margin-left: 1rem;
}

footer h6 {
  color: white;
  border-left: 3px solid var(--accent-blue);
  padding-left: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

footer h6:hover {
  border-left-width: 5px;
  padding-left: 15px;
}

footer a {
  color: var(--text-silver);
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

footer a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 60px;
  width: 0;
  height: 1px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: calc(100% - 60px);
}

footer .quick-link a::after {
  left: 0px;
}

footer .quick-link a:hover::after {
  width: 100%;
}

footer a:hover {
  color: var(--white);
  transform: translateX(5px);
}

footer .contact-link a {
  display: flex;
  align-items: center;
  width: fit-content;
}

footer .fab {
  transition: all 0.3s ease;
}

/* --- PAGE HEADER --- */
.page-header {
  background: linear-gradient(to right, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.7)),
    url("https://img.freepik.com/premium-photo/door-handle-door-open-front-blur-interior-room-background_105386-3808.jpg");
  background-size: cover !important;
  background-position: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-top: 100px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-silver);
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: var(--text-silver);
}

.breadcrumb-item a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

/* --- MISSION & VISION BOXES --- */
.mission-box {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--accent-blue);
  transition: left 0.4s ease;
}

.mission-box:hover::before {
  left: 0;
}

.mission-box:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.mission-icon {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.mission-box .mission-icon i {
  transition: all 0.4s ease;
}

.mission-box:hover .mission-icon i {
  transform: scale(1.1);
}

/* --- VALUE CARDS --- */
.value-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(0, 113, 187, 0.1), transparent);
  transition: height 0.4s ease;
}

.value-card:hover::after {
  height: 100%;
}

.value-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 113, 187, 0.8));
  color: var(--white) !important;
}

/* --- TEAM CARDS --- */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  overflow: hidden;
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 113, 187, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .team-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.team-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: white;
  color: var(--accent-blue);
  margin: 0 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-5px);
}

.team-info {
  padding: 25px;
  text-align: center;
}

/* --- CERTIFICATION BOXES --- */
.cert-box {
  background: var(--bg-card);
  padding: 40px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.4s ease;
}

.cert-box i {
  font-size: 3rem;
  transition: all 0.4s ease;
}

.cert-box:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.cert-box:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(0, 113, 187, 0.8));
  color: var(--white) !important;
}

/* --- PRODUCT CARDS --- */
.product-filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-silver);
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.filter-btn.finish-btn {
  background: linear-gradient(90deg, #d4af37, #b76e79);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 6px 18px rgba(183, 110, 121, 0.25);
}

.filter-btn.finish-btn:hover,
.filter-btn.finish-btn.active {
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(183, 110, 121, 0.35);
  transform: translateY(-3px);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-blue);
  color: white;
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 25px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.85rem;
}

.product-specs span {
  color: var(--text-silver);
}

/* --- PROCESS CARDS --- */
.process-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.process-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0, 113, 187, 0.2);
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 0.4s ease;
}

.process-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.process-card:hover .process-number {
  color: rgba(0, 113, 187, 0.4);
  transform: scale(1.2);
}

/* --- MATERIAL CARDS --- */
.material-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  height: 100%;
  transition: all 0.4s ease;
}

/* Finishes */
.finish-image-wrapper {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  height: 420px;
  overflow: hidden;
}

.finish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.finish-image-wrapper:hover .finish-image {
  transform: scale(1.04);
}

.finish-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.finish-swatch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.finish-swatch:hover {
  border-color: var(--accent-blue);
  transform: translateY(-3px);
}

.swatch-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--swatch, #ccc);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.swatch-label {
  color: var(--text-silver);
  font-weight: 600;
}

.material-card:hover {
  border-left-width: 8px;
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(0, 113, 187, 0.2);
}

.material-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.material-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.material-card ul li:last-child {
  border-bottom: none;
}

/* Modal */
.modal-custom {
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.modal-dialog {
  position: relative;
  max-width: 720px;
  margin: 8vh auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 113, 187, 0.25);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-silver);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--white);
}

/* --- CONTACT INFO CARDS --- */
.finish-panel {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.finish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(0, 113, 187, 0.15), transparent);
  border-bottom: 1px solid var(--border-color);
}

.finish-hero {
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
}

.finish-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s ease;
}

.finish-hero:hover .finish-hero-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.finish-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.finish-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-silver);
  font-size: 0.8rem;
}

.finish-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.finish-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-silver);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.finish-tab-btn.active,
.finish-tab-btn:hover {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
}

.finish-tab {
  display: none;
}

.finish-tab.active {
  display: block;
}

.spec-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.spec-chip {
  display: inline-block;
  padding: 6px 10px;
  background: rgba(0, 113, 187, 0.12);
  color: white;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
}

.finish-timeline {
  border-left: 2px solid var(--border-color);
  padding-left: 16px;
  display: grid;
  gap: 10px;
}

.finish-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-text {
  color: var(--text-silver);
  font-weight: 600;
}

/* Minimal finish tile */
.finish-simple {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.finish-simple-img {
  width: 520px;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-black);
}

.finish-simple-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.finish-simple:hover img {
  transform: scale(1.05);
}

.finish-simple.classic {
  border-color: #8c6a43;
  background: radial-gradient(ellipse at top, rgba(140, 106, 67, 0.08), transparent),
    var(--bg-card);
  box-shadow: 0 10px 30px rgba(140, 106, 67, 0.25);
}

.finish-simple.classic .finish-simple-img {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.6), inset 0 0 30px rgba(0, 0, 0, 0.35);
}

.finish-simple.classic h4 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.5px;
}

.classic-divider {
  width: 120px;
  height: 2px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #d4af37, transparent);
}

/* Better finish card */
.finish-card.classic {
  border: 1px solid #8c6a43;
  background: var(--bg-card);
  padding: 22px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(140, 106, 67, 0.25);
}

.finish-banner {
  position: relative;
  border: 1px solid #d4af37;
  overflow: hidden;
}

.finish-banner-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.finish-banner:hover .finish-banner-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.finish-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

.overlay-title {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  margin: 0;
  letter-spacing: 0.6px;
}

.corner {
  position: absolute;
  width: 26px;
  height: 26px;
}

.corner.tl::before,
.corner.tl::after,
.corner.br::before,
.corner.br::after {
  content: "";
  position: absolute;
  background: #d4af37;
}

.corner.tl {
  top: 10px;
  left: 10px;
}

.corner.tl::before {
  width: 20px;
  height: 2px;
  top: 0;
  left: 0;
}

.corner.tl::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 0;
}

.corner.br {
  bottom: 10px;
  right: 10px;
}

.corner.br::before {
  width: 20px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.corner.br::after {
  width: 2px;
  height: 20px;
  bottom: 0;
  right: 0;
}

.swatch-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  border: 1px solid rgba(212, 175, 55, 0.7);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* --- CONTACT INFO CARDS --- */
.contact-info-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-blue);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.contact-info-card:hover::before {
  width: 80%;
}

.contact-info-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 113, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
  background: var(--accent-blue);
  color: white;
  transform: scale(1.1) rotate(360deg);
}

.contact-info-card a.text-primary,
.contact-info-card p.text-primary {
  color: var(--accent-blue) !important;
  text-decoration: none;
}

.contact-info-card:hover a.text-primary,
.contact-info-card:hover p.text-primary {
  color: var(--text-white) !important;
}

/* --- CONTACT FORM --- */
.contact-form-wrapper {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
}

.form-control-custom {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  color: white;
  padding: 12px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background: var(--bg-black);
  border-color: var(--accent-blue);
  color: white;
  box-shadow: 0 0 15px rgba(0, 113, 187, 0.3);
}

.form-control-custom::placeholder {
  color: #666;
}

.form-check-input {
  background-color: var(--bg-black);
  border-color: var(--border-color);
}

.form-check-input:checked {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
}

#contactForm .btn-blue:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* --- MAP WRAPPER --- */
.map-wrapper {
  overflow: hidden;
  transition: all 0.4s ease;
}

.map-wrapper:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 5px 20px rgba(0, 113, 187, 0.2);
}

/* --- ADDITIONAL INFO --- */
.additional-info {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
  border-bottom: none;
}

.social-links-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-link {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-silver);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateX(5px);
  background: rgba(0, 113, 187, 0.1);
}

.social-link i {
  font-size: 1.2rem;
}

.social-icons a,
.contact-link a i {
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  line-height: 40px;
  background: var(--bg-card);
  color: var(--white) !important;
  margin: 0 5px;
  text-align: center;
  text-decoration: none;
}

.social-icons a:hover,
.contact-link a i:hover {
  color: var(--white) !important;
  transform: scale(1.1);
  background: linear-gradient(135deg, #007bff, #00b4ff);
}

/* --- ACCORDION --- */
.accordion-custom .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.accordion-custom .accordion-button {
  background: var(--bg-card);
  color: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: rgba(0, 113, 187, 0.1);
  color: var(--accent-blue);
  box-shadow: none;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-custom .accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(1000%) hue-rotate(180deg);
}

.accordion-custom .accordion-body {
  background: var(--bg-black);
  color: var(--text-silver);
  padding: 25px;
  border-top: 1px solid var(--border-color);
}

/* --- SCROLL ANIMATIONS --- */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ===============================================
   INFRASTRUCTURE & QUALITY PAGES CSS
   =============================================== */

/* --- INFRASTRUCTURE PAGE STYLES --- */

/* Facility Images */
.facility-image-grid .facility-img {
  width: 100%;
  height: auto;
  filter: grayscale(80%);
  border: 1px solid var(--border-color);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.facility-image-grid .main-img {
  height: 300px;
  object-fit: cover;
}

.facility-image-grid .facility-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.facility-image-grid .facility-img:hover::before {
  left: 100%;
}

.facility-image-grid .facility-img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.3);
}

/* Infrastructure Stats */
.infra-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.infra-stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.infra-stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.infra-stat-item:hover h3 {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(0, 113, 187, 0.8);
}

/* Capacity Cards */
.capacity-card {
  background: var(--bg-card);
  padding: 40px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.capacity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--accent-blue);
  transition: left 0.4s ease;
}

.capacity-card:hover::before {
  left: 0;
}

.capacity-card::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 113, 187, 0.1), transparent);
  transition: bottom 0.4s ease;
  z-index: 0;
}

.capacity-card:hover::after {
  bottom: 0;
}

.capacity-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.capacity-card h3,
.capacity-card p {
  position: relative;
  z-index: 1;
}

.capacity-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.capacity-card:hover .capacity-icon {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 0 15px rgba(0, 113, 187, 0.8));
  color: var(--white);
}

/* Equipment Cards */
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.equipment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 113, 187, 0.1), transparent);
  transition: height 0.4s ease;
  z-index: 0;
}

.equipment-card:hover::before {
  height: 100%;
}

.equipment-header {
  background: rgba(0, 113, 187, 0.05);
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.equipment-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--bg-black);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

.equipment-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.equipment-card:hover .equipment-icon-wrapper::before {
  opacity: 1;
  transform: scale(1.4);
}

.equipment-card:hover .equipment-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 0 20px rgba(0, 113, 187, 0.6);
}

.equipment-header h4 {
  margin: 0;
  min-height: 57px;
  transition: color 0.3s ease;
}

.equipment-card:hover .equipment-header h4 {
  color: var(--accent-blue);
}

.equipment-body {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.equipment-specs {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.equipment-specs li {
  padding: 10px 0;
  color: var(--text-silver);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  transition: all 0.3s ease;
}

.equipment-specs li:last-child {
  border-bottom: none;
}

.equipment-specs li i {
  margin-right: 10px;
}

.equipment-card:hover .equipment-specs li {
  padding-left: 10px;
  color: var(--text-white);
}

.equipment-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

/* Department Cards */
.department-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.dept-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 113, 187, 0.15);
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 0.4s ease;
  z-index: 0;
}

.department-card h5,
.department-card p {
  position: relative;
  z-index: 1;
}

.department-card:hover .dept-number {
  color: rgba(0, 113, 187, 0.3);
  transform: scale(1.2);
}

.department-card:hover {
  border-left-width: 8px;
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(0, 113, 187, 0.2);
  background: rgba(0, 113, 187, 0.05);
}

/* Technology Features */
.tech-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tech-feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: rgba(0, 113, 187, 0.05);
  border-left: 3px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.tech-feature-item:hover {
  background: rgba(0, 113, 187, 0.1);
  border-left-width: 6px;
  transform: translateX(10px);
}

.tech-feature-item i {
  font-size: 2rem;
  min-width: 50px;
  transition: all 0.3s ease;
}

.tech-feature-item:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 113, 187, 0.8));
  color: var(--white) !important;
}

/* Safety Cards */
.safety-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.safety-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(0, 113, 187, 0.1), transparent);
  transition: height 0.4s ease;
}

.safety-card:hover::before {
  height: 100%;
}

.safety-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.safety-card h5,
.safety-card p {
  position: relative;
  z-index: 1;
}

.safety-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.safety-card:hover i {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 0 15px rgba(0, 113, 187, 0.8));
  color: var(--white) !important;
}

/* --- QUALITY PAGE STYLES --- */

/* Quality Images */
.quality-img {
  width: 100%;
  filter: grayscale(70%);
  border: 1px solid var(--border-color);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.quality-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.quality-img:hover::after {
  left: 100%;
}

.quality-img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.3);
}

/* Quality Principles */
.quality-principles {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 113, 187, 0.05);
  border-left: 3px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.principle-item:hover {
  background: rgba(0, 113, 187, 0.1);
  border-left-width: 6px;
  transform: translateX(10px);
}

.principle-item i {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.principle-item:hover i {
  transform: scale(1.2);
  color: var(--white) !important;
}

/* Certification Cards */
.certification-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle,
      rgba(0, 113, 187, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.certification-card:hover::before {
  width: 400px;
  height: 400px;
}

.cert-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(0, 113, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 3rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.cert-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s ease;
}

.certification-card:hover .cert-icon-wrapper::before {
  opacity: 1;
  transform: scale(1.2);
}

.certification-card:hover .cert-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 0 25px rgba(0, 113, 187, 0.8);
}

.cert-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.cert-img-wrapper img {
  transition: all 0.4s ease;
}

.certification-card:hover .cert-img-wrapper img {
  transform: scale(1.2);
}

.certification-card h4,
.certification-card p {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cert-badge {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.certification-card:hover .cert-badge {
  background: white;
  color: var(--accent-blue);
}

.certification-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

/* Certifications Section */
.certifications-section .certification-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.certifications-section .certification-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 123, 255, 0.5);
}

.cert-img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  padding: 12px;
}

.cert-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #007bff, #00b4ff);
  border-radius: 30px;
}

/* QC Stage Cards */
.qc-stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.qc-stage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 113, 187, 0.1), transparent);
  transition: width 0.4s ease;
}

.qc-stage-card:hover::before {
  width: 100%;
}

.stage-header {
  background: rgba(0, 113, 187, 0.05);
  padding: 25px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.stage-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 113, 187, 0.2);
  transition: all 0.4s ease;
  z-index: 0;
}

.qc-stage-card:hover .stage-number {
  color: rgba(0, 113, 187, 0.4);
  transform: scale(1.2);
}

.stage-header h4 {
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.qc-stage-card:hover .stage-header h4 {
  color: var(--accent-blue);
}

.stage-body {
  padding: 25px;
  position: relative;
  z-index: 1;
}

.stage-checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.stage-checks li {
  padding: 10px 0;
  color: var(--text-silver);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  transition: all 0.3s ease;
}

.stage-checks li:last-child {
  border-bottom: none;
}

.qc-stage-card:hover .stage-checks li {
  padding-left: 10px;
  color: var(--text-white);
}

.qc-stage-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

/* Testing Cards */
.testing-card {
  background: var(--bg-card);
  padding: 40px 25px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(0, 113, 187, 0.1), transparent);
  transition: height 0.4s ease;
}

.testing-card:hover::after {
  height: 100%;
}

.testing-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 113, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.testing-card h5,
.testing-card p {
  position: relative;
  z-index: 1;
}

.testing-card:hover .testing-icon {
  transform: scale(1.1) rotate(360deg);
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 0 20px rgba(0, 113, 187, 0.8);
}

.testing-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

/* Metric Cards */
.metric-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle,
      rgba(0, 113, 187, 0.15) 0%,
      transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.metric-card:hover::before {
  width: 300px;
  height: 300px;
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.metric-card h5,
.metric-card p {
  position: relative;
  z-index: 1;
}

.metric-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.metric-card:hover .metric-value {
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(0, 113, 187, 0.8);
  color: var(--white);
}

/* Standards List */
.standards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.standard-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: rgba(0, 113, 187, 0.05);
  border-left: 3px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.standard-item:hover {
  background: rgba(0, 113, 187, 0.1);
  border-left-width: 6px;
  transform: translateX(10px);
}

.standard-item i {
  font-size: 1.5rem;
  min-width: 30px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.standard-item:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 113, 187, 0.8));
  color: var(--white) !important;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--bg-card);
  padding: 35px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 100px;
  color: rgba(0, 113, 187, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  transition: all 0.4s ease;
}

.testimonial-card:hover::before {
  color: rgba(0, 113, 187, 0.2);
  transform: scale(1.1);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

/* --- RESPONSIVE STYLES --- */

iframe {
  border: 0;
  border-radius: 0;
  filter: grayscale(100%) invert(92%) contrast(83%);
  transition: all 0.8s ease;
}

iframe:hover {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

.accordion-collapse {
  transition: height 0.8s ease !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
  content: var(--bs-breadcrumb-divider, "/");
}

/* ===============================================
   PRODUCT DETAIL PAGE CSS
   =============================================== */

/* --- PRODUCT GALLERY --- */
.product-detail-gallery {
  position: sticky;
  top: 100px;
}

.main-image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  margin-bottom: 20px;
  height: 500px;
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.main-image-wrapper:hover .main-product-image {
  transform: scale(1.05);
}

.product-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-blue);
  color: white;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 187, 0.7);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 113, 187, 0);
  }
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.thumbnail-item {
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  aspect-ratio: 1;
}

.thumbnail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.thumbnail-item:hover::before {
  opacity: 1;
}

.thumbnail-item.active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 113, 187, 0.5);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: all 0.3s ease;
}

.thumbnail-item:hover img,
.thumbnail-item.active img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* --- PRODUCT INFO --- */
.product-detail-info {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
}

.product-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.category-badge {
  background: rgba(0, 113, 187, 0.1);
  color: var(--accent-blue);
  padding: 6px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--accent-blue);
}

.stock-badge {
  padding: 6px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stock-badge.in-stock {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid #28a745;
}

.stock-badge.in-stock i {
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.stock-badge.out-of-stock {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid #dc3545;
}

.product-detail-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.product-rating .stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-silver);
  font-size: 0.95rem;
}

/* Product Price */
.product-price {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 10px;
}

.price-note {
  color: var(--text-silver);
  font-size: 0.9rem;
}

/* Product Description */
.product-description {
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Product Highlights */
.product-highlights {
  background: rgba(0, 113, 187, 0.05);
  padding: 25px;
  margin-bottom: 30px;
  border-left: 4px solid var(--accent-blue);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  padding: 10px 0;
  color: var(--text-silver);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.highlights-list li:hover {
  padding-left: 10px;
  color: white;
}

.highlights-list li i {
  font-size: 1.1rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.product-actions .btn {
  flex: 1;
  min-width: 200px;
}

/* Product Meta */
.product-meta {
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-item {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}

.meta-label {
  color: var(--text-silver);
  min-width: 100px;
  font-weight: 600;
}

.meta-value {
  color: white;
}

/* --- PRODUCT TABS --- */
.product-tabs {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0;
  overflow: hidden;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid var(--border-color);
  background: rgba(0, 113, 187, 0.05);
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
}

.product-tabs .nav-tabs::-webkit-scrollbar {
  height: 4px;
}

.product-tabs .nav-tabs::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
}

.product-tabs .nav-item {
  flex: 1;
  min-width: 150px;
}

.product-tabs .nav-link {
  color: var(--text-silver);
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  border-radius: 0;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
  color: var(--white);
  background: var(--accent-blue);
}

.product-tabs .tab-content {
  padding: 40px;
}

/* Specification Table */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.spec-table tr {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table tr:hover {
  background: rgba(0, 113, 187, 0.05);
}

.spec-table td {
  padding: 15px 10px;
  color: var(--text-silver);
}

.spec-table td:first-child {
  font-weight: 600;
  color: white;
  width: 40%;
}

.spec-table td:last-child {
  color: var(--accent-blue);
}

/* Description List */
.description-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.description-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.description-list li:last-child {
  border-bottom: none;
}

.description-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* Application Cards */
.application-card {
  background: var(--bg-black);
  padding: 30px;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-blue);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.application-card:hover {
  border-left-width: 6px;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
  background: rgba(0, 113, 187, 0.05);
}

.application-card i {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.application-card:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 113, 187, 0.8));
}

.application-card h6 {
  margin-bottom: 10px;
}

/* Certification Detail Cards */
.cert-detail-card {
  background: var(--bg-black);
  padding: 25px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: start;
  height: 100%;
  transition: all 0.3s ease;
}

.cert-detail-card:hover {
  border-color: var(--accent-blue);
  transform: translateX(10px);
  box-shadow: -5px 5px 20px rgba(0, 113, 187, 0.2);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 113, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cert-detail-card:hover .cert-icon {
  transform: rotate(360deg);
  background: var(--accent-blue);
  color: white;
}

.cert-detail-card h6 {
  margin-bottom: 8px;
}

/* Container for the dots */
.owl-dots {
  margin-top: 2rem !important;
}

/* Individual dot styling */
.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 4px;
  margin: 5px 6px;
  background: var(--bg-card);
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Active and Hover state */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-blue);
  width: 45px;
}

.group-companies-section {
  position: relative;
}

#group-slider .group-company-item {
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  display: inline-block;
  width: 100%;
}

#group-slider a.group-company-item {
  text-decoration: none;
}

.group-company-item img {
  max-width: 200px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 18px;
  transition: all 0.35s ease;
}

.group-company-item h6 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

/* Hover effect – subtle & premium */
.group-company-item:hover {
  border-color: rgba(13, 110, 253, 0.6);
  box-shadow: 0 10px 30px rgba(0, 113, 187, 0.2);
}

.text-silver {
  text-align: justify;
}

/* Welcome Simple Section */
.welcome-simple-section {
  background: #000000;
  padding: 80px 0;
  position: relative;
}

/* Welcome Badge */
.welcome-badge {
  display: inline-block;
  background: rgba(41, 98, 255, 0.1);
  color: var(--accent-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid rgba(41, 98, 255, 0.3);
  margin-bottom: 20px;
}

/* Welcome Heading */
.welcome-heading {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.text-blue {
  color: var(--accent-blue);
}

/* Divider */
.welcome-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-blue);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* Text Styles */
.welcome-intro {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.welcome-description {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Buttons */
.welcome-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-welcome-primary,
.btn-welcome-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-welcome-primary {
  background: var(--accent-blue);
  color: #ffffff;
  border: 2px solid var(--accent-blue);
}

.btn-welcome-primary:hover {
  background: #1565c0;
  border-color: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 98, 255, 0.3);
  color: #ffffff;
}

.btn-welcome-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-welcome-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Image Box */
.welcome-image-box {
  position: relative;
  overflow: hidden;
}

.main-welcome-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Quality Badge */
.quality-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1565c0 100%);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(41, 98, 255, 0.4);
}

.quality-badge i {
  color: #ffffff;
  font-size: 22px;
}

.quality-badge strong {
  color: #ffffff;
  font-size: 14px;
  display: block;
  line-height: 1.2;
  font-weight: 700;
}

.quality-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
  .welcome-simple-section {
    padding: 60px 0;
  }

  .welcome-heading {
    font-size: 32px;
  }

  .stats-overlay-box {
    position: static;
    margin-top: 20px;
  }

  .quality-badge {
    position: static;
    margin-bottom: 20px;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .welcome-heading {
    font-size: 28px;
  }

  .welcome-intro {
    font-size: 16px;
  }

  .welcome-description {
    font-size: 14px;
  }

  .welcome-buttons {
    flex-direction: column;
  }

  .btn-welcome-primary,
  .btn-welcome-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-overlay-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .welcome-highlights {
    padding: 20px;
  }

  .highlight-item span {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .stats-overlay-box {
    padding: 16px;
  }

  .stat-item h3 {
    font-size: 24px;
  }
}

/* Improved Finish Section - Blue Theme */
.finish-showcase {
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
  border: 1px solid #2a2a2a;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.finish-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230071bb' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.finish-showcase::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(0, 113, 187, 0.15);
  pointer-events: none;
}

.finish-image-frame {
  position: relative;
  padding: 15px;
  background: #000;
  border: 1px solid rgba(0, 113, 187, 0.4);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.finish-image-frame::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(0, 113, 187, 0.2);
  pointer-events: none;
  z-index: 1;
}

.finish-image-frame img {
  width: 100%;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.5s ease;
}

.finish-showcase:hover .finish-image-frame img {
  filter: brightness(1) contrast(1.1);
  transform: scale(1.01);
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--accent-blue);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.frame-corner.top-left {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
}

.frame-corner.bottom-right {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
}

.finish-showcase:hover .frame-corner {
  width: 60px;
  height: 60px;
  border-color: #3399ff;
  box-shadow: 0 0 15px rgba(0, 113, 187, 0.3);
}

.finish-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.text-gold {
  color: var(--accent-blue) !important;
}

.divider-gold {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  margin-bottom: 25px;
}

.finish-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-silver);
}

.finish-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
  transition: all 0.3s ease;
}

.finish-list li:hover {
  padding-left: 10px;
  border-bottom-color: rgba(0, 113, 187, 0.3);
}

.finish-list li:last-child {
  border-bottom: none;
}

.btn-outline-gold {
  font-family: "Chakra Petch", sans-serif;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  background: transparent;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 187, 0.2), transparent);
  transition: 0.5s;
}

.btn-outline-gold:hover::before {
  left: 100%;
}

.btn-outline-gold:hover {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 113, 187, 0.4);
  border-color: var(--accent-blue);
}

/* Sticky Filter Wrapper */
/* .filter-sticky-wrapper {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  margin-bottom: 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
} */

@media (max-width: 991px) {
  .filter-sticky-wrapper {
    top: 60px;
  }
}

@media (max-width: 767px) {
  .finish-showcase {
    padding: 20px;
  }

  .finish-title {
    font-size: 24px;
  }
}


/* --- CATALOG SECTION (BRAND STYLE) --- */
.catalog-section {
    position: relative;
    background-color: var(--bg-card);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.catalog-content-box {
    position: relative;
    z-index: 2;
}

.catalog-title {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.catalog-desc {
    color: var(--text-silver);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 30px;
}

.catalog-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
}

.stat-item h4 {
    color: var(--accent-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}


.catalog-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-visual::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
}

.catalog-icon-large {
    font-size: 120px;
    color: var(--accent-blue);
    opacity: 0.8;
    text-shadow: 0 0 30px rgba(0, 113, 187, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
  

.book-title {
    color: white;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 10px 0;
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: white;
    color: var(--accent-blue);
    font-weight: 700;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-glow:hover {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 40px rgba(0, 113, 187, 0.6);
    transform: translateY(-3px);
}
footer .quick-link a.active::after {
    width: 100%;
}