@import url(https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap);@charset "UTF-8";
* {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:hover {
  text-decoration: none;
}

body {
  background-color: #000;
  display: flex;
  justify-content: center;
  color: #fff;
}
body.limit-height {
  max-height: 150vh;
}

button:focus {
  outline: none;
}

.btn {
  border-radius: 0;
}

.wrapper {
  width: 100%;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.cta-button {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #d81b3d;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
  color: #ffffff;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(229, 62, 62, 0.3);
}

.main-headline {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  padding: 0 20px;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.main-description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.main-description strong {
  font-weight: 600;
  color: #ffffff;
}

.lazy-image {
  width: 80%;
  max-width: 600px;
  height: 400px; /* Fixed height for demonstration */
  background-color: #e0e0e0; /* Placeholder background */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: #666;
  border: 1px solid #ccc;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure image covers the area */
  transition: opacity 0.5s ease-in-out; /* Smooth transition for image load */
  opacity: 0; /* Start hidden */
}

.lazy-image.loaded {
  opacity: 1; /* Fade in when loaded */
}

/* Placeholder for images not yet loaded */
.lazy-image:not(.loaded) {
  content: "Loading...";
  background-color: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .main-headline {
    font-size: 36px;
    margin: 40px;
    padding: 0;
  }
  .main-description {
    font-size: 20px;
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .main-headline {
    font-size: 32px;
    margin: 40px;
  }
  .main-description {
    font-size: 18px;
    padding: 0 40px;
  }
}
@media (max-width: 640px) {
  .main-headline {
    font-size: 20px;
    margin: 32px;
  }
  .main-description {
    font-size: 16px;
    padding: 0 80px;
  }
  .cta-buttons {
    flex-wrap: wrap;
  }
  .cta-button {
    width: 100%;
    font-size: 14px;
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  .read-more-in-mobile .read-more-btn {
    background: none !important;
    border: none !important;
    color: #BC2023 !important;
    font-weight: bold !important;
    padding: 0 !important;
    margin-top: 8px !important;
    cursor: pointer !important;
    font-size: inherit !important;
    text-decoration: underline;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  .read-more-in-mobile .read-more-btn:hover {
    color: #d42326 !important;
    text-decoration: underline;
  }
  .read-more-in-mobile .read-more-btn:focus {
    outline: none;
  }
  .read-more-in-mobile .short-text {
    display: inline;
  }
  .read-more-in-mobile .remaining-text {
    display: none;
  }
  .read-more-in-mobile .remaining-text.show {
    display: inline;
  }
}
@media (min-width: 769px) {
  .read-more-in-mobile .read-more-btn {
    display: none !important;
  }
  .read-more-in-mobile .remaining-text {
    display: inline !important;
  }
}

@media (prefers-contrast: high) {
  .cta-button {
    border: 2px solid #ffffff;
  }
}
.custom-navbar {
  background-color: #000000 !important;
  padding: 1rem 1.5rem;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.custom-navbar .container-fluid {
  justify-content: center;
}

/* Desktop navigation */
.navigation-items {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.nav-item-custom {
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-item-custom:hover {
  color: #BC2023 !important;
}

.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* Custom hamburger button */
.custom-toggler {
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.custom-toggler:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Desktop dropdown styling */
.dropdown-menu {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
}

.dropdown-item:hover {
  background-color: #333333;
  color: #ffffff;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: #121212;
  z-index: 1050;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #333333;
}

.close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.close-btn:hover {
  color: #cccccc;
}

.mobile-menu-content {
  padding: 1rem 0;
}

.mobile-menu-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #333333;
  transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
  background-color: #2a2a2a;
  color: #ffffff;
}

.mobile-dropdown {
  border-bottom: 1px solid #333333;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-dropdown-toggle:hover {
  background-color: #2a2a2a;
}

.mobile-dropdown-toggle.active {
  background-color: #2a2a2a;
}

.mobile-dropdown-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background-color: #0d0d0d;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.show {
  max-height: 300px;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 2.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-left: 3rem;
}

.nav-item-custom.dropdown-toggle::after {
  display: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .desktop-nav {
    display: none !important;
  }
  .custom-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    min-height: 60px;
  }
  .custom-navbar .custom-toggler {
    padding: 0;
    opacity: 0.75;
  }
  .hero-section {
    margin-top: 60px;
  }
  .logo-nav {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .mobile-toggler {
    display: none !important;
  }
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .mobile-menu {
    width: 85%;
    right: -85%;
  }
  .logo-nav {
    width: 40%;
    margin-left: -1.5rem;
  }
}
@media (max-width: 480px) {
  .logo-nav {
    width: 60%;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 40px 0 120px;
  background-image: url("/images/home-v2/hero.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .hero-container {
  display: flex;
  justify-content: center;
  align-self: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/* Logo Section */
.logo-section {
  margin-bottom: 30rem;
}
.logo-section .logo img {
  width: 480px;
  height: auto;
}

.logo-script {
  font-family: "Dancing Script", cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #e53e3e;
  margin-bottom: -0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transform: rotate(-2deg);
  display: inline-block;
  position: relative;
}

.logo-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-top: 0.5rem;
}

/* Description Text */
.hero-description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  margin-left: 52px;
  margin-right: 52px;
}

.hero-description strong {
  font-weight: 600;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 0 0 3rem 0;
    margin-top: 50px;
    background-size: contain;
    background-image: url("/images/home-v2/hero-mb-1.png");
  }
  .logo-section {
    margin-top: 20%;
    margin-bottom: 40px;
  }
  .hero-headline {
    margin-bottom: 1.5rem;
  }
  .hero-description {
    margin-bottom: 0;
    padding: 0 1rem;
    font-size: 0.9rem;
  }
  .cta-buttons {
    margin-bottom: 0px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  .hero-section .logo-section {
    margin-left: 70px;
    margin-right: 70px;
  }
  .hero-section .logo-section .logo img {
    width: 100%;
  }
  .logo-script {
    font-size: 2.5rem;
  }
  .logo-subtitle {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 0.8rem;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .google-rating-container {
    display: none !important;
  }
  .quotes-container {
    display: none !important;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .hero-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
}
/* Main Section */
.promo-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  margin-top: 4rem;
  /* Play Button */
}
.promo-section .content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1440px;
  width: 100%;
}
.promo-section .play-button {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem auto;
  position: relative;
}
.promo-section .play-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}
.promo-section .play-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.promo-section .play-button i {
  margin-left: 5px;
}
.promo-section .main-headline-mb {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.promo-headline {
  font-weight: 400;
  margin-top: -40px;
}

.price-highlight {
  color: #ffffff;
  font-weight: 800;
}

.discount-highlight {
  color: #ffffff;
  font-weight: 800;
}

/* Google Rating Section */
.google-rating-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 60px;
}

.google-logo img {
  width: 60px;
  height: 60px;
}

.rating-content {
  text-align: left;
}

.rating-label {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffd700;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.customer-quotes {
  font-size: 0.9rem;
  color: #ffffff;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.quotes-container .quotes-title {
  font-size: 12px;
  font-style: italic;
  text-align: center;
  color: #666;
}
.quotes-container .quotes {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.quotes-container .testimonial {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  cursor: default;
  text-wrap: nowrap;
  margin-top: 16px;
}
.quotes-container .testimonial:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-section {
    margin-top: 0;
    padding: 80px 0;
    background-image: url("/images/home-v2/hero-mb-2.png");
    background-size: 1200px;
    background-repeat: no-repeat;
    background-position-x: center;
  }
  .promo-section .play-button {
    width: 100px;
    height: 100px;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .promo-section .google-rating-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .promo-section .rating-content {
    text-align: center;
  }
  .promo-section .hero-headline {
    margin-bottom: 0.5rem;
  }
  .promo-section .main-headline-mb {
    display: block;
    padding: 0 100px;
    font-size: 20px;
    margin-bottom: 0;
  }
  .promo-section .main-headline {
    display: none;
  }
  .quotes-container {
    flex-direction: column;
    gap: 40px;
  }
  .quotes-container .quotes {
    justify-content: flex-start;
  }
  .quotes-container .quotes .testimonial {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: unset;
  }
  .hero-section .logo-section {
    display: none;
  }
  .hero-section .main-headline {
    display: none;
  }
  .hero-section .hero-description {
    display: none;
  }
  .hero-section .cta-buttons {
    display: none;
  }
  .hero-section .promo-section {
    padding: 0;
  }
  .hero-section .promo-section .content-wrapper {
    min-height: 15rem;
  }
}
@media (max-width: 640px) {
  .promo-section {
    padding-bottom: 20px;
  }
  .promo-section .main-headline-mb {
    padding: 0 40px;
  }
  .quotes-container .quotes .testimonial {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .play-button {
    width: 80px !important;
    height: 80px !important;
    font-size: 1.8rem !important;
    margin-top: 2rem !important;
  }
  .google-logo {
    font-size: 1.5rem;
  }
  .rating-number {
    font-size: 1.3rem;
  }
  .stars i {
    font-size: 1rem;
  }
  .testimonial {
    font-size: 1.1rem;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.intro-section {
  position: relative;
}
.intro-section .intro-car {
  display: flex;
}
.intro-section .intro-car img {
  width: 20%;
}
.intro-section .intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.intro-section .intro-text {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.intro-section .intro-text-image {
  display: flex;
  justify-content: center;
  width: 20%;
}
.intro-section .intro-text-image img {
  width: 60%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .intro-section .intro-car {
    flex-wrap: wrap;
  }
  .intro-section .intro-car img:nth-child(1),
  .intro-section .intro-car img:nth-child(2),
  .intro-section .intro-car img:nth-child(3) {
    width: 33.3333333333%;
  }
  .intro-section .intro-car img:nth-child(4),
  .intro-section .intro-car img:nth-child(5) {
    width: 50%;
  }
  .intro-section .intro-text {
    flex-wrap: wrap;
  }
  .intro-section .intro-text .intro-text-image:nth-child(1),
  .intro-section .intro-text .intro-text-image:nth-child(2),
  .intro-section .intro-text .intro-text-image:nth-child(3) {
    width: 33.3333333333%;
  }
  .intro-section .intro-text .intro-text-image:nth-child(4),
  .intro-section .intro-text .intro-text-image:nth-child(5) {
    width: 50%;
  }
}
.experiences-section {
  position: relative;
  background-color: #000000;
  padding: 60px 0;
  text-align: center;
  /* Headlines */
  /* Pricing */
  /* Video Link */
  /* Background Images */
}
.experiences-section .description-text {
  margin-bottom: 0;
}
.experiences-section .description-container {
  margin-bottom: 80px;
}
.experiences-section .section-label {
  font-size: 18px;
  font-weight: 600;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.experiences-section .experience-content {
  padding: 40px 100px 40px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.experiences-section .experience-content .description-text {
  text-align: left;
  font-size: 18px;
  margin-bottom: 40px;
}
.experiences-section .experience-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 0;
}
.experiences-section .experience-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experiences-section .experience-headline {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: left;
}
.experiences-section .pricing-info {
  margin-bottom: 1.5rem;
  text-align: left;
}
.experiences-section .pricing-item {
  font-size: 16px;
  font-weight: 500;
  color: #e53e3e;
  margin-bottom: 0.3rem;
}
.experiences-section .video-link {
  color: #e53e3e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
}
.experiences-section .video-link i {
  color: #e53e3e;
}
.experiences-section .video-link:hover {
  color: #c53030;
  text-decoration: underline;
}
.experiences-section .gr86-bg {
  background-image: url("/placeholder.svg?height=400&width=600&text=Red+Toyota+GR86+Race+Car+on+Track");
}
.experiences-section .f1-bg {
  background-image: url("/placeholder.svg?height=400&width=600&text=Formula+1+Mercedes+AMG+Race+Car");
}

/* Showcase Section */
.showcase-section {
  position: relative;
  background-color: #000000;
  padding: 4rem 0 2rem 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-section .experience-info .accordion-header {
  display: none;
}

.experience-section-reverse {
  flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 992px) {
  .experiences-section {
    padding-bottom: 0;
  }
  .experiences-section .section-label {
    margin-bottom: 0;
  }
  .experiences-section .main-headline {
    margin-top: 20px;
  }
  .experience-section .experience-info .accordion-header {
    display: block;
    background-color: #c53030;
    color: #000;
    font-weight: 700;
    text-align: left;
  }
  .experience-section .experience-info .accordion-header button {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 16px;
    width: 100%;
    color: #000;
  }
  .experience-section .experience-info .accordion-header button[aria-expanded=true] {
    color: #fff;
  }
  .experience-section .experience-info .accordion-header button[aria-expanded=true] .fa-arrow-down {
    transform: rotate(180deg);
    transition: 0.3s ease;
  }
  .experience-section .experience-info .accordion-header button .accordion-button-text {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    color: #000;
  }
  .experience-section .experience-info .accordion-header button .accordion-button-text span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .experience-section .experience-info .accordion-header button i {
    font-size: 20px;
    margin-right: 12px;
  }
  .experience-section .experience-content {
    padding: 40px 80px;
  }
  .experience-section .experience-content .section-label,
  .experience-section .experience-content .experience-headline {
    display: none;
  }
  .experience-section .experience-content .pricing-info {
    display: flex;
    gap: 20px;
  }
  .experience-section .experience-content .pricing-info .pricing-item {
    font-size: 24px;
  }
  .experience-section .experience-content .description-text {
    font-size: 24px;
  }
  .experience-section .experience-content .video-link {
    font-size: 24px;
    margin-bottom: 0;
  }
  .experience-section .experience-content .cta-buttons {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
  }
  .experience-section .experience-content .cta-buttons .cta-button {
    width: 50%;
    max-width: unset;
  }
  .experience-section .experience-content .cta-buttons .cta-button:nth-child(2) {
    background-color: #000;
    border: 1px solid #e53e3e;
    color: #e53e3e;
  }
  .experience-section .experience-image {
    min-height: 250px;
    order: -1;
  }
  .experience-section .experience-headline {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .experiences-section {
    background-color: #fff;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .experience-section .experience-content {
    padding: 40px;
    background-color: #000;
  }
  .experience-section .experience-content .cta-buttons {
    flex-wrap: wrap !important;
  }
  .experience-section .experience-content .cta-button {
    width: 100% !important;
  }
  .experiences-bg-mobile {
    display: none;
    padding: 2rem 0;
    background-image: url("/images/home-v2/experiences-bg.png");
    background-size: cover;
  }
  .experiences-bg-mobile .main-description {
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  .experience-section .experience-content {
    padding: 24px 32px 8px;
  }
  .experience-section .experience-content .description-text {
    margin-bottom: 16px;
  }
  .experience-section .experience-content .cta-buttons {
    margin: 20px 0;
    padding: 0;
    gap: 10px;
  }
  .experience-section .experience-info {
    gap: 16px;
  }
  .experience-section .experience-info span,
  .experience-section .experience-info i {
    font-size: 0.9rem !important;
  }
  .experience-section .experience-info .pricing-info {
    gap: 8px;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .experience-section .experience-info .pricing-info .pricing-item {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  .experience-section .experience-info .video-link {
    font-size: 0.9rem;
  }
  .experience-section .experience-info .description-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .experience-content {
    padding: 1.5rem 1rem;
  }
  .experience-image {
    min-height: 200px;
  }
  .experience-image img {
    aspect-ratio: 1.2;
  }
  .section-label {
    font-size: 0.75rem;
  }
  .experience-headline {
    font-size: 1.3rem;
  }
  .description-text {
    font-size: 0.9rem;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.video-link:focus {
  outline: 2px solid #e53e3e;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .experience-content {
    background-color: #000000;
    border: 1px solid #ffffff;
  }
}
/* Challenge Section */
.challenge-section {
  padding: 60px 0 20px;
  /* Left Side Content */
  /* Right Side Content */
  /* Challenge Rules */
  /* Racing Cars Top */
}
.challenge-section .main-headline {
  padding: 0 40px;
}
.challenge-section .challenge-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.challenge-section .challenge-image-1 img {
  width: 100%;
  height: auto;
}
.challenge-section .challenge-image {
  background-image: url("/images/home-v2/challenge-2.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -300px;
  padding: 0 20px;
}
.challenge-section .challenge-image > div {
  width: 33.3333333333%;
}
.challenge-section .challenge-image > div img {
  width: 100%;
}
.challenge-section .challenge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.challenge-section .challenge-info {
  width: 25%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-width: 500px;
}
.challenge-section .challenge-info .challenge-btn {
  display: none;
}
.challenge-section .cta-button {
  background-color: #b6202b;
  padding: 20px 80px;
  font-size: 16px;
}
.challenge-section .challenge-description {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding: 0 12px;
  text-align: center;
}
.challenge-section .main-description {
  max-width: 900px;
}
.challenge-section .challenge-rules {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  margin-top: 40px;
}
.challenge-section .challenge-rules p {
  text-align: center;
}
.challenge-section .challenge-rules p {
  margin-bottom: 0.3rem;
}
.challenge-section .racing-cars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  z-index: 1;
}

@media (max-width: 1440px) {
  .challenge-section .challenge-image {
    margin-top: -200px;
    padding-top: 40px;
  }
  .challenge-section .challenge-image .image-1 {
    width: 400px;
  }
  .challenge-section .challenge-image .image-2 {
    flex: 1;
  }
  .challenge-section .challenge-image .challenge-info {
    width: 400px;
    min-width: unset;
  }
  .challenge-section .challenge-image .challenge-info .challenge-description {
    font-size: 32px;
  }
}
@media (max-width: 1300px) {
  .challenge-section .challenge-image {
    margin-top: -220px;
  }
  .challenge-section .challenge-image .image-1 {
    width: 300px;
  }
  .challenge-section .challenge-image .image-2 {
    flex: 1;
  }
  .challenge-section .challenge-image .challenge-info {
    width: 350px;
    min-width: unset;
  }
  .challenge-section .challenge-image .challenge-info .challenge-description {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .challenge-section {
    background-attachment: scroll;
    padding-top: 0;
  }
  .challenge-section .main-headline {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .challenge-section .main-description {
    padding-left: 0;
    padding-right: 0;
  }
  .challenge-section .challenge-image {
    flex-wrap: wrap;
    margin-top: -260px;
  }
  .challenge-section .challenge-image > div {
    width: 100% !important;
  }
  .challenge-section .challenge-image .image-2 {
    order: 1;
    display: flex;
    justify-content: center;
    margin-top: 120px;
    flex: unset;
  }
  .challenge-section .challenge-image .image-2 img {
    width: 70%;
  }
  .challenge-section .challenge-image .image-1 {
    order: 2;
    display: flex;
    justify-content: center;
    margin-top: -400px;
  }
  .challenge-section .challenge-image .image-1 img {
    width: 70%;
  }
  .challenge-section .challenge-image .challenge-info {
    order: 3;
    margin-top: 2rem;
  }
  .challenge-section .challenge-image .challenge-info .challenge-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
  }
  .challenge-section .challenge-image .challenge-info .challenge-btn .cta-button {
    width: 50%;
    max-width: unset;
  }
  .challenge-section .challenge-image .challenge-info .cta-button-desktop {
    display: none;
  }
  .challenge-section .challenge-image .challenge-info .challenge-description {
    font-size: 24px;
    padding: 0 80px;
    margin-bottom: 0;
  }
  .challenge-section .challenge-image .challenge-info .challenge-rules {
    font-size: 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .challenge-section .challenge-intro {
    font-size: 1.3rem;
  }
  .challenge-section .skid-text {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .challenge-section .challenge-image .challenge-info {
    margin-top: -1rem;
  }
  .challenge-section .challenge-image .challenge-info .challenge-description {
    margin-bottom: 1rem;
    padding: 0 20px;
  }
  .challenge-section .challenge-image .challenge-info .challenge-rules {
    margin-top: 0;
    font-size: 20px;
  }
  .challenge-section .challenge-button {
    padding: 0.8rem 2rem;
    font-size: 14px;
    min-width: 200px;
  }
  .challenge-section .challenge-image {
    margin-top: -150px;
  }
  .challenge-section .challenge-btn {
    flex-wrap: wrap;
  }
  .challenge-section .challenge-btn .cta-button {
    width: 100% !important;
    padding: 12px 0;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .challenge-section .challenge-content .challenge-image .image-1 {
    width: 50%;
    margin-top: -300px;
  }
  .challenge-section .challenge-content .challenge-image .image-1 img {
    width: 90%;
  }
  .challenge-section .challenge-content .challenge-image .image-2 {
    margin-top: 0;
  }
  .challenge-section .challenge-content .challenge-image .challenge-info .challenge-description {
    font-size: 1rem !important;
  }
  .challenge-section .challenge-content .challenge-info .challenge-btn {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .challenge-intro {
    font-size: 1.1rem;
    margin-top: 0;
  }
  .skid-text {
    font-size: 2.5rem;
  }
  .challenge-description {
    font-size: 0.9rem;
  }
  .challenge-rules {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 480px) {
  .challenge-section .challenge-content .challenge-image {
    margin-top: -90px;
  }
  .challenge-section .challenge-content .challenge-image .image-1 {
    margin-top: -150px;
  }
  .challenge-section .challenge-content .challenge-image .image-2 {
    margin-top: -30px;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .challenge-section {
    background-attachment: scroll;
  }
}
@media (prefers-contrast: high) {
  .challenge-section::before {
    background: rgba(0, 0, 0, 0.9);
  }
  .challenge-description,
  .challenge-rules {
    color: #ffffff;
  }
}
/* Animation Classes */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: #000000;
  padding: 0 0 4rem 0;
  /* Google Rating Header */
  /* Review Cards */
}
.reviews-section .google-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.reviews-section .rating-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.reviews-section .rating-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.reviews-section .rating-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.reviews-section .rating-stars i {
  color: #fbbf24;
  font-size: 20px;
}
.reviews-section .rating-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 0.5rem;
}
.reviews-section .rating-details {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.reviews-section .write-review-btn {
  background: #1976d2;
  border: none;
  padding: 16px 80px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.reviews-section .write-review-btn:hover {
  background: #1565c0;
  transform: translateY(-1px);
  color: #ffffff;
}
.reviews-section .reviews-container {
  margin-bottom: 4rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  padding: 0 20px;
  overflow-x: scroll;
  padding-top: 5px;
}
.reviews-section .review-card {
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 250px;
}
.reviews-section .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.reviews-section .review-stars {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
.reviews-section .review-stars i {
  color: #fbbf24;
  font-size: 14px;
}
.reviews-section .review-google-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.reviews-section .review-google-logo img {
  width: 30px;
  height: 30px;
}
.reviews-section .review-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.reviews-section .reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.reviews-section .reviewer-time {
  font-size: 14px;
  color: #2e2e2e;
  margin: 12px 0;
  text-align: center;
}
.reviews-section .reviewer-avatar {
  width: 40px;
  height: 40px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-section {
    padding: 2rem 0;
  }
  .reviews-section .google-rating-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .reviews-section .reviews-container .review-card {
    min-width: 300px;
  }
  .rating-details {
    margin-left: 0;
    text-align: center;
  }
  .review-card {
    margin-bottom: 1rem;
  }
  .main-headline {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .reviews-section {
    background-color: #ffffff;
  }
  .reviews-section .rating-title, .reviews-section .rating-score, .reviews-section .rating-details, .reviews-section .review-text, .reviews-section .reviewer-name, .reviews-section .reviewer-time {
    color: #000 !important;
  }
  .reviews-section .review-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #666666;
  }
}
@media (max-width: 480px) {
  .reviews-section {
    padding: 2rem 0;
  }
  .google-rating-header {
    margin-bottom: 2rem;
  }
  .review-card {
    padding: 1rem;
  }
  .main-description,
  .cta-text {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .review-card {
    background-color: #000000;
    border-color: #ffffff;
  }
  .review-text,
  .main-description {
    color: #ffffff;
  }
}
/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fun-section {
  background-image: url("/images/home-v2/fun-bg.png");
  background-size: cover;
  padding-top: 2rem;
  background-position-y: -200px;
}
.fun-section .main-description {
  margin-bottom: 0;
}
.fun-section .cta-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.fun-section .fun-pro {
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  max-width: 900px;
  margin: 32px auto 0px;
  padding-bottom: 60px;
}
.fun-section .fun-image {
  display: flex;
  flex-wrap: wrap;
}
.fun-section .fun-image img {
  width: 33.3333333333%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1024px) {
  .fun-section {
    padding-top: 1rem;
  }
  .fun-section .fun-image {
    flex-wrap: wrap;
  }
  .fun-section .fun-image img {
    width: 100%;
  }
  .fun-section .fun-pro {
    padding: 0 20px;
    font-size: 80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .fun-section .fun-pro {
    font-size: 60px;
    padding-bottom: 90px;
  }
  .fun-section .fun-image img {
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 640px) {
  .fun-section .fun-pro {
    font-size: 40px;
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .fun-section .fun-pro {
    font-size: 24px;
  }
}
.membership-section .membership-bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.membership-section .membership-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: -400px;
}
.membership-section .member-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.membership-section .member-logo img {
  width: 200px;
  height: auto;
}
.membership-section .main-description {
  max-width: none;
  padding: 0 40px;
}
.membership-section .cta-button {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .membership-section .membership-bg {
    display: flex;
    justify-content: center;
  }
  .membership-section .membership-bg img {
    width: 200%;
  }
  .membership-section .main-headline {
    padding-left: 0;
    padding-right: 0;
  }
  .membership-title {
    font-size: 2.5rem;
  }
  .membership-description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .membership-section {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .membership-section .membership-title {
    font-size: 2rem;
  }
  .membership-section .cta-button {
    font-size: 14px;
    padding: 12px 30px;
  }
  .membership-section .membership-content {
    margin-top: -200px !important;
  }
  .membership-section .membership-content .main-headline {
    margin: 20px 0;
  }
  .membership-section .membership-content .main-description {
    padding: 0;
  }
  .membership-section .member-logo {
    margin-bottom: 40px;
  }
  .membership-section .member-logo img {
    width: 150px !important;
  }
}
.race-section {
  margin-top: -480px;
}
.race-section .race-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1440px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-top: -700px;
}
.race-section .race-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.race-section .race-subtitle {
  font-size: 4rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.race-section .main-description {
  margin-bottom: 8px;
}
.race-section .race-formats-text {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 700;
}
.race-section .options-container {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.race-section .options-container-mb {
  display: none;
}
.race-section .option-card {
  background: linear-gradient(to bottom, #222222, #1e1e1f, #181818, #121212, #060606, #000000);
  border: 1px solid rgba(60, 60, 60, 0.8);
  border-radius: 8px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  text-align: left;
}
.race-section .option-header {
  color: #dc3545;
  font-size: 32px;
  font-weight: bold;
  line-height: 30px;
}
.race-section .option-duration {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 400;
}
.race-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.race-section .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 16px;
  font-size: 1.1rem;
  color: white;
  border-top: 1px solid #444444;
}
.race-section .feature-item:last-child {
  margin-bottom: 0;
}
.race-section .checkmark {
  color: #dc3545;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 15px;
  min-width: 20px;
}
.race-section .feature-item::before {
  content: "\2713";
  color: #dc3545;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 15px;
  min-width: 20px;
}
.race-section .race-car {
  position: relative;
  margin-top: -220px;
  z-index: 10;
}
.race-section .race-car img {
  width: 100%;
  height: auto;
}
.race-section .race-bg img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1600px) {
  .race-section .race-content {
    margin-top: -550px;
  }
}
@media (max-width: 1440px) {
  .race-section .race-content {
    margin-top: -300px;
  }
}
@media (max-width: 1024px) {
  .option-card {
    max-width: 500px;
  }
  .race-section .race-bg {
    display: flex;
    justify-content: center;
  }
  .race-section .race-bg img {
    width: unset;
    aspect-ratio: 16/9;
  }
  .race-section .options-container {
    display: none;
  }
  .race-section .options-container-mb {
    display: block;
    width: 100%;
  }
  .race-section .options-container-mb .tab-container {
    margin: 50px auto;
    background-color: #2a2a2a; /* Slightly lighter dark background for the container */
    border-radius: 8px;
    overflow: hidden;
  }
  .race-section .options-container-mb .nav-tabs {
    border-bottom: none;
    background-color: #333333;
  }
  .race-section .options-container-mb .nav-tabs .nav-item {
    width: 50%;
  }
  .race-section .options-container-mb .nav-tabs .nav-item button {
    width: 100%;
  }
  .race-section .options-container-mb .nav-tabs .nav-link {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1; /* Distribute space evenly */
  }
  .race-section .options-container-mb .nav-tabs .nav-link.active {
    color: #ff0000; /* Red for active tab text */
    background-color: #2a2a2a; /* Match container background for active tab */
    border-bottom: 3px solid #ff0000; /* Red underline for active tab */
  }
  .race-section .options-container-mb .nav-tabs .nav-link:hover:not(.active) {
    background-color: #444444; /* Slightly lighter hover effect */
    color: #ffffff;
  }
  .race-section .options-container-mb .tab-content {
    padding: 20px;
  }
  .race-section .options-container-mb .list-group-item {
    background-color: #2a2a2a; /* Match container background */
    border: none;
    border-bottom: 1px solid #444444; /* Darker border for list items */
    color: #ffffff;
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 1.05em;
  }
  .race-section .options-container-mb .list-group-item:last-child {
    border-bottom: none;
  }
  .race-section .options-container-mb .checkmark {
    color: #ff0000; /* Red for checkmark */
    margin-right: 10px;
    font-size: 1.2em;
  }
  .race-section .options-container-mb .tab-subtitle {
    font-size: 0.85em;
    font-weight: normal;
    display: block;
    margin-top: 2px;
    color: #cccccc;
  }
  .race-section .race-car {
    display: none;
  }
  .race-section .race-content {
    padding: 0;
    margin-top: -550px;
  }
  .race-section .race-title,
  .race-section .race-subtitle {
    font-size: 60px;
  }
  .race-section .race-description,
  .race-section .race-formats-text {
    font-size: 1rem;
  }
  .race-section .option-header {
    font-size: 1.5rem;
  }
  .race-section .feature-item {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .race-section {
    overflow: hidden;
  }
  .race-section .race-content {
    margin-top: -735px;
  }
  .race-section .race-title,
  .race-section .race-subtitle {
    font-size: 48px;
  }
  .race-section .race-formats-text {
    margin-bottom: -1rem !important;
  }
}
@media (max-width: 640px) {
  .race-section .race-title {
    font-size: 32px;
    text-align: center;
  }
  .race-section .race-subtitle {
    font-size: 24px;
  }
  .race-section .option-card {
    padding: 30px 20px;
  }
  .race-section .tab-container button {
    font-size: 0.95rem !important;
  }
  .race-section .feature-item {
    font-size: 0.95rem !important;
  }
}
.league-section {
  margin-top: -200px;
  padding-bottom: 80px;
}
.league-section .league-bg {
  width: 100%;
  display: flex;
  justify-content: center;
}
.league-section .league-bg img {
  width: 100%;
}
.league-section .league-content {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: -450px;
}
.league-section .league-content .league-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .league-section {
    padding-bottom: 40px;
  }
  .league-section .league-bg img {
    width: 160%;
  }
  .league-section .league-content {
    z-index: 10;
    padding: 0 20px;
  }
  .league-section .league-content .league-logo {
    margin-top: 200px;
    margin-bottom: 40px;
  }
  .league-section .main-headline {
    padding-left: 0;
    padding-right: 0;
  }
  .league-section .cta-buttons {
    margin-bottom: 0;
  }
  .league-section .cta-button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .league-section {
    background-color: #fff;
    margin-top: 0;
  }
  .league-section .league-bg {
    position: relative;
  }
  .league-section .league-bg img {
    margin-top: -3rem;
  }
  .league-section .league-bg .main-headline-mb {
    position: absolute;
    color: #000;
    text-shadow: none;
    font-size: 1.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    text-shadow: 0 0 1px #000;
  }
  .league-section .league-content {
    margin-top: 0;
    position: relative;
  }
  .league-section .league-content .league-logo {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .league-section .league-content .league-logo img {
    width: 200px;
    margin-top: -12rem;
  }
  .league-section .league-content .main-headline, .league-section .league-content .main-description {
    color: #000;
    text-shadow: none;
    margin-bottom: 0;
  }
  .league-section .cta-buttons {
    margin-top: 10px;
    gap: 0.5rem;
  }
}
@media (max-width: 576px) {
  .league-section .league-content .league-logo img {
    width: 180px;
    margin-top: -7rem;
  }
}
.event-section .event-image {
  display: flex;
}
.event-section .event-image img {
  width: 20%;
}
.event-section .event-content {
  text-align: center;
  max-width: 1440px;
  margin: 80px auto;
}
.event-section .event-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 50px;
}
.event-section .event-paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #ffffff;
  opacity: 0.95;
}
.event-section .event-paragraph:last-child {
  margin-bottom: 0;
}
.event-section .contact-info {
  font-weight: 700;
}

.slogan-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.slogan-text {
  font-size: 120px;
  font-weight: 900;
  line-height: 0.9;
  color: #1d1d1f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  .event-section {
    display: flex;
    flex-direction: column;
  }
  .event-section .event-image {
    order: 1;
  }
  .event-section .event-content {
    order: 2;
    padding: 0 40px;
    margin: 60px 0 0px;
  }
  .event-section .slogan-content {
    order: 4;
    padding: 40px 0;
  }
  .event-section .cta-buttons {
    order: 3;
  }
  .event-section .main-headline {
    margin: 0;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .slogan-text {
    font-size: 70px;
  }
}
@media (max-width: 992px) {
  .slogan-text {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .event-section .event-image img {
    width: 25%;
  }
  .event-section .event-image img:nth-child(5) {
    display: none;
  }
  .event-section .event-content {
    padding: 0 24px;
  }
  .slogan-text {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .event-section .event-image img {
    width: 33.3333333333%;
  }
  .event-section .event-image img:nth-child(4) {
    display: none;
  }
  .event-section .event-paragraph {
    font-size: 0.9rem;
  }
  .slogan-text {
    font-size: 38px;
  }
}
@media (max-width: 400px) {
  .slogan-text {
    font-size: 24px;
  }
}
.voucher-section {
  position: relative;
  background: url("/images/home-v2/voucher-bg.png");
  background-size: cover;
  z-index: 10;
}
.voucher-section .voucher-content {
  width: 100%;
  z-index: 10;
  position: relative;
}
.voucher-section .voucher-image {
  position: absolute;
  top: -100px;
  left: 150px;
  z-index: 100;
}
.voucher-section .voucher-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voucher-section .promo-content {
  text-align: center;
  color: white;
  padding: 160px 0 120px;
}
.voucher-section .promo-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.voucher-section .promo-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin: 40px auto;
}

@media (max-width: 1800px) {
  .voucher-section .voucher-content .voucher-image {
    top: -70px;
  }
}
@media (max-width: 1700px) {
  .voucher-section .voucher-content .voucher-image {
    left: 0px;
  }
  .voucher-section .voucher-content .voucher-image img {
    width: 115%;
  }
}
@media (max-width: 1500px) {
  .voucher-section .voucher-content .voucher-image img {
    width: 125%;
  }
}
@media (max-width: 1440px) {
  .voucher-section .voucher-content .voucher-image img {
    width: 135%;
  }
}
@media (max-width: 1300px) {
  .voucher-section .voucher-content .voucher-image {
    left: -100px;
  }
  .voucher-section .voucher-content .voucher-image img {
    width: 145%;
  }
}
@media (max-width: 1200px) {
  .voucher-section {
    background: none;
  }
  .voucher-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .voucher-section .voucher-content .voucher-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: url("/images/home-v2/voucher-bg.png");
    display: flex;
    justify-content: center;
    height: 400px;
  }
  .voucher-section .voucher-content .image {
    position: absolute;
    top: -50px;
    width: 400px;
    left: 50%;
    transform: translateX(-70%);
  }
  .voucher-section .voucher-content .promo-content {
    padding: 50px 0px 40px;
    text-align: center;
  }
  .voucher-section .voucher-content .promo-content .main-headline {
    margin-top: 0;
  }
  .voucher-section .voucher-content .promo-btn .cta-button {
    width: unset;
    font-size: 20px;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .voucher-section .voucher-content .voucher-image {
    height: 300px;
    background-size: contain;
  }
  .voucher-section .voucher-content .image {
    width: 320px;
  }
  .promo-title {
    font-size: 2.5rem;
  }
  .promo-description {
    font-size: 1rem;
  }
  .tablet-frame {
    padding: 20px 15px;
  }
  .voucher-card {
    padding: 15px;
  }
  .motorsport-logo {
    font-size: 1.4rem;
  }
  .promo-btn .cta-button {
    font-size: 14px !important;
    width: 100% !important;
  }
}
@media (max-width: 576px) {
  .promo-title {
    font-size: 2rem;
  }
  .tablet-mockup {
    max-width: 300px;
  }
}
.merch-section {
  background-image: url("/images/home-v2/merch-bg.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}
.merch-section .merch-bg {
  margin-bottom: 40px;
}
.merch-section .merch-content {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merch-section .cta-button {
  box-shadow: none;
}

.merch-image {
  display: flex;
  flex-wrap: wrap;
}
.merch-image img {
  width: 20%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .merch-section {
    padding: 40px 0;
  }
  .merch-section .merch-bg {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  .merch-section .merch-bg img {
    width: 120%;
  }
  .merch-section .cta-button {
    margin: 0 20px;
    background-color: #fff;
    color: #d81b3d;
    border: 1px solid #d81b3d;
  }
  .merch-section .merch-content {
    padding: 0 16px;
  }
  .merch-section .merch-content .main-headline {
    margin: 16px 0;
  }
}
.masonry-section {
  display: flex;
}
.masonry-section .masonry-1 {
  width: 40%;
}
.masonry-section .masonry-1 .row-1 {
  display: flex;
}
.masonry-section .masonry-1 .row-1 img {
  width: 50%;
}
.masonry-section .masonry-1 .row-2 > div {
  padding: 0;
}
.masonry-section .masonry-1 .row-2 img {
  width: 100%;
}
.masonry-section .masonry-2 {
  width: 40%;
}
.masonry-section .masonry-2 .row-1,
.masonry-section .masonry-2 .row-3 {
  display: flex;
}
.masonry-section .masonry-2 .row-1 img,
.masonry-section .masonry-2 .row-3 img {
  width: 50%;
}
.masonry-section .masonry-2 .row-2 img {
  width: 100%;
}
.masonry-section .masonry-3 {
  width: 20%;
}
.masonry-section .masonry-3 img {
  width: 100%;
}

.faq-section {
  background-color: #000000;
  padding: 80px 0 0;
}
.faq-section .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-section .faq-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}
.faq-section .faq-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #333333;
  --bs-accordion-border-width: 0 0 1px 0;
  --bs-accordion-border-radius: 0;
}
.faq-section .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333333;
  margin-bottom: 0;
}
.faq-section .accordion-button {
  background-color: transparent;
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 25px 0;
  border: none;
  box-shadow: none;
  position: relative;
  padding-left: 50px;
}
.faq-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: white;
  box-shadow: none;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-button::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  transition: transform 0.3s ease;
}
.faq-section .accordion-button:not(.collapsed)::before {
  content: "\2212";
  transform: translateY(-50%);
}
.faq-section .accordion-body {
  padding: 0 50px 25px 50px;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .accordion-collapse {
  border: none;
}
.faq-section .faq-content {
  max-width: 1440px;
  margin: 120px auto;
  z-index: 10;
  position: relative;
}
.faq-section .cta-buttons {
  margin-bottom: 60px;
}
.faq-section .cheering {
  margin-top: -450px;
}
.faq-section .cheering img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 0;
    padding-bottom: 40px;
  }
  .faq-section .main-description {
    margin-bottom: 0px;
  }
  .faq-section .main-headline {
    margin-left: 12px;
    margin-right: 12px;
  }
  .faq-title {
    font-size: 2.5rem;
  }
  .faq-subtitle {
    font-size: 1rem;
  }
  .accordion-button {
    font-size: 1.1rem;
    padding-left: 40px;
    text-align: center;
    width: 100%;
  }
  .accordion-body {
    padding: 0 40px 20px 40px;
    font-size: 0.95rem;
  }
  .faq-content .cta-buttons {
    display: none;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-header {
    margin-bottom: 20px;
  }
  .faq-section .faq-header .main-description {
    padding: 0 20px;
  }
  .faq-section .accordion-button {
    padding: 16px 0;
  }
  .faq-section .cheering {
    margin-top: -160px;
  }
  .faq-section .faq-content {
    margin: 60px auto;
  }
}
@media (max-width: 640px) {
  .faq-section .faq-content .main-headline {
    margin-bottom: 360px;
  }
  .faq-section .faq-title {
    font-size: 2rem;
  }
  .faq-section .accordion-button {
    font-size: 1rem;
    padding-left: 35px;
  }
  .faq-section .accordion-body {
    padding: 0 35px 15px 35px;
  }
  .faq-section .cheering {
    margin-top: -400px;
  }
}
.contact-section {
  width: 90%;
  margin: 0 auto;
  margin-top: -400px;
  /* When input is focused or has content */
  /* Alternative style - label moves completely above */
  /* Additional input styles */
  /* When textarea is focused or has content */
  /* Alternative style - label moves completely above */
  /* Native Select Styling */
  /* Dropdown arrow */
  /* When select has a value selected */
  /* Custom Select Component */
}
.contact-section .contact-container {
  padding: 40px 20px;
}
.contact-section .contact-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.contact-section .section-title {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
  margin-top: 30px;
}
.contact-section .contact-info {
  margin-bottom: 20px;
}
.contact-section .contact-info i {
  color: #dc3545;
  margin-right: 10px;
  width: 20px;
}
.contact-section .business-hours {
  margin: 20px 0;
}
.contact-section .business-hours div {
  margin-bottom: 5px;
}
.contact-section .logo-section {
  margin: 40px 0;
}
.contact-section .logo-section img {
  width: 200px;
}
.contact-section .logo-text {
  color: #dc3545;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 5px;
}
.contact-section .logo-subtext {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 3px;
  font-weight: bold;
}
.contact-section .social-icons {
  margin: 30px 0;
}
.contact-section .social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  margin-right: 15px;
  text-decoration: none;
}
.contact-section .social-icons a:hover {
  color: #dc3545;
}
.contact-section .copyright {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #cccccc;
}
.contact-section .custom-input,
.contact-section .custom-select,
.contact-section .custom-textarea {
  background-color: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  height: 60px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 4px;
  padding-left: 16px;
}
.contact-section .custom-input:focus,
.contact-section .custom-select:focus,
.contact-section .custom-textarea:focus {
  background-color: #000000;
  border-color: #dc3545;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
.contact-section .custom-input::-moz-placeholder, .contact-section .custom-textarea::-moz-placeholder {
  color: #888888;
}
.contact-section .custom-input::placeholder,
.contact-section .custom-textarea::placeholder {
  color: #888888;
}
.contact-section .custom-select option {
  background-color: #000000;
  color: #ffffff;
}
.contact-section .custom-label {
  position: absolute;
  left: 32px;
  top: 20px;
  color: #666666;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .required {
  color: #ff4444;
  margin-left: 2px;
}
.contact-section .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: #4a9eff;
}
.contact-section .custom-input:focus + .custom-label,
.contact-section .custom-input:not(:placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: #4a9eff;
}
.contact-section .custom-input:not(:-moz-placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-input:focus + .custom-label .required,
.contact-section .custom-input:not(:placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .input-group.floating .custom-label {
  background-color: transparent;
}
.contact-section .input-group.floating .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  top: -8px;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .input-group.floating .custom-input:focus + .custom-label,
.contact-section .input-group.floating .custom-input:not(:placeholder-shown) + .custom-label {
  top: -8px;
  background-color: #000000;
  padding: 0 4px;
}
.contact-section .input-group.outlined .custom-input {
  border: 2px solid #333333;
  border-radius: 8px;
}
.contact-section .input-group.outlined .custom-input:focus {
  border-color: #4a9eff;
}
.contact-section .input-group.filled .custom-input {
  background-color: #111111;
  border: 1px solid transparent;
  border-bottom: 2px solid #333333;
  border-radius: 4px 4px 0 0;
}
.contact-section .input-group.filled .custom-input:focus {
  border-bottom-color: #4a9eff;
  background-color: #1a1a1a;
}
.contact-section .input-group.filled .custom-label {
  background-color: transparent;
}
.contact-section .input-group.filled .custom-input:not(:-moz-placeholder-shown) + .custom-label {
  background-color: transparent;
}
.contact-section .input-group.filled .custom-input:focus + .custom-label,
.contact-section .input-group.filled .custom-input:not(:placeholder-shown) + .custom-label {
  background-color: transparent;
}
.contact-section .submit-btn {
  background-color: #dc3545;
  border: none;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  width: 200px;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
}
.contact-section .submit-btn:hover {
  background-color: #c82333;
  color: #ffffff;
}
.contact-section .message-field {
  min-height: 150px;
  resize: vertical;
}
.contact-section .textarea-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-section .custom-textarea {
  width: 100%;
  min-height: 120px;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 24px 16px 12px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.contact-section .custom-textarea:focus {
  border-color: #4a9eff;
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
}
.contact-section .custom-textarea:hover {
  border-color: #444444;
}
.contact-section .custom-textarea:not(:-moz-placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-textarea:focus + .custom-label,
.contact-section .custom-textarea:not(:placeholder-shown) + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-textarea:not(:-moz-placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-textarea:focus + .custom-label .required,
.contact-section .custom-textarea:not(:placeholder-shown) + .custom-label .required {
  color: #ff4444;
}
.contact-section .textarea-group.floating .custom-label {
  background-color: transparent;
}
.contact-section .textarea-group.floating .custom-textarea:not(:-moz-placeholder-shown) + .custom-label {
  top: -12px;
  background-color: #000000;
  padding: 0 4px;
  transform: scale(0.75);
}
.contact-section .textarea-group.floating .custom-textarea:focus + .custom-label,
.contact-section .textarea-group.floating .custom-textarea:not(:placeholder-shown) + .custom-label {
  top: -12px;
  background-color: #000000;
  padding: 0 4px;
  transform: scale(0.75);
}
.contact-section .select-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-section .custom-select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 20px 40px 8px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-section .custom-select:hover {
  border-color: #444444;
}
.contact-section .custom-select option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px;
}
.contact-section .custom-select:focus + .custom-label,
.contact-section .custom-select:valid + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select:focus + .custom-label .required,
.contact-section .custom-select:valid + .custom-label .required {
  color: #ff4444;
}
.contact-section .custom-select-wrapper {
  position: relative;
  width: 100%;
}
.contact-section .custom-select-display {
  width: 100%;
  background-color: transparent;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 20px 40px 8px 16px;
  font-size: 16px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.contact-section .custom-select-display:hover {
  border-color: #444444;
}
.contact-section .custom-select-display.active {
  border-color: #4a9eff;
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
}
.contact-section .custom-select-display.has-value + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select-display.active + .custom-label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: #4a9eff;
}
.contact-section .custom-select-display.has-value + .custom-label .required,
.contact-section .custom-select-display.active + .custom-label .required {
  color: #ff4444;
}

@media (max-width: 1024px) {
  .contact-section {
    margin-top: -200px;
  }
  .contact-section .contact-container {
    padding-bottom: 0;
  }
  .contact-section .contact-container .row > div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .contact-section .contact-container .section-title {
    margin-bottom: 0;
  }
  .contact-section .contact-container .copyright {
    display: none;
  }
  .contact-section .contact-container .logo-section {
    display: none;
  }
  .contact-section .contact-container form > .row > .input-group {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  .contact-section .contact-container form > .row > .select-group, .contact-section .contact-container form > .row > .textarea-group {
    padding: 0;
  }
  .contact-section .contact-container form > .row .custom-input,
  .contact-section .contact-container form > .row .custom-select,
  .contact-section .contact-container form > .row .custom-textarea {
    height: 48px;
    margin-bottom: 0;
  }
  .contact-section .contact-container form > .row .custom-label {
    top: 12px;
    left: 16px;
  }
  .contact-section .contact-container .submit-btn {
    margin-top: 0;
  }
}
footer {
  margin-top: 40px;
}
footer .footer-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 120px;
}
footer .footer-images .footer-image {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .footer-images img {
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-logo {
  display: flex;
  justify-content: center;
}
footer .footer-logo img {
  width: 60%;
}
footer .footer-bg {
  margin-top: -200px;
}
footer img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  footer .footer-images {
    flex-wrap: wrap;
  }
  footer .footer-images .footer-image {
    width: 100%;
  }
  footer .footer-images .footer-image:nth-child(2) {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  footer .footer-images {
    padding: 0 20px;
  }
  footer .footer-images .footer-image {
    padding: 0 20px;
  }
  footer .footer-images .footer-image img {
    width: 25%;
  }
}
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading.active {
  display: flex;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #BC2023;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}