/* KFM Global - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #c10517;
  --primary-hover: #a30414;
  --navy: #0d1117;
  --secondary: #141a26;
  --light-bg: #f8f9fa;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* Navbar Styles */
.navbar-kfm {
  background-color: var(--navy) !important;
  transition: all 0.3s ease;
}

.navbar-kfm .navbar-brand img {
  height: 56px;
  transition: transform 0.3s ease;
}

.navbar-kfm .navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-kfm .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem !important;
  transition: color 0.3s ease;
}

.navbar-kfm .nav-link:hover,
.navbar-kfm .nav-link.active {
  color: var(--primary) !important;
}

.navbar-kfm .dropdown-menu {
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  min-width: 280px;
  padding: 1rem 0;
}

.navbar-kfm .dropdown-header {
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0.5rem;
  border-radius: 0.25rem;
}

.navbar-kfm .dropdown-item {
  color: white;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.navbar-kfm .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.top-bar {
  background-color: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--primary);
}

.lang-btn {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background-color: var(--primary);
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
}

.lang-btn:hover:not(.active) {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(13, 17, 23, 0.8) 50%, transparent 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.5) 0%, transparent 50%, rgba(13, 17, 23, 0.3) 100%);
}

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

.hero-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
}

.hero-indicator {
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.5s ease;
  cursor: pointer;
}

.hero-indicator.active {
  width: 48px !important;
  background-color: var(--primary);
}

/* Section Styles */
.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Product Card */
.product-card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 4px 20px -4px rgba(26, 26, 26, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(26, 26, 26, 0.2);
}

.product-card .card-img-top {
  transition: transform 0.7s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.1);
}

.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card .product-category {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card .btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.product-card:hover .btn-icon {
  background-color: var(--primary);
  color: white;
}

.product-card .bottom-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.product-card:hover .bottom-accent {
  transform: scaleX(1);
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 50%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* News Section */
.news-card {
  cursor: pointer;
}

.news-card .news-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.news-card .news-img {
  transition: transform 0.7s ease;
}

.news-card:hover .news-img {
  transform: scale(1.1);
}

.news-card .news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(13, 17, 23, 0.4) 50%, transparent 100%);
}

.news-card .news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.news-card .news-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.news-card:hover .news-arrow {
  opacity: 1;
  transform: scale(1);
}

.news-card .news-title {
  font-weight: 700;
  transition: color 0.3s ease;
  color: var(--navy);
}

.news-card:hover .news-title {
  color: var(--primary);
}

/* Quick Links */
.quick-link-card {
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px -4px rgba(26, 26, 26, 0.15);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.quick-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.quick-link-card.blue::before {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
}

.quick-link-card.orange::before {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}

.quick-link-card.green::before {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
}

.quick-link-card.purple::before {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(26, 26, 26, 0.25);
  border-color: var(--primary);
}

.quick-link-card:hover::before {
  opacity: 1;
}

.quick-link-card .icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background-color: rgba(193, 5, 23, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 2px solid rgba(193, 5, 23, 0.2);
}

.quick-link-card:hover .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.quick-link-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.quick-link-card:hover .icon-wrapper i {
  color: white;
}

.quick-link-card .link-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  color: var(--navy);
}

.quick-link-card:hover .link-title {
  color: white;
}

.quick-link-card .link-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.quick-link-card:hover .link-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--primary) 0%, #e62b3c 100%);
}

/* Footer */
.footer-main {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.footer-decorative {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background-color: rgba(193, 5, 23, 0.05);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.footer-decorative-1 {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.footer-decorative-2 {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.footer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-link i {
  opacity: 0;
  margin-left: -1.5rem;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  opacity: 1;
  margin-left: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background-color: rgba(193, 5, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 50%, var(--navy) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.page-header .page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 3.5rem;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #20bd5a;
  color: white;
  transform: scale(1.05);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  max-width: 400px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px -15px rgba(26, 26, 26, 0.2);
  padding: 1.25rem;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(193, 5, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Accordion */
.accordion-kfm .accordion-item {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
}

.accordion-kfm .accordion-button {
  font-weight: 600;
  color: #1a1a1a;
}

.accordion-kfm .accordion-button:not(.collapsed) {
  background-color: rgba(193, 5, 23, 0.05);
  color: var(--primary);
}

.accordion-kfm .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* Tables */
.table-kfm thead {
  background-color: #f8f9fa;
}

.table-kfm th {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.table-kfm tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(193, 5, 23, 0.1);
}

/* Filter Buttons */
.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover {
  background-color: var(--secondary);
  color: white;
  text-decoration: none;
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 10px 40px -10px rgba(193, 5, 23, 0.4);
  text-decoration: none;
}

/* Filter Bar Container */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

/* Utility Classes */
.bg-navy {
  background-color: var(--navy) !important;
}

.bg-secondary-dark {
  background-color: var(--secondary) !important;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.text-muted-custom {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* Feature Card */
.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px -4px rgba(26, 26, 26, 0.1);
}

.feature-card i {
  color: var(--primary);
}

/* Vision/Mission Cards */
.vision-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(26, 26, 26, 0.1);
  transition: all 0.5s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(26, 26, 26, 0.2);
}

.vision-card .card-header-custom {
  padding: 1.5rem 2rem;
}

.vision-card .card-header-custom.navy {
  background-color: var(--secondary);
}

.vision-card .card-header-custom.primary {
  background-color: var(--primary);
}

.vision-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary);
}

.carousel-control-prev {
  left: 1.5rem;
}

.carousel-control-next {
  right: 1.5rem;
}

/* Specs Badge */
.specs-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* Info Card */
.info-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(193, 5, 23, 0.5);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  background-color: rgba(193, 5, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.info-card:hover .info-icon {
  background-color: rgba(193, 5, 23, 0.2);
}

/* Stat Box */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box .stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  background-color: rgba(193, 5, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.stat-box .stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
}

/* Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Note Box */
.note-box {
  background-color: rgba(193, 5, 23, 0.05);
  border: 1px solid rgba(193, 5, 23, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

/* File Icon */
.file-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background-color: rgba(193, 5, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Hero Decorative Circles */
.hero-decorative {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33%;
  height: 100%;
  pointer-events: none;
}

.decorative-circle-1 {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(193, 5, 23, 0.3);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}

.decorative-circle-2 {
  position: absolute;
  bottom: 10rem;
  right: 10rem;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite reverse;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  animation: pulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transform: rotate(90deg);
  transform-origin: left center;
  margin-left: 1rem;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* News Navigation Buttons */
.news-nav-btn:hover {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
  color: white !important;
}

/* Link Hover Effect */
.link-hover-effect:hover {
  color: var(--primary) !important;
}

.link-hover-effect i {
  transition: transform 0.3s ease;
}

.link-hover-effect:hover i {
  transform: translate(2px, -2px);
}

/* Breadcrumb */
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-dark .breadcrumb-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-dark .breadcrumb-item a:hover {
  color: var(--primary) !important;
}

/* Product Detail */
.product-detail-image {
  border: 1px solid var(--border-color);
}

.feature-icon-sm {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background-color: rgba(193, 5, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.safety-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.back-link {
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--primary) !important;
}

.back-link:hover i {
  transform: translateX(-4px);
}

.back-link i {
  transition: transform 0.3s ease;
}

/* News Detail */
.news-content h2,
.news-content h3,
.news-content h4 {
  color: var(--navy);
}

.news-content p,
.news-content li {
  line-height: 1.8;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  transition: transform 0.7s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-image .news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

/* Social Share Buttons */
.social-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-share-btn:hover {
  background-color: var(--primary);
  color: white;
}

/* Button Outline Secondary */
.btn-outline-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

/* Cookie Consent Buttons */
.cookie-consent .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  line-height: 1;
}

.cookie-consent .btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
  background-color: transparent;
}

.cookie-consent .btn-outline-dark:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* Global Button Fixes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  border-color: white;
  color: var(--navy);
}

/* Background Colors */
.bg-navy {
  background-color: var(--navy) !important;
}

.bg-primary-custom {
  background-color: var(--primary) !important;
}

/* ==================== */
/* MOBILE RESPONSIVE    */
/* ==================== */

/* Technical Specs Table - Mobile */
@media (max-width: 991.98px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive table {
    min-width: 600px;
  }

  .table th,
  .table td {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.75rem 0.5rem !important;
  }
}

/* Mobile: Small screens (up to 767px) */
@media (max-width: 767.98px) {
  /* Navbar Mobile */
  .navbar-kfm .navbar-brand img {
    height: 40px;
  }

  .navbar-kfm .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem;
  }

  .navbar-kfm .btn-primary {
    width: 100%;
    margin-top: 1rem;
  }

  /* Top Bar Mobile */
  .top-bar {
    display: none;
  }

  /* Hero Section Mobile */
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .hero-content .btn {
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Scroll Indicator - hide on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.75rem !important;
  }

  .section-subtitle {
    font-size: 0.7rem;
  }

  /* Link Hover Effect - Mobile visible */
  .link-hover-effect {
    color: var(--navy) !important;
  }

  .link-hover-effect i {
    display: none;
  }

  /* Section title red text - make it dark on mobile for readability */
  .section-title .text-primary-custom {
    color: var(--navy) !important;
  }

  /* Page Headers */
  .page-header {
    padding: 3rem 0 !important;
  }

  .page-header h1,
  .page-title {
    font-size: 2rem !important;
  }

  /* Product Cards */
  .product-card .card-body {
    padding: 1rem;
  }

  .product-card .card-title {
    font-size: 1rem;
  }

  .product-card .btn-icon {
    width: 32px;
    height: 32px;
  }

  /* News Cards */
  .news-card .news-title {
    font-size: 0.95rem;
  }

  /* Quick Link Cards */
  .quick-link-card {
    padding: 1.5rem;
  }

  .quick-link-card .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .quick-link-card .icon-wrapper i {
    font-size: 1.5rem;
  }

  .quick-link-card .link-title {
    font-size: 1rem;
  }

  .quick-link-card .link-desc {
    font-size: 0.8rem;
  }

  /* Stats Section */
  .stat-card {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* About Section Features */
  .about-section .row.g-3 .col-6 {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-main {
    text-align: center;
  }

  .footer-main .row.g-5 {
    --bs-gutter-y: 1.5rem;
  }

  .footer-main .col-lg-3 {
    margin-bottom: 0.5rem;
  }

  .footer-main .col-lg-3:last-child {
    margin-bottom: 0;
  }

  .footer-main ul {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
  }

  .footer-main .d-flex.gap-3 {
    justify-content: center;
  }

  .footer-main .d-flex.gap-2 {
    justify-content: center;
  }

  .footer-main .text-muted-custom {
    display: block;
    text-align: center;
  }

  .footer-main .footer-title {
    margin-bottom: 1rem !important;
  }

  /* WhatsApp Button Mobile */
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  /* Cookie Consent Mobile */
  .cookie-consent {
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
  }

  /* Product Detail Page */
  .product-detail-image {
    margin-bottom: 1.5rem;
  }

  .feature-icon-sm {
    width: 28px;
    height: 28px;
  }

  /* Technical Specs Table Mobile */
  .table-responsive table {
    font-size: 0.8rem;
  }

  .table th,
  .table td {
    padding: 0.5rem 0.35rem !important;
  }

  /* Buttons on Detail Pages */
  .d-flex.gap-3 {
    flex-wrap: wrap;
  }

  .d-flex.gap-3 .btn-lg {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }

  /* Vision Mission Cards */
  .vision-card .card-header-custom {
    padding: 1rem !important;
  }

  .vision-card .icon-box {
    width: 40px;
    height: 40px;
  }

  /* Contact Info Cards */
  .contact-icon {
    width: 36px;
    height: 36px;
  }

  /* Breadcrumb Mobile */
  .breadcrumb {
    font-size: 0.8rem;
  }

  /* Back Link */
  .back-link {
    font-size: 0.9rem;
  }

  /* Filter Bar Mobile */
  .filter-bar {
    gap: 0.5rem;
    margin: 0 -0.75rem;
    padding: 0 0.75rem 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Extra Small screens (up to 575px) */
@media (max-width: 575.98px) {
  .hero-title,
  .hero-content h1 {
    font-size: 2rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .page-header h1,
  .page-title {
    font-size: 1.75rem !important;
  }

  /* Carousel Indicators */
  .hero-indicators {
    bottom: 1rem;
  }

  .hero-indicators button {
    width: 8px;
    height: 8px;
  }

  /* Product Overlay Text */
  .product-overlay span {
    font-size: 0.75rem;
  }

  /* News Navigation Buttons */
  .news-nav-btn {
    width: 40px !important;
    height: 40px !important;
  }

  /* Stats Grid */
  .stat-number {
    font-size: 2rem;
  }
}
