/* ═══════════════════════════════════════════════════════════════════════════
   MOTO MORINI PREMIUM THEME - Italian Heritage Motorcycle Design
   Elegant • Refined • Timeless Italian Craftsmanship
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Moto Morini Official Colors from Logo */
  --primary-color: #E60012;
  --primary-light: #FF3333;
  --primary-dark: #CC0010;
  --gold-color: #B8956A;
  --gold-light: #D4BC7D;
  --gold-dark: #8B7355;
  --burgundy-color: #E60012;
  --dark-color: #1A1A1A;
  --darker-color: #0D0D0D;
  --light-color: #FAFAFA;
  --cream-color: #F5F3EF;
  --accent-color: #2D2D2D;
  --accent-hover: #3D3D3D;
  --light-gray: #F8F7F5;
  --medium-gray: #E8E6E2;
  --text-dark: #1A1A1A;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --shadow-soft: 0 4px 20px rgba(230, 0, 18, 0.08);
  --shadow-medium: 0 8px 30px rgba(230, 0, 18, 0.12);
  --shadow-strong: 0 15px 50px rgba(230, 0, 18, 0.18);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  border-radius: 0 !important;
}

::selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* 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-width: 100px;
  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;
  margin-left: 10px;
}

/* 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-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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: 'Inter', sans-serif;
  background-color: var(--light-color);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY - Elegant Italian Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.05em;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  font-weight: 400;
}

/* BIKE CARD IMAGE - Premium Gallery */
.bike-image .owl-carousel .owl-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background-color: transparent;
  display: block;
  margin: 0 auto;
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
}

.bike-image .owl-carousel {
  height: 250px;
}

.bike-card:hover .bike-image .owl-carousel .owl-item img {
  transform: scale(1.03);
}

.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 15px;
}

.bike-image .owl-carousel .owl-nav button {
  /* background: var(--light-color);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--medium-gray);
  transition: var(--transition-smooth);
  opacity: 0; */
  display: none;
}

.bike-card:hover .bike-image .owl-carousel .owl-nav button {
  opacity: 1;
}

.bike-image .owl-carousel .owl-nav button:hover {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

/* Bike card base styling */
.bike-card {
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bike-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}

/* 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;
  }
}

@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: linear-gradient(180deg, var(--cream-color) 0%, var(--light-color) 100%);
  min-height: auto !important;
  padding: 0 !important;
}

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

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

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

.bike-thumbnails .thumbnail {
  width: 160px;
  height: 45px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  opacity: 0.6;
}

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

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

/* BUTTONS - Refined Italian Elegance */
.button-1,
.button-2,
.button-3,
.button-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

/* Primary Button - Burgundy with Gold accent */
.button-1 {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.button-1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.button-1:hover {
  background-color: var(--primary-light);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

.button-1:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button-1:hover::after {
  left: 100%;
}

/* Secondary Button - Outlined elegant */
.button-2 {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.button-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--text-dark);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.button-2:hover {
  color: var(--light-color);
  border-color: var(--text-dark);
}

.button-2:hover::before {
  width: 100%;
}

.button-2.button-2-white {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--light-color);
}

.button-2.button-2-white::before {
  background-color: var(--light-color);
}

.button-2.button-2-white:hover {
  color: var(--text-dark);
  border-color: var(--light-color);
}

span, a, a:hover {
    display: inline-flex;
}

/* Tertiary Button - Gold accent */
.button-3 {
  background-color: var(--gold-color);
  color: var(--darker-color);
  border: none;
}

.button-3:hover {
  background-color: var(--gold-light);
  color: var(--darker-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* Quaternary Button - Dark sophisticated */
.button-4 {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}

.button-4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-color), #E60012);
}

.button-4:hover {
  background-color: var(--accent-hover);
  color: var(--light-color);
  transform: translateY(-2px);
}

/* HERO SECTION - Cinematic Italian Style */
.hero-video-container {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(139, 21, 56, 0.3) 100%
  );
}

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

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold-color);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-color));
}

.hero-subtitle::after {
  background: linear-gradient(90deg, var(--gold-color), transparent);
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  color: var(--light-color);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.hero-title span {
  color: var(--gold-color);
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
}

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

/* PROCESS SECTION - Elegant Cards */
.process-section {
  background-color: var(--cream-color);
  padding: 120px 0;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 21, 56, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.process-box {
  background-color: var(--light-color);
  padding: 50px 40px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.process-box:hover::before {
  transform: scaleX(1);
}

.process-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(139, 21, 56, 0.06);
  line-height: 1;
}

.process-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.process-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--gold-color);
  border-radius: 50% !important;
}

.process-description {
  font-family: 'Inter', sans-serif;
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
}

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

.bike-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.bike-details {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  position: relative;
  z-index: 2;
}

.bike-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
}

.bike-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

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

.bike-spec {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
}

.bike-spec i {
  margin-right: 6px;
  color: var(--gold-color);
  font-size: 14px;
}

.bike-price {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
}

/* TESTIMONIAL SECTION - Refined Elegance */
.testimonial-section {
  background-color: var(--dark-color);
  padding: 120px 0;
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-box {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.testimonial-box:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.testimonial-box::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 100px;
  line-height: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--gold-color);
  opacity: 0.15;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.testimonial-author-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 18px;
  border: 2px solid var(--gold-color);
}

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

.testimonial-author-info h5 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--light-color);
}

.testimonial-author-info p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--gold-color), var(--primary-color));
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.05em;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-color), transparent);
}

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

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

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--gold-color);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
  width: 100%;
}

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

.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold-color);
  margin-right: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  margin-top: 24px;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-color);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--gold-color);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* 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;
}

/* ELEGANT DIVIDERS - Italian Heritage Style */
.angular-divider {
  height: 80px;
  background-color: transparent;
  position: relative;
  margin-top: -40px;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.angular-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--gold-color) 20%,
    var(--primary-color) 50%,
    var(--gold-color) 80%,
    transparent 100%);
}

.angular-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--gold-color);
  background-color: var(--light-color);
  padding: 0 15px;
}

.angular-divider-reverse {
  height: 80px;
  background-color: transparent;
  position: relative;
  margin-top: -40px;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.angular-divider-reverse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--primary-color) 20%,
    var(--gold-color) 50%,
    var(--primary-color) 80%,
    transparent 100%);
}

.angular-divider-reverse::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: var(--primary-color);
  background-color: var(--light-color);
  padding: 0 15px;
}

/* Subtle gold shimmer animation */
@keyframes goldShimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

/* BIKE BADGES & PRICING - Premium Styling */
.bike-badges {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bike-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--light-color);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bike-price-container {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--medium-gray);
}

.bike-price-was {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-light);
}

.bike-price-save {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bike-finance {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.finance-info-btn {
  background: transparent;
  border: 0;
  font-size: 14px;
  color: var(--text-light);
  padding: 0 0 0 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.finance-info-btn:hover {
  color: var(--gold-color);
}

.dealer-info {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  margin-top: 8px;
}

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

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

.tt-label-promo {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 26, 26, 0.9);
  color: var(--light-color);
  padding: 8px 14px;
  border: 1px solid var(--gold-color);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  text-decoration: none;
  background: rgba(26, 26, 26, 0.9);
  color: var(--light-color);
  padding: 8px 14px;
  border: 1px solid var(--gold-color);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

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

.thumbnail {
  width: 60px;
  height: 40px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  opacity: 0.7;
}

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

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

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
  h1, .hero-title {
    font-size: clamp(36px, 6vw, 50px);
  }
  
  h2 {
    font-size: clamp(28px, 4vw, 36px);
  }
  
  .process-box, .bike-card, .testimonial-box {
    margin-bottom: 30px;
  }
  
  .process-section,
  .bike-showcase,
  .testimonial-section {
    padding: 80px 0;
  }
  
  .footer {
    padding: 60px 0 0;
  }
}

@media (max-width: 767px) {
  h1, .hero-title {
    font-size: clamp(32px, 8vw, 40px);
  }
  
  h2 {
    font-size: clamp(24px, 5vw, 30px);
  }
  
  .hero-subtitle::before,
  .hero-subtitle::after {
    display: none;
  }
  
  .process-section,
  .bike-showcase,
  .testimonial-section {
    padding: 60px 0;
  }
  
  .button-1,
  .button-2,
  .button-3,
  .button-4 {
    padding: 14px 28px;
    font-size: 11px;
  }
  
  .bike-details {
    padding: 20px;
  }
  
  .testimonial-box {
    padding: 30px 25px;
  }
  
  .footer-bottom {
    margin-top: 50px;
  }
}

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

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

/* PREMIUM COMPONENTS SECTION - Italian Craftsmanship */
.premium-component {
  padding: 30px 20px;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-component:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.premium-component img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.premium-component:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.premium-component h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ADDITIONAL MOTO MORINI PREMIUM ELEMENTS */

/* Gold accent line */
.gold-accent-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-color), var(--gold-light));
  margin: 20px 0;
}

/* Heritage badge */
.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--gold-color);
  color: var(--gold-color);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Italian flag accent */
.italian-accent {
  display: flex;
  height: 4px;
  width: 60px;
}

.italian-accent span:nth-child(1) {
  flex: 1;
  background-color: #009246;
}

.italian-accent span:nth-child(2) {
  flex: 1;
  background-color: #ffffff;
}

.italian-accent span:nth-child(3) {
  flex: 1;
  background-color: #CE2B37;
}

/* Luxury card hover effect */
.luxury-card {
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.luxury-card:hover::before {
  left: 100%;
}

/* Elegant scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--gold-color);
  outline-offset: 2px;
}

/* Smooth page transitions */
.page-transition {
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading shimmer effect */
.loading-shimmer {
  background: linear-gradient(
    90deg,
    var(--cream-color) 0%,
    var(--light-color) 50%,
    var(--cream-color) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.navbar .dropdown-menu{
clip-path:none !important;
}

.navbar{
  border-bottom: 0px !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   MODERN BUTTON-5 STYLES - Elegant CTA Buttons for Moto Morini
   ═══════════════════════════════════════════════════════════════════════════ */

.button-5 {
  display: inline-flex;
  text-decoration: none;
  position: relative;
  margin-right: 15px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Inter', sans-serif;
}

.button-5.button-5-lg {
  height: 54px;
}

.button-5.button-5-md {
  height: 44px;
}

.button-5.button-5-sm {
  height: 34px;
}

/* Modern gold accent slash */
.button-5 .red-slash {
  width: 20px;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-color) 100%);
  transform: skewX(-15deg);
  z-index: 1;
  margin-right: 0;
  position: relative;
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.4);
  transition: all 0.4s ease;
}

.button-5:hover .red-slash {
  box-shadow: 0 0 25px rgba(201, 169, 98, 0.8);
  transform: skewX(-15deg) scaleX(1.1);
}

.button-5.button-5-sm .red-slash {
  display: none;
}

/* Modern button body */
.button-5 .button-5-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--primary-color);
  color: var(--cream-color);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0 35px 0 25px;
  transform: none;
  border: 2px solid var(--primary-color);
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.button-5:hover{
  border: 0px !important;
  
}

.button-5:hover .button-5-body{
  border: 0px !important;
  
}

/* Elegant background shimmer effect */
.button-5 .button-5-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(230, 0, 18, 0.2) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
  z-index: 0;
}

.button-5:hover .button-5-body::before {
  left: 100%;
}

.button-5.button-5-sm .button-5-body {
  font-size: 1.2rem;
  padding: 0 20px 0 15px;
  border: 1.5px solid var(--primary-color);
}

/* Button body hover state */
.button-5:hover .button-5-body {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-color: var(--cream-color);
  color: var(--cream-color);
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.4);
}

.button-5:hover .button-5-body {
  display: flex !important;
}

/* Icon styling inside button */
.button-5 .button-5-body i {
  display: none;
  margin-left: 12px;
  font-size: 1.2em;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  
}



/* Text content inside button */
.button-5 .button-5-body > * {
  
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Main button hover state */
.button-5:hover {
  transform: translateY(-4px);
  display: inline-flex;
}

/* Active state */
.button-5:active .button-5-body {
  
}

/* Focus state for accessibility */
.button-5:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hc-offcanvas-nav .nav-container, .hc-offcanvas-nav .nav-wrapper, .hc-offcanvas-nav ul{
    background-color: white;
}

.hc-offcanvas-nav li:not(.custom-content) a{
  color: black;
}

.side-menu-icon{
  color: black;
}

