:root {
  --dark-red: #220000;
  --light-green: #ffffff;
  /* --glass-bg: rgba(0, 0, 0, 0.5); */
  --glass-bg: #fff;
  --glass-border: rgba(255, 255, 255, 0.2);
  --dark-bg: #121212;
}




/*############### End Main Navbar ############# */

/*############### Hero Section ################ */


.index-page-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: #2222;
  padding-top: 125px;
  background-image: linear-gradient(rgba(18, 18, 18, 0.9),
      rgba(18, 18, 18, 0.9));
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.hero-section {
  height: auto;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-img {
  height: 100%;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
}

.carousel-btn-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.carousel-btn-wrapper .container {
  height: 100%;
}


.carousel-control-prev,
.carousel-control-next {
  pointer-events: all;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(210, 4, 4, 0.7);
  border-radius: 50%;
  border: 2px solid #fff;
}

.custom-arrow i {
  color: #fff;
  font-size: 18px;
}

.custom-arrow:hover {
  background: rgba(180, 2, 2, 0.6);
}

.custom-indicators {
  position: absolute;
  left: 36%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 5px;
  background: rgba(249, 244, 235, 0.5);
  padding: 10px;
  border-radius: 30px;
  width: fit-content;
}

.custom-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.custom-indicators button.active {
  width: 30px !important;
  height: 10px !important;
  border-radius: 20px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: none;
  border-bottom: none;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .index-page-section {
    padding-top: 114px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .index-page-section {
    padding-top: 109px !important;
  }
}

@media (max-width: 991px) {
  .index-page-section {
    padding-top: 0px !important;
  }
}



@media (max-width: 768px) {
  .hero-section {
    height: 180px;
  }

  .custom-arrow {
    width: 25px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(210, 4, 4, 0.7);
    border-radius: 50%;
    border: 2px solid #fff;
  }

  .custom-arrow i {
    color: #fff;
    font-size: 14px;
  }

  .custom-arrow:hover {
    background: rgba(180, 2, 2, 0.6);
  }


  .custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
  }

  .custom-indicators button.active {
    width: 30px !important;
    height: 10px !important;
    border-radius: 20px;
  }
}

/*############### End Hero Section ################ */

/*############### sco section ##################### */
.sco-section {
  padding: 60px 0 0 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 0;
  background-image: radial-gradient(circle at 15% 50%,
      #8b0000 0%,
      #00000000 20%),
    radial-gradient(circle at 85% 30%, #ffffff 0%, #00000000 25%),
    linear-gradient(45deg, transparent 49%, #8b0000 50%, transparent 51%),
    linear-gradient(135deg, transparent 49%, #ffffff 50%, #000000 51%);
  background-size: 400px 400px, 300px 300px, 60px 60px, 60px 60px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: #d51300;
  line-height: 1.1;
}

.section-title span {
  color: #d51300;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(144, 238, 144, 0.3);
  z-index: -1;
}

.swiper-navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d51300;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1rem;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: rgb(118 29 14);
  border-color: #6366f1;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.swiper-container {
  position: relative;
  padding: 10px 0 40px;
}

.sco-section .swiper-pagination {
  bottom: 0px !important;
  text-align: center;
  background: #dfdcdc;
  padding: 3px 10px;
  border-radius: 30px;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
}

.sco-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #666;
  opacity: 1;
}

.sco-section .swiper-pagination-bullet-active {
  background: #d51300;
  width: 30px;
  border-radius: 5px;
  height: 10px;
}

.premium-swiper {
  width: 100%;
  padding: 5px 0 50px 0;
}

.premium-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

.premium-swiper .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.premium-card {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #d51300;
  color: white;
  padding: 7px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(139, 0, 0, 0.1);
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  /* card ke hisaab se adjust kar */
  overflow: hidden;
}

.card-image img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.premium-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 15px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-category {
  color: #d51300;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-category i {
  color: #ffffff;
}

.card-description {
  color: #6b7280;
  line-height: 1.4;
  font-size: 0.9rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.card-features {
  display: flex;
  gap: 10px;
  background: #f9eded;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fef2f2, #ffffff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d51300;
  font-size: 0.9rem;
  border: 1px solid #fee2e2;
}

.feature-text {
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  border-top: 1px solid #f3f4f6;
}

.price-tag {
  font-family: "Inter", sans-serif;
}

.price-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 5px;
}

.price-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.price-amount span {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.card-button {
  background: linear-gradient(45deg, #8b0000, #b91c1c);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(139, 0, 0, 0.15);
  font-size: 0.9em;
}

.card-button:hover {
  background: linear-gradient(45deg, #b91c1c, #8b0000);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(139, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .sco-section {
    padding: 40px 0 0 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .custom-header {
    align-items: flex-start;
    gap: 10px;
  }

  .swiper-navigation {
    align-self: flex-end;
  }

  .section-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.15rem;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/*############### End sco section ##################### */

/*############## Stats Section ####################### */
.stats-section {
  padding: 60px 20px;
  background: #fff;
}

.stats-section .container {
  background: #f9eded;
  border-radius: 24px;
  padding: 30px 15px;
  position: relative;
  overflow: hidden;
}

/* .stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #8b0000, #ffffff);
} */

.stat-item {
  padding: 10px;
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #d51300;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #292929;
  line-height: 1;
}

.stat-number span {
  color: #292929;
}

.stat-text {
  font-size: 0.95rem;
  color: #292929;
  font-weight: 500;
}

/*############# End Stats Section ####################### */

/*################ four section ########################*/
.main-swiper {
  background-color: #f7f7f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  padding: 50px 0;
}

.main-swiper .spotlight-wrapper {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 0 auto;
  max-width: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.spotlight-wrapper .spotlight-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.main-swiper .nav-tabs {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: none;
}

.main-swiper .tab-pane {
  position: relative;
  min-height: 300px;
}

.main-swiper .nav-tabs::-webkit-scrollbar {
  display: none;
}

.main-swiper .nav-tabs .nav-link {
  border: none;
  color: #555 !important;
  font-weight: 500;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-swiper .nav-tabs .nav-link.active {
  color: #d51300 !important;
  border-bottom: 4px solid #d51300;
  background-color: transparent;
}

.main-swiper .bike-card {
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease;
  height: 100%;
  border: 1px solid #7908083d;
  margin: 0 5px;
}

.main-swiper .bike-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.main-swiper .bike-img-wrapper {
  background-color: #f7f7f7;
  text-align: center;
  padding: 18px 12px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-swiper .bike-img-wrapper img {
  max-width: 100%;
  max-height: 180px;
  border-radius: 3px;
  /* object-fit: contain; */
}

.main-swiper .bike-body {
  padding: 16px 18px 20px;
}

.main-swiper .bike-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.main-swiper .bike-price {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

.main-swiper .bike-price span {
  font-size: 11px;
  vertical-align: super;
}

.main-swiper .btn-offer {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d51300;
  color: #d51300;
  font-weight: 600;
  padding: 8px 12px;
  background-color: #fff5f5;
  font-size: 14px;
  transition: all 0.2s ease;
}

.main-swiper .btn-offer:hover {
  background: linear-gradient(45deg, #8b0000, #c53030);
  color: #ffffff;
}

.main-swiper .view-all-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  color: #d51300;
  text-decoration: none;
  font-weight: 500;
}

.main-swiper .view-all-link:hover {
  text-decoration: underline;
}

/* Swiper Navigation */
.main-swiper .swiper {
  width: 100%;
}

.main-swiper .swiper-slide {
  height: auto;
}

.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #3e0101;
}

.main-swiper .swiper-button-next:after,
.main-swiper .swiper-button-prev:after {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.main-swiper .swiper-pagination {
  bottom: 0px !important;
  text-align: center;
  background: #dfdcdc;
  padding: 3px 8px !important;
  border-radius: 30px;
  width: fit-content !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.main-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #666;
  opacity: 0.6;
}

.main-swiper .swiper-pagination-bullet-active {
  background: #d51300;
  width: 30px;
  border-radius: 30px;
  height: 10px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .main-swiper .spotlight-wrapper {
    padding: 20px 16px;
    margin: 10px;
  }

  .main-swiper .spotlight-title {
    font-size: 24px;
  }

  .main-swiper .nav-tabs .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 14px;
  }

  .main-swiper .swiper-button-next,
  .main-swiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .main-swiper .bike-img-wrapper {
    min-height: 180px;
    padding: 20px 12px;
  }

  .main-swiper .bike-img-wrapper img {
    max-height: 130px;
  }

  .main-swiper .bike-body {
    padding: 14px 16px 18px;
  }

  .main-swiper .bike-name {
    font-size: 15px;
  }
}

.placeholder-img {
  width: 250px;
  height: 150px;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/*################# services section #########################*/
.services-section {
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 60px 0px;
}

.services-section .header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.services-section .header p {
  color: #cbd5e1;
  max-width: 900px;
  margin: auto;
}

.services-section .service-card {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-section .service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.services-section .card-img {
  width: 40%;
  position: relative;
}

.services-section .card-img img {
  width: 100%;
  height: 220px;
  padding: 10px;
  object-fit: cover;
  border-radius: 18px;
}

.services-section .card-content {
  width: 60%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-section .card-content h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.services-section .card-content p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.services-section .card-link {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services-section .card-link:hover {
  color: #a78bfa;
  gap: 10px;
}

@media (max-width: 768px) {
  .services-section .service-card {
    flex-direction: column;
    height: auto;
  }

  .services-section .card-img,
  .services-section .card-content {
    width: 100%;
  }

  .services-section .card-img {
    height: 200px;
  }
}

/*################# End services section #########################*/

/*################# solar section ####################### */
.solar-section {
  padding: 60px 0;
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.solar-section .container {
  background: #f4fff8;
  color: black;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.solar-header h2 {
  font-size: 26px;
  margin: 0;
}

.solar-header h2 span.red {
  color: #d51300;
}

.solar-header a {
  font-size: 14px;
  text-decoration: none;
  color: #d51300;
}

.solar-header .solar-p {
  display: block;
}

@media (max-width: 767px) {
  .solar-header .solar-p {
    display: none;
  }
}

.solar-section .solar-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

/* Swiper container styling */
.solar-section .solar-swiper {
  width: 100%;
  height: 100%;
  padding: 10px 5px 50px 5px;
}

.solar-section .solar-swiper .solar-card {
  background: #000;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.solar-section .solar-swiper .solar-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.solar-section .solar-card-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.solar-section .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.solar-section .slider-arrow:hover {
  background-color: #f8f8f8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.solar-section .slider-arrow.left {
  left: -5px;
}

.solar-section .slider-arrow.right {
  right: -5px;
}

.solar-section .slider-arrow span {
  font-size: 22px;
  line-height: 1;
  color: #333;
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.swiper-button-disabled:hover {
  background: #fff;
  box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .slider-arrow {
    width: 30px;
    height: 50px;
  }

  .solar-card img {
    height: 180px;
    width: 100%;
  }

  .slider-arrow.left {
    left: 0;
  }

  .slider-arrow.right {
    right: 0;
  }

  .sco-section .swiper-pagination {
    left: 30%;
    transform: translateX(-30%);
  }
}

@media (max-width: 576px) {
  .solar-section .container {
    padding: 15px;
  }

  .solar-header h2 {
    font-size: 18px;
  }

  .solar-card img {
    height: 180px;
    width: 100%;
  }
}

/* subcriber section */
/* =============================
   RideReady Subscription (EV Clean UI)
============================= */

.rr-subscription-section {
  background: linear-gradient(135deg, #f4f7f4, #e9f3ea);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.rr-subscription-section .container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Title */
.rr-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #d51300;
  margin-bottom: 15px;
}

.rr-section-subtitle {
  color: #333;
  font-size: 1.05rem;
  max-width: 720px;
  line-height: 1.7;
}

/* Form Box */
.rr-subscription-form {
  background: #f0f0f0;
  border-radius: 0px;
  padding: 40px;
  border: 1px solid #e2e8f0;
}

/* Labels */
.rr-form-label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* Inputs */
.rr-form-control {
  border-radius: 8px;
  border: 1px solid #d6e4d8;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.rr-form-control:focus {
  border-color: #d51300;
  box-shadow: 0 0 0 3px rgba(106, 191, 119, 0.25);
}

/* Button */
.rr-subscribe-btn {
  background: linear-gradient(135deg, var(--dark-red) 0%, #510000 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px;
  border: none;
  width: 100%;
  transition: 0.3s ease;
}

.rr-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(47, 125, 78, 0.3);
}

/* Benefits */
.rr-benefits-container {
  background: #f0f0f0;
  border-radius: 0px;
  padding: 50px 40px;
  border: 1px solid #e2e8f0;
}

.rr-benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.rr-benefit-icon {
  min-width: 48px;
  height: 48px;
  background: #ffffff;
  color: #d51300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.rr-benefit-text h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1f3b28;
}

.rr-benefit-text p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #4c6b55;
}

/* Decorative Icons */
.rr-motorcycle-icon {
  position: absolute;
  font-size: 7rem;
  opacity: 0.08;
  color: #d51300;
}

.rr-icon-1 {
  top: 40px;
  right: 8%;
}

.rr-icon-2 {
  bottom: 30px;
  left: 6%;
}

/* Responsive */
@media (max-width: 768px) {
  .rr-section-title {
    font-size: 2rem;
  }

  .rr-subscription-form,
  .rr-benefits-container {
    padding: 25px;
  }

  .rr-motorcycle-icon {
    display: none;
  }
}

/* ################# FOOTER ################# */
.footer {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: white;
  width: 100%;
  margin-top: auto;
}

/* Top Footer Section */
.footer-top1 {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 300px;
  display: block;
  text-align: left;
}

/* Footer Links Sections */
.footer-links-title {
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
  color: white;
  display: block;
  text-align: left;
}

.footer-links-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 0.85rem;
}

.footer-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links-list i {
  font-size: 0.9rem;
  width: 16px;
}

/* Contact Info */
.footer .contact-inf {
  margin-top: 1rem;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  /* icon top se align */
  justify-content: flex-start;
  /* START / left align */
  gap: 12px;
  margin-bottom: 1.2rem;
  color: #cbd5e1;
  text-align: left;
  /* force left text */
}

.footer .contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-section {
  text-align: start;
}

.social-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px) rotate(5deg);
}

/* Bottom Footer Section */
.footer-bottom {
  padding: 2rem 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.payment-icon {
  width: 50px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(204 20 1) !important;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
  .footer-top1 .row>div {
    margin-bottom: 2.5rem;
  }

  .footer-links-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links-title::after {
    display: none;
  }

  .footer-links-title i {
    transition: transform 0.3s ease;
  }

  .footer-links-title.active i {
    transform: rotate(180deg);
  }

  .footer-links-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .footer-links-content.show {
    max-height: 1000px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer-top1 {
    padding: 3rem 0 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .social-icons {
    gap: 10px;
  }

  .payment-methods {
    gap: 10px;
  }

  .payment-icon {
    width: 45px;
    height: 28px;
    font-size: 1.3rem;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {

  .footer-top1,
  .footer-bottom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-links-title {
    font-size: 1rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .app-download {
    padding: 1.5rem;
  }

  .copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .payment-icon {
    width: 40px;
    height: 25px;
    font-size: 1.1rem;
  }
}

/* Print Styles */
@media print {
  .footer-container1 {
    background: #000 !important;
    color: #000 !important;
    position: relative;
  }

  .back-to-top {
    display: none;
  }

  .newsletter-form,
  .app-btn,
  .social-icons {
    display: none !important;
  }
}