/* AGGRESSIVE MOTORCYCLE THEME - CUSTOM OVERRIDES */

:root {
  --primary-color: #e60012;
  --dark-color: #0a0a0a;
  --darker-color: #000000;
  --light-color: #ffffff;
  --accent-color: #333333;
  --accent-hover: #444444;
  --highlight: #ff3300;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --text-dark: #333333;
  --text-medium: #555555;
}

/* GLOBAL RESETS - REMOVE ALL ROUNDED CORNERS */
* {
  border-radius: 0 !important;
}


/* GLOBAL NAVIGATION STYLING */
.navbar {
  background-color: var(--dark-color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid var(--primary-color);
  padding: 0;
}

.navbar .container {
  position: relative;
}

.navbar .nav-link {
  color: var(--light-color) !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 20px !important;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(230, 0, 18, 0.1);
}

.navbar .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover:after,
.navbar .nav-link.active:after {
  width: 100%;
}

/* MOBILE MENU STYLING */
.hc-offcanvas-nav .nav-container, 
.hc-offcanvas-nav .nav-wrapper, 
.hc-offcanvas-nav ul {
  background: var(--darker-color);
}

.hc-offcanvas-nav .nav-item-link, 
.hc-offcanvas-nav li.nav-close a, 
.hc-offcanvas-nav .nav-back a {
  color: var(--light-color);
  border-bottom: 1px solid var(--accent-color);
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: background 0.2s ease;
}

.hc-offcanvas-nav .nav-item-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height 0.2s ease;
}

.hc-offcanvas-nav .nav-item-link:hover:before {
  height: 100%;
}

.hc-offcanvas-nav .nav-content > .nav-close:first-child a, 
.hc-offcanvas-nav .nav-title + .nav-close a.has-label, 
.hc-offcanvas-nav li.nav-close a, 
.hc-offcanvas-nav .nav-back a {
  background: var(--darker-color);
  border-top: 0;
  border-bottom: 2px solid var(--primary-color);
}

.hc-offcanvas-nav .nav-wrapper > .nav-content > ul:first-of-type > li:first-child:not(.nav-back):not(.nav-close) > .nav-item-wrapper > .nav-item-link {
  border-top: 2px solid var(--primary-color);
}

.hc-offcanvas-nav li:not(.custom-content) a, 
.hc-offcanvas-nav li:not(.custom-content) a:hover {
  padding: 18px 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hc-offcanvas-nav li:not(.custom-content) a:hover {
  background-color: var(--accent-hover);
  color: var(--primary-color);
}

.hc-offcanvas-nav .nav-next span::before, 
.hc-offcanvas-nav .nav-back span::before {
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}

.hc-offcanvas-nav .nav-close-button span::before, 
.hc-offcanvas-nav .nav-close-button span::after {
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}

/* DROPDOWN MENU STYLING */
.navbar .dropdown-menu {
  background-color: var(--darker-color);
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.navbar .dropdown-item {
  color: var(--light-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-left: 4px solid transparent;
  transition: background 0.2s ease, border-left 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

/* LOGO STYLING */
.logo-wrapper {
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.logo-img {
  max-height: 50px;
  transition: all 0.3s ease;
}

/* SCROLL BEHAVIOR */
.nav-scroll {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.nav-scroll .logo-img {
  max-height: 40px;
}

/* MOBILE TOGGLE BUTTON */
.navbar-toggler {
  border: none;
  padding: 0;
  margin-right: 15px;
  position: relative;
  width: 30px;
  height: 22px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--light-color);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2),
.navbar-toggler span:nth-child(3) {
  top: 10px;
}

.navbar-toggler span:nth-child(4) {
  top: 20px;
}

.navbar-toggler:hover span {
  background: var(--primary-color);
}

.navbar-toggler.open span:nth-child(1),
.navbar-toggler.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.navbar-toggler.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar-toggler.open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* UTILITY CLASSES */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

/* Main Navigation Styling */
.navbar {
  background-color: rgba(18, 18, 18, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 15px !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #e60012 !important;
}

.navbar .dropdown-menu {
  background-color: #1a1a1a;
  border: none;
}

.navbar .dropdown-item {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #333;
  color: #e60012;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo Styling */
.logo-wrapper {
  padding: 15px 0;
}

.logo-img {
  max-height: 50px;
  transition: all 0.3s ease;
}

/* Scroll Behavior */
.nav-scroll {
  background-color: #121212;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-scroll .logo-img {
  max-height: 45px;
}

/* Mobile Menu Toggle Button */
.toggle-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.toggle-button span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.toggle-button:hover span {
  background-color: #e60012;
}

/* SCROLL ANIMATIONS */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.delay-200 {
  transition-delay: 0.2s;
}

.scroll-animate.delay-400 {
  transition-delay: 0.4s;
}

.scroll-animate.delay-600 {
  transition-delay: 0.6s;
}

body {
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  background-color: var(--light-color);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

h1 {
  font-size: 60px;
  line-height: 1;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  
}

/* BIKE CARD IMAGE FIXES */
.bike-image .owl-carousel .owl-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  padding: 0;
}

.bike-image .owl-carousel.no-lazy .owl-item img {
  opacity: 1 !important;
}

.bike-image .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  /* transform: translateY(-50%); */
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.bike-image .owl-carousel .owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-image .owl-carousel .owl-nav button:hover {
  background: rgba(230, 0, 18, 0.8);
}

/* Bike card styling */
.bike-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .bike-image .image-item {
    min-height: auto;
    max-height: none;
  }
  
  .bike-image .owl-carousel .owl-item img {
    max-height: 200px;
  }
  
  .bike-thumbnails {
    margin-top: 5px;
  }
  
  .bike-thumbnails .thumbnail {
    width: 40px;
    height: 30px;
  }
}

/* Large screen adjustments */
@media (min-width: 992px) {
  .bike-image .image-item {
    min-height: 350px;
    padding: 20px 0;
  }
  
  .bike-image .owl-carousel .owl-item img {
    max-height: 320px;
  }
  
  .bike-thumbnails {
    margin-top: 15px;
  }
}

.bike-image {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  min-height: auto !important;
  padding: 0 !important;
}

.bike-image .image-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 200px;
  width: 100%;
  padding: 15px 0;
}

.bike-image .image-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Bike thumbnails styling */
.bike-thumbnails {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.bike-thumbnails .thumbnail {
  width: 60px;
  height: 45px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.bike-thumbnails .thumbnail.active,
.bike-thumbnails .thumbnail:hover {
  border-color: var(--primary-color);
  opacity: 1;
}

.bike-thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTONS */
.button-1,
.button-2,
.button-3,
.button-4 {
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 100%, 75% 100%, 0 100%);
  text-decoration: none;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  position: relative;
}

.button-1 {
  background-color: var(--accent-color);
  color: var(--light-color);
  position: relative;
  padding-left: 50px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 100%, 0 100%);
}

.button-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: var(--primary-color);
}

/* .button-1:hover {
  background-color: #333;
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
} */

.button-2 {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  transform: skewX(-20deg);
}

.button-2.button-2-white {
  border: 1px solid white;
  color: white;
}

.button-2:hover {
  background-color: var(--text-dark);
  color: var(--light-color);
  transform: skewX(-20deg);
}

.button-3 {
  background-color: var(--accent-color);
  color: var(--light-color);
  border: 1px solid var(--accent-color);
}

.button-3:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-5px);
}

.button-4 {
  background-color: var(--accent-color);
  color: var(--light-color);
  position: relative;
  font-weight: 700;
  padding: 12px 30px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-left: 25px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 100%, 0 100%);
}

.button-4::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 0;
  height: 100%;
  width: 15px;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.button-4:hover {
  background-color: var(--text-dark);
  color: var(--light-color);
}

/* HERO SECTION */
.hero-video-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

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

.hero-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hero-subtitle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  color: var(--light-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 18px;
  color: var(--light-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION STYLING */
.section-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* PROCESS SECTION */
.process-section {
  background-color: var(--light-gray);
  padding: 100px 0;
  position: relative;
}

.process-box {
  background-color: var(--light-color);
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-box:hover {
  transform: translateY(-10px);
  background-color: var(--medium-gray);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  line-height: 1;
}

.process-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-left: 15px;
}

.process-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
}

.process-description {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* BIKE SHOWCASE */
.bike-showcase {
  background-color: var(--light-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bike-card {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: var(--light-color);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bike-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.bike-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bike-card:hover .bike-image img {
  transform: none;
}

.bike-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.bike-details {
  padding: 20px;
  position: relative;
}

.bike-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.bike-specs {
  display: flex;
  margin-bottom: 15px;
}

.bike-spec {
  margin-right: 15px;
  font-size: 14px;
  color: var(--text-medium);
}

.bike-spec i {
  color: var(--primary-color);
  margin-right: 5px;
}

.bike-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  background-color: var(--light-gray);
  padding: 100px 0;
  position: relative;
}

.testimonial-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://bikes.motobank.co.uk/media-library/website-images/pattern.png');
  opacity: 0.05;
}

.testimonial-box {
  background-color: var(--light-color);
  padding: 40px 30px;
  position: relative;
  margin-bottom: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-box:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--light-color);
}

.testimonial-author-info p {
  font-size: 14px;
  color: var(--primary-color);
  margin: 0;
}

/* FOOTER */
.footer {
  background-color: var(--darker-color);
  padding: 80px 0 0;
  position: relative;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaaaaa;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #aaaaaa;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--light-color);
  margin-right: 10px;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: #000000;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
  color: #777777;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* UTILITY CLASSES */
.bg-dark-custom {
  background-color: var(--dark-color) !important;
}

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

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

.angular-divider {
  height: 50px;
  background-color: transparent;
  position: relative;
  clip-path: polygon(20% 50%, 100% 0, 100% 79%, 0 100%);
  margin-top: -50px;
  z-index: 10;
  overflow: hidden;
}

.angular-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    rgba(216, 12, 36,0) 0%, 
    rgba(216, 12, 36,0.05) 5%,
    rgba(216, 12, 36,0.2) 15%, 
    rgba(216, 12, 36,0.5) 30%,
    rgba(216, 12, 36,1) 45%, 
    rgba(216, 12, 36,1) 55%, 
    rgba(216, 12, 36,0.5) 70%,
    rgba(216, 12, 36,0.2) 85%, 
    rgba(216, 12, 36,0.05) 95%,
    rgba(216, 12, 36,0) 100%);
  transform: translateY(-50%);
  box-shadow: 
    0 0 5px rgba(216, 12, 36,0.8),
    0 0 10px rgba(216, 12, 36,0.6),
    0 0 20px rgba(216, 12, 36,0.5),
    0 0 40px rgba(216, 12, 36,0.3),
    0 0 80px rgba(216, 12, 36,0.2);
  animation: uvPulse 2s infinite;
}

.angular-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,0,60,0.2) 0%, rgba(255,0,60,0) 70%);
}

.angular-divider-reverse {
  height: 50px;
  background-color: transparent;
  position: relative;
  clip-path: polygon(100% 50%, 0 0, 0 79%, 30% 100%);
  margin-top: -50px;
  z-index: 10;
  overflow: hidden;
}

.angular-divider-reverse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    rgba(216, 12, 36,0) 0%, 
    rgba(216, 12, 36,0.05) 5%,
    rgba(216, 12, 36,0.2) 15%, 
    rgba(216, 12, 36,0.5) 30%,
    rgba(216, 12, 36,1) 45%, 
    rgba(216, 12, 36,1) 55%, 
    rgba(216, 12, 36,0.5) 70%,
    rgba(216, 12, 36,0.2) 85%, 
    rgba(216, 12, 36,0.05) 95%,
    rgba(216, 12, 36,0) 100%);
  transform: translateY(-50%);
  box-shadow: 
    0 0 5px rgba(216, 12, 36,0.8),
    0 0 10px rgba(216, 12, 36,0.6),
    0 0 20px rgba(216, 12, 36,0.5),
    0 0 40px rgba(216, 12, 36,0.3),
    0 0 80px rgba(216, 12, 36,0.2);
  animation: uvPulse 2s infinite;
}

.angular-divider-reverse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,0,60,0.2) 0%, rgba(255,0,60,0) 70%);
}

@keyframes uvPulse {
  0% {
    opacity: 0.7;
    box-shadow: 
      0 0 5px #ff003c,
      0 0 10px #ff003c,
      0 0 20px #ff003c,
      0 0 40px #ff003c;
  }
  50% {
    opacity: 1;
    box-shadow: 
      0 0 10px #ff003c,
      0 0 20px #ff003c,
      0 0 40px #ff003c,
      0 0 80px #ff003c;
  }
  100% {
    opacity: 0.7;
    box-shadow: 
      0 0 5px #ff003c,
      0 0 10px #ff003c,
      0 0 20px #ff003c,
      0 0 40px #ff003c;
  }
}

/* BIKE SHOWCASE */
.bike-showcase {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

/* BIKE CARD STYLING */
.bike-card {
  margin-bottom: 30px;
  background-color: var(--dark-color);
  
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bike-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bike-image {
  position: relative;
  overflow: hidden;
  /* height: 250px; */
}

.bike-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.bike-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.bike-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bike-badges {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.bike-badge {
  display: inline-block;
  padding: 3px 8px;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.bike-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light-color);
}

.bike-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.bike-spec {
  font-size: 14px;
  color: #cccccc;
}

.bike-spec i {
  margin-right: 5px;
  color: var(--primary-color);
}

.bike-price-container {
  display: flex;
  flex-direction: column;
}

.bike-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--light-color);
}

.bike-price-was {
  font-size: 14px;
  text-decoration: line-through;
  color: #888888;
}

.bike-price-save {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

.bike-finance {
  font-size: 14px;
  color: #cccccc;
  display: flex;
  align-items: center;
}

.finance-info-btn {
  background: transparent;
  border: 0;
  font-size: 15px;
  color: #888888;
  padding: 0 0 0 5px;
}

.dealer-info {
  font-size: 14px;
  color: #cccccc;
  display: flex;
  align-items: center;
}

.dealer-info i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Image badges and thumbnails */
.images-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  text-decoration: none;
}

.tt-label-promo {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border: 1px solid var(--primary-color);
  font-weight: 500;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.video-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border: 1px solid var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.bike-thumbnails {
  display: flex;
  gap: 5px;
  padding: 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.thumbnail {
  width: 60px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--primary-color);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
  h1, .hero-title {
    font-size: 50px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .process-box, .bike-card, .testimonial-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  h1, .hero-title {
    font-size: 40px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .hero-subtitle:before {
    display: none;
  }
  
  .process-section, .bike-showcase, .testimonial-section {
    padding: 60px 0;
  }
}

.br-left-top{
  display: none;
}

.br-right-bottom{
  display: none;
}

/* PREMIUM COMPONENTS SECTION */
.premium-component {
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.premium-component img {
  transition: transform 0.3s ease;
}

.premium-component:hover img {
  transform: scale(1.1);
}

.premium-component h5 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  color: var(--text-dark);
}

.bg-light {
  background-color: var(--light-gray);
}

/* FEW MODELS SHOWCASE PAGE */
.few-models {
  overflow-x: clip;
}

.few-models-page-hero {
  position: relative;
  padding: 140px 0 110px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-color: #000;
  background-position: 50% calc(50% + var(--fm-parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.few-models-page-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.few-models-page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

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

.few-models-page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 20% 20%, rgba(230,0,18,0.30), rgba(230,0,18,0) 65%),
    linear-gradient(180deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}

.few-models-page-hero__title {
  color: var(--light-color);
  margin-bottom: 10px;
  text-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.few-models-page-hero__subtitle {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: 0;
}

.few-models-page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.few-models-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.88);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}

.few-models-intro {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.98) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.few-models-intro__title {
  color: var(--light-color);
  margin-bottom: 14px;
}

.few-models-intro__text {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}

.few-models-intro__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.few-models-wide-video {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.65);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.few-models-wide-video__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.few-models-model-video {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.65);
}

.few-models-model-video__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.few-models-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.few-models-nav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: thin;
}

.few-models-nav__meta {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.few-models-nav__thumb {
  width: 56px;
  height: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.18);
  filter: saturate(1.05) contrast(1.05);
}

.few-models-nav__inner::-webkit-scrollbar {
  height: 6px;
}

.few-models-nav__inner::-webkit-scrollbar-thumb {
  background: rgba(230,0,18,0.45);
}

.few-models-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  min-width: 240px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.few-models-nav__link:hover {
  background: rgba(230,0,18,0.10);
  border-color: rgba(230,0,18,0.55);
  transform: translateY(-1px);
}

.few-models-nav__name {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.few-models-nav__tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.few-models-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-color: #000;
  background-position: 50% calc(50% + var(--fm-parallax-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.few-models-hero::before {
  content: none;
}

.few-models-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.few-models-hero__parallax {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--fm-parallax-y, 0px), 0) scale(1.06);
  will-change: transform;
}

.few-models-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.46) 42%, rgba(0,0,0,0.10) 100%),
    radial-gradient(900px 420px at 18% 20%, rgba(230,0,18,0.28), rgba(230,0,18,0) 62%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.50) 100%);
}

.few-models-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.few-models-hero__kicker {
  color: var(--primary-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.few-models-hero__title {
  color: var(--light-color);
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}

.few-models-hero__lead {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  max-width: 760px;
  margin-bottom: 26px;
}

.few-models-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.few-models-hero__price {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  padding: 26px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.few-models-hero__price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}

.few-models-hero__price-value {
  font-size: 34px;
  font-weight: 900;
  color: var(--light-color);
  line-height: 1.05;
  margin-top: 6px;
}

.few-models-hero__price-finance {
  margin-top: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.few-models-hero__price-actions {
  margin-top: 18px;
}

.few-models-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: 26px;
  height: 40px;
  transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,0.35);
}

.few-models-hero__scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.6);
  animation: fmScroll 1.6s infinite;
}

@keyframes fmScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  20% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

.few-models-details {
  padding: 70px 0 90px;
  background: var(--light-gray);
}

.few-models-panel {
  background: var(--light-color);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 34px 30px;
}

.few-models-panel--dark {
  background: var(--dark-color);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.few-models-panel__title {
  margin-bottom: 18px;
}

.few-models-panel--dark .few-models-panel__title {
  color: var(--light-color);
}

.few-models-panel__text {
  margin-bottom: 0;
  color: var(--text-medium);
  font-size: 16px;
}

.few-models-panel--dark .few-models-panel__text,
.few-models-panel--dark .few-models-panel__note {
  color: rgba(255,255,255,0.72);
}

.few-models-panel__note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.few-models-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.few-models-highlight {
  background: rgba(0,0,0,0.04);
  border-left: 3px solid var(--primary-color);
  padding: 12px 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.few-models-panel--dark .few-models-highlight {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--primary-color);
  color: rgba(255,255,255,0.9);
}

.few-models-price__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
}

.few-models-price__value {
  font-size: 38px;
  font-weight: 900;
  color: var(--light-color);
  margin-top: 8px;
  line-height: 1.05;
}

.few-models-price__finance {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.few-models-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.few-models-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.few-models-spec {
  background: rgba(0,0,0,0.03);
  padding: 14px 14px;
  border-left: 3px solid rgba(230,0,18,0.55);
}

.few-models-spec__label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}

.few-models-spec__value {
  margin-top: 6px;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
}

.few-models-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.few-models-gallery__item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 200px;
}

.few-models-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.few-models-gallery__item:hover .few-models-gallery__img {
  transform: scale(1.04);
}

.few-models-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.few-models-video iframe,
.few-models-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .few-models-nav {
    top: 70px;
  }

  .few-models-hero {
    min-height: 84vh;
  }

  .few-models-hero__lead {
    font-size: 16px;
  }

  .few-models-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .few-models-gallery__item {
    grid-column: span 6;
    min-height: 170px;
  }
}

@media (max-width: 767px) {
  .few-models-page-hero {
    padding: 110px 0 70px;
    min-height: 86vh;
  }

  .few-models-intro {
    padding: 50px 0;
  }

  .few-models-nav__link {
    min-width: 210px;
  }

  .few-models-nav__thumb {
    width: 50px;
    height: 38px;
  }

  .few-models-hero__content {
    padding: 70px 0;
  }

  .few-models-hero__price {
    padding: 22px 18px;
  }

  .few-models-highlights {
    grid-template-columns: 1fr;
  }

  .few-models-panel {
    padding: 26px 20px;
  }

  .few-models-specs {
    grid-template-columns: 1fr;
  }

  .few-models-gallery__item {
    grid-column: span 12;
    min-height: 180px;
  }
}
