:root {
  --primary: #a80707;
  --primary-dark: #700404;
  --primary-light: #d43f3f;
  --accent: #c0392b;
  --dark: #0a0a0a;
  --dark-surface: #111111;
  --dark-card: #1a1a1a;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  --white: #ffffff;
  --font-heading: Outfit, system-ui, -apple-system, sans-serif;
  --font-body: DM Sans, system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba($primary, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
  outline: 2px solid #a80707;
  outline-offset: 2px;
}

.btn:focus, .btn:focus-visible,
.btn-close:focus, .btn-close:focus-visible,
.navbar-toggler:focus, .navbar-toggler:focus-visible,
.page-link:focus, .page-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.3);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #a80707;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.1);
}

.dropdown-item:focus, .dropdown-item:active {
  background-color: #a80707;
  color: #ffffff;
}

a:focus-visible {
  outline: 2px solid #a80707;
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: #212529;
  background: #ffffff;
  overflow-x: hidden;
}

::selection {
  background: rgba(168, 7, 7, 0.15);
  color: #700404;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #212529;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1.25rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #a80707;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #700404;
}

.text-gradient {
  background: linear-gradient(135deg, #a80707, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.bg-dark {
  background: #0a0a0a !important;
}

.bg-dark-surface {
  background: #111111 !important;
}

.bg-dark-card {
  background: #1a1a1a !important;
}

.noise-overlay {
  position: relative;
}
.noise-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}
.noise-overlay > * {
  position: relative;
  z-index: 2;
}

.btn {
  border-radius: 999px;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::before {
  opacity: 1;
}
.btn.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.825rem;
}
.btn.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
}
.btn.btn-xl {
  padding: 1rem 3rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #a80707, #c0392b);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 7, 7, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 7, 7, 0.4);
  background: linear-gradient(135deg, #700404, #a80707);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:focus, .btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.3);
}

.btn-outline-primary {
  color: #a80707;
  border: 2px solid #a80707;
  background: transparent;
}
.btn-outline-primary:hover {
  background: #a80707;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(168, 7, 7, 0.3);
}
.btn-outline-primary:focus, .btn-outline-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.3);
  color: #a80707;
  background: transparent;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn-outline-light:focus, .btn-outline-light:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.btn-white {
  background: #ffffff;
  color: #a80707;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.btn-white:focus, .btn-white:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.3);
}

.top-bar {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar .top-bar-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}
.top-bar .top-bar-link:hover {
  color: #ffffff;
}
.top-bar .top-bar-link i {
  font-size: 0.75rem;
}
.top-bar .top-bar-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.top-bar .top-bar-lang-btn {
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  padding: 3px 12px;
  border-radius: 4px;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}
.top-bar .top-bar-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.top-bar .top-bar-lang-btn::after {
  display: none;
}
.top-bar .top-bar-lang-btn .dropdown-arrow-custom {
  display: inline-block;
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.top-bar .top-bar-lang-btn[aria-expanded=true] .dropdown-arrow-custom {
  transform: rotate(180deg);
}
.top-bar .dropdown-menu {
  min-width: 130px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.35rem 0;
  margin-top: 4px !important;
  z-index: 1030;
  animation: none;
}
.top-bar .dropdown-menu .dropdown-item {
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}
.top-bar .dropdown-menu .dropdown-item:hover {
  background: rgba(168, 7, 7, 0.08);
  color: #a80707;
}
.top-bar .dropdown-menu .dropdown-item.active, .top-bar .dropdown-menu .dropdown-item:active {
  background: #a80707;
  color: #ffffff;
}

.navbar {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 80px;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar.navbar-shrink {
  min-height: 64px;
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08) !important;
}
.navbar.navbar-shrink .navbar-brand img {
  height: 45px !important;
}
.navbar .nav-link {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #495057 !important;
  padding: 0.5rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s ease;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #a80707;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}
.navbar .nav-link:hover {
  color: #a80707 !important;
}
.navbar .nav-link:hover::after {
  width: 60%;
}
.navbar .nav-link.active {
  color: #a80707 !important;
}
.navbar .nav-link.active::after {
  width: 60%;
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar .dropdown-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 4px;
  vertical-align: middle;
}
.navbar .nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.navbar .nav-item.dropdown {
  position: relative;
}
.navbar .nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  margin-top: 0;
}
.navbar .nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  animation: dropdownFade 0.2s ease;
}
.dropdown-menu .dropdown-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.dropdown-menu .dropdown-item:hover {
  background: rgba(168, 7, 7, 0.08);
  color: #a80707;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-wrapper {
  min-height: 60vh;
}

footer.bg-dark .text-secondary {
  color: #949da5 !important;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
  animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 40%, rgba(112, 4, 4, 0.6) 100%);
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(168, 7, 7, 0.08) 50%, rgba(168, 7, 7, 0.15) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 7, 7, 0.15);
  border: 1px solid rgba(168, 7, 7, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d43f3f;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-section .hero-badge i {
  font-size: 0.9rem;
}
.hero-section h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-section h1 .text-gradient {
  background: linear-gradient(135deg, #d43f3f, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.hero-section .hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-section .hero-cta .btn {
  min-width: 160px;
  text-align: center;
}
.hero-section .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.hero-section .hero-stats .hero-stat {
  text-align: left;
}
.hero-section .hero-stats .hero-stat .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-section .hero-stats .hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.hero-section .hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero-section .hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}
.hero-section .hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: #a80707;
  top: -10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}
.hero-section .hero-shapes .shape-2 {
  width: 200px;
  height: 200px;
  background: #c0392b;
  bottom: 20%;
  right: 5%;
  animation: float 6s ease-in-out infinite reverse;
}
.hero-section .hero-shapes .shape-3 {
  width: 150px;
  height: 150px;
  background: #ffffff;
  top: 30%;
  right: 25%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 7, 7, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 50%);
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stats-section .stat-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.stats-section .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.stats-section .stat-item::after:last-child {
  display: none;
}
.stats-section .stat-item:last-child::after {
  display: none;
}
.stats-section .stat-item .stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 7, 7, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #a80707;
  transition: all 0.3s ease;
}
.stats-section .stat-item .stat-icon:hover {
  background: rgba(168, 7, 7, 0.25);
  transform: scale(1.1);
}
.stats-section .stat-item .number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-section .stat-item .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #a80707;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.section-label::before, .section-label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #a80707;
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.industries-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.industries-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 7, 7, 0.05), transparent 70%);
  border-radius: 50%;
}

.industry-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: block;
  color: inherit;
}
.industry-card:hover {
  color: inherit;
}
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a80707, #c0392b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(168, 7, 7, 0.12);
  border-color: rgba(168, 7, 7, 0.1);
}
.industry-card:hover::before {
  transform: scaleX(1);
}
.industry-card:hover .industry-icon {
  background: #a80707;
  color: #ffffff;
  transform: scale(1.1) rotate(-5deg);
}
.industry-card .industry-icon {
  width: 72px;
  height: 72px;
  background: rgba(168, 7, 7, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: #a80707;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.industry-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.products-section {
  background: #ffffff;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding-bottom: 70px;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(168, 7, 7, 0.12);
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}
.product-card .product-image {
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ced4da;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card .product-image i {
  transition: transform 0.5s ease;
}
.product-card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.product-card .product-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  line-height: 1.35;
  color: #1a1a1a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8rem;
}
.product-card .product-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0;
}
.product-card .product-spec {
  font-size: 0.8rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.4;
}
.product-card .product-spec .spec-label {
  color: #495057;
  font-weight: 600;
  min-width: 55px;
  flex-shrink: 0;
}
.product-card .product-spec .spec-value {
  color: #6c757d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card .product-spec i {
  font-size: 0.75rem;
  color: #a80707;
  width: 14px;
  flex-shrink: 0;
}
.product-card .card-footer {
  position: absolute;
  bottom: 20px;
  left: 1.5rem;
  right: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #a80707;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}
.btn-details i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}
.btn-details:hover {
  background: #8c0606;
  color: #ffffff;
}
.btn-details:hover i {
  transform: translateX(4px);
}

.product-infinite-carousel {
  position: relative;
  padding: 0 60px;
  overflow: visible;
}

.product-infinite-carousel::before,
.product-infinite-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.product-infinite-carousel::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.product-infinite-carousel::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.product-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.product-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 8px;
}

.product-prev,
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a80707;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: none;
  z-index: 10;
  cursor: pointer;
}
.product-prev:hover,
.product-next:hover {
  background: #a80707;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(168, 7, 7, 0.3);
}

.product-prev {
  left: 8px;
}

.product-next {
  right: 8px;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.product-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dee2e6;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-dot.active {
  background: #a80707;
  transform: scale(1.15);
}
.product-dot:hover:not(.active) {
  background: #ced4da;
}

.product-carousel-btn {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #a80707;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.06);
}
.product-carousel-btn:hover {
  background: #a80707;
  color: #ffffff;
  transform: scale(1.1);
}

.services-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(168, 7, 7, 0.1) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(192, 57, 43, 0.08) 0%, transparent 40%);
}
.services-section .section-title {
  color: #ffffff;
}
.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(168, 7, 7, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #a80707, rgba(168, 7, 7, 0.2));
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 7, 7, 0.2);
  box-shadow: 0 24px 60px rgba(168, 7, 7, 0.12), 0 8px 20px rgba(0,0,0,0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  height: 100%;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, #a80707, #d32f2f);
  color: #ffffff;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(168, 7, 7, 0.3);
}
.service-card:hover .service-body h3 {
  color: #ffffff;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.4s ease;
  pointer-events: none;
  user-select: none;
}
.service-card:hover .service-number {
  color: rgba(168, 7, 7, 0.15);
}

.service-card .service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(168, 7, 7, 0.18), rgba(168, 7, 7, 0.08));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #a80707;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border: 1px solid rgba(168, 7, 7, 0.1);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.service-body h3 {
  font-weight: 700;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
  transition: color 0.3s ease;
}
.service-body .service-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #a80707, transparent);
  border-radius: 1px;
}
.service-body p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.75;
  transition: color 0.3s ease;
}
.service-card:hover .service-body p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid > .service-card {
  margin: 0;
  border-radius: var(--radius-lg);
}

.testimonials-section {
  background: linear-gradient(135deg, #700404 0%, #a80707 50%, #8a0606 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}
.testimonials-section .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.testimonials-section .section-label-bar {
  background: rgba(255, 255, 255, 0.4);
}
.testimonials-section .section-title {
  color: #ffffff;
}
.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
}
.testimonials-section .testimonial-card .quote-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.testimonials-section .testimonial-card .testimonial-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonials-section .testimonial-card .testimonial-stars {
  margin-bottom: 1.5rem;
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 4px;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonials-section .testimonial-card .testimonial-author .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a80707, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: #ffffff;
  margin-bottom: 0.15rem;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.testimonials-section .carousel-control-prev {
  left: -24px;
}
.testimonials-section .carousel-control-next {
  right: -24px;
}

.partners-section {
  background: #f8f9fa;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
  width: max-content;
  padding-bottom: 2rem;
}
.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  min-width: 170px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  cursor: default;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(168, 7, 7, 0.1);
  border-color: rgba(168, 7, 7, 0.15);
}
.partner-card:hover .partner-icon {
  background: #a80707;
  color: #ffffff;
  transform: scale(1.1);
}
.partner-card .partner-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 7, 7, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #a80707;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.05em;
}
.partner-card .partner-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  text-align: center;
  line-height: 1.3;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.partner-card .partner-logo-img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-card:hover .partner-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.contact-section {
  background: #ffffff;
  position: relative;
}
.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 550px;
}
.contact-section .contact-info {
  background: #0a0a0a;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 7, 7, 0.2), transparent 70%);
  border-radius: 50%;
}
.contact-section .contact-info .info-content {
  position: relative;
  z-index: 1;
}
.contact-section .contact-info h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-section .contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-section .contact-info .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info .contact-item .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(168, 7, 7, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a80707;
  flex-shrink: 0;
}
.contact-section .contact-info .contact-item .item-content .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-section .contact-info .contact-item .item-content .value {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-section .contact-info .social-links {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.75rem;
}
.contact-section .contact-info .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.contact-section .contact-info .social-links a:hover {
  background: #a80707;
  color: #ffffff;
  transform: translateY(-2px);
}
.contact-section .contact-form {
  background: #ffffff;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form > p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-section .contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.contact-section .contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}
.contact-section .contact-form .form-control:focus {
  border-color: #a80707;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.1);
  background: #ffffff;
}
.contact-section .contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-form .btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.contact-page-section {
  background: #ffffff;
  position: relative;
}
.contact-page-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 550px;
}
.contact-page-section .contact-info {
  background: #0a0a0a;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.contact-page-section .contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 7, 7, 0.2), transparent 70%);
  border-radius: 50%;
}
.contact-page-section .contact-info .info-content {
  position: relative;
  z-index: 1;
}
.contact-page-section .contact-info h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-page-section .contact-info > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-page-section .contact-info .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-page-section .contact-info .contact-item .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(168, 7, 7, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a80707;
  flex-shrink: 0;
}
.contact-page-section .contact-info .contact-item .item-content .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-page-section .contact-info .contact-item .item-content .value {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-page-section .contact-info .social-links {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.75rem;
}
.contact-page-section .contact-info .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.contact-page-section .contact-info .social-links a:hover {
  background: #a80707;
  color: #ffffff;
  transform: translateY(-2px);
}
.contact-page-section .contact-form {
  background: #ffffff;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
}
.contact-page-section .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-page-section .contact-form > p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-page-section .contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.contact-page-section .contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}
.contact-page-section .contact-form .form-control:focus {
  border-color: #a80707;
  box-shadow: 0 0 0 4px rgba(168, 7, 7, 0.1);
  background: #ffffff;
}
.contact-page-section .contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-page-section .contact-form .btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 7, 7, 0.3), transparent);
}
footer h5 {
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
footer a:hover {
  color: #ffffff;
  padding-left: 4px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 0.75rem;
}
footer .footer-brand {
  margin-bottom: 1.5rem;
}
footer .footer-brand img {
  height: 40px;
}
footer .footer-newsletter .input-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
footer .footer-newsletter .input-group .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.75rem 1rem;
}
footer .footer-newsletter .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
footer .footer-newsletter .input-group .form-control:focus {
  box-shadow: none;
}
footer .footer-newsletter .input-group .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 2rem;
}
footer .hover-white:hover {
  color: #ffffff !important;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon-link:hover {
  background: #a80707;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}
.blog-card .blog-image {
  height: 220px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ced4da;
  font-size: 2.5rem;
  overflow: hidden;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card .blog-body {
  padding: 1.75rem;
}
.blog-card .blog-body .blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #6c757d;
}
.blog-card .blog-body .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-card .blog-body h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  line-height: 1.4;
}
.blog-card .blog-body .excerpt {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.blog-card .blog-body .read-more {
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease;
}
.blog-card .blog-body .read-more:hover {
  gap: 0.6rem;
}

.breadcrumb-section {
  background: #f8f9fa;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.breadcrumb-section .breadcrumb {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #a80707;
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #495057;
}
.blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #212529;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.blog-content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #a80707;
  padding-bottom: 0.5rem;
}
.blog-content h5 {
  font-size: 1.25rem;
}
.blog-content h4 {
  font-size: 1.4rem;
}
.blog-content h3 {
  font-size: 1.6rem;
}
.blog-content p {
  margin-bottom: 1.25rem;
}
.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}
.blog-content ul li, .blog-content ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
  line-height: 1.7;
}
.blog-content ul li strong, .blog-content ol li strong {
  color: #212529;
}
.blog-content strong {
  font-weight: 700;
  color: #212529;
}
.blog-content a {
  color: #a80707;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-content a:hover {
  color: #0a0a0a;
}
.blog-content blockquote {
  border-left: 4px solid #a80707;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(168, 7, 7, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #6c757d;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.blog-content table thead {
  background: #a80707;
  color: #fff;
}
.blog-content table thead th {
  padding: 0.85rem 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #8c0606;
}
.blog-content table tbody tr {
  border-bottom: 1px solid #f1f3f5;
  transition: background 0.15s ease;
}
.blog-content table tbody tr:hover {
  background: #fff8f8;
}
.blog-content table tbody tr:last-child {
  border-bottom: none;
}
.blog-content table tbody td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  color: #495057;
}
.blog-content table tbody tr:nth-child(even) {
  background: #fafbfc;
}
.blog-content table tbody tr:nth-child(even):hover {
  background: #fff0f0;
}
.blog-content .blog-faq {
  margin: 2rem 0;
}
.blog-content .blog-faq .faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 1.25rem 0;
}
.blog-content .blog-faq .faq-item:last-child {
  border-bottom: none;
}
.blog-content .blog-faq .faq-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 0.5rem 0;
}
.blog-content .blog-faq .faq-item p {
  margin: 0;
  color: #495057;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #adb5bd;
}
.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-author-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-detail-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #212529;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #adb5bd;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.blog-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-author-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}
.blog-author-box .blog-author-avatar {
  flex-shrink: 0;
}
.blog-author-box .blog-author-avatar span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a80707, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.blog-author-box .blog-author-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-author-box .blog-author-info .blog-author-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #adb5bd;
  font-weight: 600;
}
.blog-author-box .blog-author-info h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.25rem 0 0.15rem;
}
.blog-author-box .blog-author-info .blog-author-role {
  display: inline-block;
  color: #a80707;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-author-box .blog-author-info p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-pagination a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  max-width: 48%;
}
.blog-pagination a:hover {
  border-color: #a80707;
  box-shadow: 0 4px 15px rgba(168, 7, 7, 0.1);
}
.blog-pagination a i {
  font-size: 1.25rem;
  color: #a80707;
  flex-shrink: 0;
}
.blog-pagination .blog-pagination-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #adb5bd;
  font-weight: 600;
}
.blog-pagination .blog-pagination-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #212529;
  line-height: 1.4;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.blog-pagination .blog-pagination-next {
  text-align: right;
  margin-left: auto;
}

/* Numbered pagination (blog listing) */
.blog-numbered-pagination {
  --bs-pagination-color: #555;
  --bs-pagination-hover-color: var(--brand-red);
  --bs-pagination-hover-bg: #fff5f5;
  --bs-pagination-hover-border-color: var(--brand-red-light);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--brand-red);
  --bs-pagination-active-border-color: var(--brand-red);
  --bs-pagination-focus-color: var(--brand-red);
  --bs-pagination-focus-bg: #fff5f5;
  --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(168, 7, 7, 0.25);
}
.blog-numbered-pagination .pagination {
  gap: 6px;
}
.blog-numbered-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  z-index: 0;
}
.blog-numbered-pagination .page-link:hover {
  z-index: 0;
}
.blog-numbered-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark)) !important;
  border-color: var(--brand-red) !important;
  box-shadow: 0 4px 12px rgba(168, 7, 7, 0.25);
  z-index: 1;
}
.blog-numbered-pagination .page-item:first-child .page-link,
.blog-numbered-pagination .page-item:last-child .page-link {
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.blog-sidebar-widget:last-child {
  margin-bottom: 0;
}

.blog-sidebar-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #a80707;
  display: inline-block;
}

.blog-sidebar-post {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-sidebar-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-sidebar-post:first-of-type {
  padding-top: 0;
}
.blog-sidebar-post:hover .blog-sidebar-post-info h6 {
  color: #a80707;
}

.blog-sidebar-thumb {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  background: #f8f9fa;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ced4da;
  font-size: 1.25rem;
}

.blog-sidebar-post-info h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.35rem;
  color: #212529;
  transition: color 0.2s ease;
}
.blog-sidebar-post-info span {
  font-size: 0.78rem;
  color: #adb5bd;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-sidebar-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-sidebar-cat {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-sidebar-cat:hover, .blog-sidebar-cat.active {
  background: #a80707;
  color: #ffffff;
}

.blog-sidebar-cta {
  background: linear-gradient(135deg, #a80707, #0a0a0a) !important;
  border: none !important;
  text-align: center;
  color: #ffffff;
}
.blog-sidebar-cta i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.8;
}
.blog-sidebar-cta h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.blog-sidebar-cta p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.author-profile-header {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #ffffff;
  padding: 4rem 0;
}

.author-profile-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.author-profile-card .author-profile-avatar {
  flex-shrink: 0;
}
.author-profile-card .author-profile-avatar span {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a80707, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  border: 4px solid rgba(255, 255, 255, 0.15);
}
.author-profile-card .author-profile-avatar img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.15);
}
.author-profile-card .author-profile-info h1 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}
.author-profile-card .author-profile-info .author-profile-role {
  display: inline-block;
  color: rgb(245.68, 31.32, 31.32);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.author-profile-card .author-profile-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.author-profile-card .author-profile-info .author-profile-stats {
  display: flex;
  gap: 1.5rem;
}
.author-profile-card .author-profile-info .author-profile-stats .author-profile-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.author-profile-card .author-profile-info .author-profile-stats .author-profile-stat i {
  font-size: 1.1rem;
}

.blog-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-comments-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.blog-comments-list {
  margin-bottom: 2rem;
}

.blog-comment {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-comment:last-child {
  border-bottom: none;
}

.blog-comment-avatar {
  flex-shrink: 0;
}
.blog-comment-avatar span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a80707, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}

.blog-comment-body {
  flex: 1;
}

.blog-comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.blog-comment-header strong {
  font-size: 0.95rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.blog-comment-header .blog-comment-date {
  font-size: 0.8rem;
  color: #adb5bd;
  display: flex;
  align-items: center;
}

.blog-comment-body > p {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-comment-reply-btn {
  font-size: 0.8rem !important;
  font-weight: 600;
  color: #a80707 !important;
  text-decoration: none !important;
}
.blog-comment-reply-btn:hover {
  text-decoration: underline !important;
}

.blog-comment-reply-form {
  margin-top: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--radius-md);
}

.blog-comment-form {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.blog-comment-form h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.blog-comment-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.search-result-item {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #212529;
  transition: all 0.2s ease;
  border-radius: var(--radius-sm);
}
.search-result-item:hover {
  background: rgba(168, 7, 7, 0.04);
  padding-left: 1.5rem;
}
.search-result-item:last-child {
  border-bottom: none;
}

.product-detail .product-meta dt {
  color: #6c757d;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-detail .product-meta dd {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}
.product-detail .sidebar-card {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.counter-visible .number {
  animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid > .service-card {
    margin: 0;
    border-radius: var(--radius-lg);
  }
}
@media (max-width: 992px) {
  .top-bar .top-bar-contact a:last-child span,
  .top-bar .top-bar-contact .top-bar-sep {
    display: none;
  }
  .navbar .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0 !important;
  }
  .hero-section .hero-stats {
    gap: 2rem;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid > .service-card {
    margin: 0;
    border-radius: var(--radius-lg);
  }
  .service-number {
    font-size: 2.5rem;
  }
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-page-section .contact-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-page-section .contact-info,
  .contact-page-section .contact-form {
    padding: 2.5rem;
  }
  .blog-sidebar {
    position: static !important;
    margin-top: 2rem;
  }
  .industry-card {
    padding: 1.5rem;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh !important;
  }
  .hero-section h1 {
    font-size: 2.25rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section .hero-cta {
    margin-top: 2rem;
  }
  .hero-section .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-item .number {
    font-size: 2rem;
  }
  .product-card .card-body {
    padding: 1.1rem 1.25rem 1.25rem;
  }
  .product-card .product-name {
    font-size: 0.95rem;
    min-height: 2.5rem;
  }
  .product-infinite-carousel {
    padding: 0 40px;
  }
  .product-infinite-carousel::before,
  .product-infinite-carousel::after {
    width: 40px;
  }
  .product-prev {
    left: 5px;
  }
  .product-next {
    right: 5px;
  }
  .product-prev, .product-next {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .contact-section .contact-info, .contact-section .contact-form {
    padding: 2rem;
  }
  .contact-page-section .contact-info,
  .contact-page-section .contact-form {
    padding: 2rem;
  }
  .contact-page-section .contact-info h3 {
    font-size: 1.35rem;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .col-md-6 {
    margin-bottom: 1rem;
  }
  .author-profile-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .author-profile-card .author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .blog-author-box {
    flex-direction: column;
    text-align: center;
  }
  .blog-author-box .author-avatar {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  .hero-section .hero-cta {
    flex-direction: column;
  }
  .hero-section .hero-cta .btn {
    width: 100%;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .contact-section .contact-info, .contact-section .contact-form {
    padding: 1.5rem;
  }
  .contact-page-section .contact-info,
  .contact-page-section .contact-form {
    padding: 1.5rem;
  }
  .contact-page-section .contact-info h3 {
    font-size: 1.2rem;
  }
  .contact-page-section .contact-info .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .product-infinite-carousel {
    padding: 0 30px;
  }
  .product-infinite-carousel::before,
  .product-infinite-carousel::after {
    width: 30px;
  }
  .blog-card .blog-image {
    height: 180px;
  }
  .top-bar .top-bar-contact a:first-child span {
    display: none;
  }
  .top-bar .top-bar-contact {
    gap: 0.5rem;
  }
}
.shadow-hover {
  transition: box-shadow 0.3s ease;
}
.shadow-hover:hover {
  box-shadow: var(--shadow-lg);
}

.rounded-card {
  border-radius: var(--radius-lg) !important;
}

.gradient-border {
  position: relative;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #a80707, #c0392b);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 7, 7, 0.1), transparent 70%);
  border-radius: 50%;
}
.page-hero .breadcrumb {
  margin-bottom: 1.5rem;
  background: none;
  padding: 0;
  font-size: 0.85rem;
}
.page-hero .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.5);
}
.page-hero .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-hero .breadcrumb .breadcrumb-item a:hover {
  color: #d43f3f;
}
.page-hero .breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}
.page-hero .breadcrumb + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}
.page-hero .page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.page-hero .page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-bottom: 0;
}

.product-sidebar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.product-sidebar .sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(168, 7, 7, 0.1);
}
.product-sidebar .sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-sidebar .sidebar-nav li {
  margin-bottom: 0.25rem;
}
.product-sidebar .sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: #495057;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.product-sidebar .sidebar-nav li a i {
  font-size: 0.7rem;
  opacity: 0.5;
}
.product-sidebar .sidebar-nav li a:hover {
  background: rgba(168, 7, 7, 0.05);
  color: #a80707;
}
.product-sidebar .sidebar-nav li a.active {
  background: #a80707;
  color: #ffffff;
  font-weight: 600;
}
.product-sidebar .sidebar-nav li a.active i {
  opacity: 1;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f8f9fa;
}
.product-detail-image {
  aspect-ratio: 1 / 1;
  max-height: 400px;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.product-detail-cas {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.product-detail-cas .cas-badge, .product-detail-cas .formula-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "JetBrains Mono", "Fira Code", monospace;
}
.product-detail-cas .cas-badge {
  background: rgba(168, 7, 7, 0.08);
  color: #a80707;
}
.product-detail-cas .formula-badge {
  background: rgba(52, 58, 64, 0.08);
  color: #343a40;
}

.product-detail-section {
  margin-bottom: 2rem;
}
.product-detail-section .detail-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-detail-section .detail-section-title i {
  color: #a80707;
}
.product-detail-section .detail-content {
  color: #495057;
  line-height: 1.8;
}

.product-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}
.product-sidebar-card .sidebar-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(168, 7, 7, 0.1);
}

.spec-list {
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-item .spec-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}
.spec-item .spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #212529;
  text-align: right;
}

.spec-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.spec-actions .btn {
  flex: 1;
}

.btn-block {
  display: block;
  width: 100%;
}

.about-content .about-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-content .about-text {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-wrapper .about-company-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 7, 7, 0.15);
}
.about-stat-card .about-stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 7, 7, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #a80707;
}
.about-stat-card .about-stat-number {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #a80707;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-card .about-stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-card .value-icon {
  width: 72px;
  height: 72px;
  background: rgba(168, 7, 7, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: #a80707;
  transition: all 0.3s ease;
}
.value-card .value-icon:hover {
  background: #a80707;
  color: #ffffff;
}
.value-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
}
.value-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-mission-vision {
  background: #f8f9fa;
}

.about-mv-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-mv-card .about-mv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #a80707, #0a0a0a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.about-mv-card h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.about-mv-card p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 0;
}

.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2.5rem;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #a80707, rgba(168, 7, 7, 0.2));
  border-radius: 3px;
}

.about-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 3px solid #a80707;
  border-radius: 50%;
  z-index: 1;
}

.about-timeline-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.about-timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 7, 7, 0.15);
}
.about-timeline-content .about-timeline-year {
  display: inline-block;
  background: rgba(168, 7, 7, 0.1);
  color: #a80707;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.about-timeline-content h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.about-timeline-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.about-why-us {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #ffffff;
}
.about-why-us .section-title {
  color: #ffffff;
}
.about-why-us .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.about-why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.about-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.about-why-card .about-why-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 7, 7, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgb(241.44, 10.06, 10.06);
  margin-bottom: 1.25rem;
}
.about-why-card h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.about-why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-cert-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 7, 7, 0.15);
}
.about-cert-card .about-cert-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(168, 7, 7, 0.1), rgba(168, 7, 7, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #a80707;
}
.about-cert-card h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-cert-card p {
  color: #adb5bd;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.about-global {
  background: #f8f9fa;
}

.about-global-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-global-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 7, 7, 0.15);
}
.about-global-card .about-global-icon {
  width: 64px;
  height: 64px;
  background: rgba(168, 7, 7, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: #a80707;
}
.about-global-card h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-global-card p {
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.about-global-card .about-global-badge {
  display: inline-block;
  background: rgba(168, 7, 7, 0.08);
  color: #a80707;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.about-team-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-team-card .about-team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(168, 7, 7, 0.12), rgba(168, 7, 7, 0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: #a80707;
}
.about-team-card .about-team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-team-card h5 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-team-card .about-team-role {
  display: inline-block;
  color: #a80707;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.about-team-card p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-testimonials {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #ffffff;
}
.about-testimonials .section-title {
  color: #ffffff;
}
.about-testimonials .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.about-testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.about-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.about-testimonial-card .about-testimonial-quote {
  font-size: 3rem;
  color: #a80707;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-testimonial-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.about-testimonial-card .about-testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.about-testimonial-card .about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-testimonial-card .about-testimonial-author .about-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a80707, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.about-testimonial-card .about-testimonial-author .about-testimonial-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.about-testimonial-card .about-testimonial-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}
.about-testimonial-card .about-testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.testimonial-carousel-wrapper {
  position: relative;
}

.testimonial-infinite-carousel {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.testimonial-infinite-carousel .swiper-wrapper {
  align-items: stretch;
}
.testimonial-infinite-carousel .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-carousel-wrapper .swiper-button-prev,
.testimonial-carousel-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.testimonial-carousel-wrapper .swiper-button-prev::after,
.testimonial-carousel-wrapper .swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
}
.testimonial-carousel-wrapper .swiper-button-prev:hover,
.testimonial-carousel-wrapper .swiper-button-next:hover {
  background: #a80707;
}
.testimonial-carousel-wrapper .swiper-button-prev:hover::after,
.testimonial-carousel-wrapper .swiper-button-next:hover::after {
  color: #ffffff;
}

.testimonial-carousel-wrapper .swiper-button-prev {
  left: 10px;
}

.testimonial-carousel-wrapper .swiper-button-next {
  right: 10px;
}

@media (max-width: 576px) {
  .testimonial-carousel-wrapper .swiper-button-prev,
  .testimonial-carousel-wrapper .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
  .testimonial-carousel-wrapper .swiper-button-prev::after,
  .testimonial-carousel-wrapper .swiper-button-next::after {
    font-size: 0.9rem;
  }
}
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-state .empty-icon {
  width: 80px;
  height: 80px;
  background: rgba(108, 117, 125, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #adb5bd;
}
.empty-state h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.empty-state p {
  color: #6c757d;
  max-width: 400px;
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

.cert-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.cert-card:hover .cert-card-overlay {
  opacity: 1;
}

.cert-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cert-card-image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background: #f8f9fa;
}
.cert-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cert-card:hover .cert-card-image img {
  transform: scale(1.05);
}

.cert-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(168, 7, 7, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.cert-card-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cert-card-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cert-card-body {
  padding: 1.25rem;
}

.cert-card-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.cert-card-meta {
  font-size: 0.85rem;
  color: #adb5bd;
  margin-bottom: 0.5rem;
}
.cert-card-meta i {
  margin-right: 4px;
  color: #a80707;
}

.cert-card-desc {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cert-card-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #adb5bd;
}
.cert-card-dates i {
  margin-right: 3px;
}

.cert-date {
  display: inline-flex;
  align-items: center;
}

.cert-expired {
  color: #dc3545;
  font-weight: 600;
}

@media (max-width: 992px) {
  .product-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .product-sidebar-card {
    position: static;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-timeline {
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 2rem;
  }
  .page-hero .page-hero-title {
    font-size: 1.75rem;
  }
  .product-detail-title {
    font-size: 1.5rem;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-stat-card {
    padding: 1.5rem 1rem;
  }
  .about-stat-card .about-stat-number {
    font-size: 1.75rem;
  }
  .about-mv-card {
    padding: 2rem;
  }
  .about-timeline {
    padding-left: 1.5rem;
  }
  .about-timeline::before {
    left: 5px;
  }
  .about-timeline-dot {
    left: -1.5rem;
    width: 18px;
    height: 18px;
  }
  .about-timeline-content {
    padding: 1.25rem 1.5rem;
  }
  .about-testimonial-card {
    padding: 1.5rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info, .contact-form {
    padding: 2rem;
  }
}
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: #a80707;
  border-color: #a80707;
}

:root {
  --bs-primary: #a80707;
  --bs-primary-rgb: 168, 7, 7;
  --bs-link-color: #a80707;
  --bs-link-hover-color: #700404;
}

.btn-primary, .btn-outline-primary {
  --bs-btn-bg: #a80707;
  --bs-btn-border-color: #a80707;
  --bs-btn-hover-bg: #700404;
  --bs-btn-hover-border-color: #700404;
  --bs-btn-active-bg: #700404;
  --bs-btn-active-border-color: #700404;
  --bs-btn-disabled-bg: #a80707;
  --bs-btn-disabled-border-color: #a80707;
}

/*# sourceMappingURL=style.css.map */

/* =========================
   BRAND VARIABLES
========================= */
:root {
    --brand-red: #a80707;
    --brand-red-dark: #7f0505;
    --brand-red-light: #d10a0a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}

/* =========================
   ACCORDION (PREMIUM LOOK)
========================= */
.accordion {
    --bs-accordion-active-bg: var(--brand-red);
    --bs-accordion-active-color: var(--text-light);
    --bs-accordion-btn-focus-border-color: var(--brand-red);
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    transition: all 0.3s ease;
}

/* OPEN STATE */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: var(--text-light);
}

/* ICON COLOR (ARROW) */
.accordion-button::after {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* BODY */
.accordion-body {
    background: #fafafa;
    color: #555;
    line-height: 1.7;
}

/* =========================
   BUTTONS (GLOBAL STYLE)
========================= */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 7, 7, 0.3);
}

/* =========================
   LINKS (SITE-WIDE)
========================= */
a {
    color: var(--brand-red);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--brand-red-dark);
    text-decoration: underline;
}

/* =========================
   HEADINGS TOUCH
========================= */
.preview-title {
    font-weight: 700;
    position: relative;
}

.preview-title::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: var(--brand-red);
    margin: 8px auto 0;
    border-radius: 2px;
}




    

    .modal-title {
    color: #fff;
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}


button.btn.btn-primary.btn-sm{
  display: none;
}

/* Floating Chat Widget */
.floating-chat {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-chat-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.floating-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #fff;
  text-decoration: none;
}
.floating-chat-btn i {
  line-height: 1;
}
@media (max-width: 576px) {
  .floating-chat {
    right: 10px;
  }
  .floating-chat-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ═══════════════════════════════════════════════════
   TRUSTED PARTNER SECTION — Premium B2B Chemical
   ═══════════════════════════════════════════════════ */
.trust-section {
  padding: 3.5rem 0;
  position: relative;
  background: var(--white);
}

.container-trust {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.trust-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.trust-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s ease;
}
.trust-row:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.trust-row:last-child {
  margin-bottom: 0;
}

.trust-content {
  padding-right: 1rem;
}
.trust-row-reverse .trust-content {
  padding-right: 0;
  padding-left: 1rem;
}

.trust-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.trust-text {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 0.75rem;
}
.trust-text:last-of-type {
  margin-bottom: 1.25rem;
}

/* Stats row */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.trust-stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.trust-stat:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.trust-stat:hover .trust-stat-num,
.trust-stat:hover .trust-stat-label {
  color: #fff;
}
.trust-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  transition: color 0.3s ease;
}
.trust-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #777;
  margin-top: 0.15rem;
  transition: color 0.3s ease;
}

/* Benefits list (Why Choose) */
.trust-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trust-benefits li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  transition: all 0.3s ease;
}
.trust-benefits li:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.trust-benefit-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
}
.trust-benefits li strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.trust-benefits li p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Process steps */
.trust-process {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.trust-process-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  transition: all 0.3s ease;
}
.trust-process-step:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.trust-process-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}
.trust-process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.1rem;
}
.trust-process-step p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #666;
  margin: 0;
}

/* Image wrapper — gradient always visible behind image */
.trust-visual {
  position: relative;
}
.trust-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.trust-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.trust-image-fallback i {
  font-size: 4rem;
  color: rgba(255,255,255,0.12);
}
.trust-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.trust-image-wrap:hover .trust-image {
  transform: scale(1.05);
}
.trust-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, transparent 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.trust-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-body);
  pointer-events: none;
}

/* Reverse row layout */
.trust-row-reverse {
  direction: rtl;
}
.trust-row-reverse .trust-content,
.trust-row-reverse .trust-visual {
  direction: ltr;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .trust-section {
    padding: 2.5rem 0;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 2.5rem;
  }
  .trust-content {
    padding: 0 !important;
  }
  .trust-row-reverse {
    direction: ltr;
  }
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-title {
    font-size: 1.75rem;
  }
  .trust-image-wrap {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 576px) {
  .trust-section {
    padding: 2rem 0;
  }
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .trust-stat {
    padding: 0.5rem 0.25rem;
  }
  .trust-stat-num {
    font-size: 1rem;
  }
  .trust-title {
    font-size: 1.35rem;
  }
  .trust-heading {
    font-size: 1.2rem;
  }
  .trust-benefits li,
  .trust-process-step {
    padding: 0.6rem 0.75rem;
  }
}

/* ── Trust Bar (About Page) ── */
.trust-bar {
  background: #f8f9fa;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-bar-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trust-bar-item i {
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-bar-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-item {
    padding: 0.75rem;
  }
  .trust-bar-item i {
    font-size: 1.1rem;
  }
  .trust-bar-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
}