@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:hover {
  color: #fff;
}

.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: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;
}

.cta-button-primary {
  background-color: #d81b3d;
  color: #ffffff;
  border-color: #d81b3d;
}

.cta-button-primary:hover {
  background-color: #d50032;
  border-color: #d50032;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background-color: #000000;
  color: #d81b3d;
  border: 1px solid #d81b3d;
}

@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;
  }
}
.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;
  }
}
.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;
  }
}
.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%;
  }
}
.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 {
    margin-bottom: 40px !important;
  }
  .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;
  }
}
/* 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);
}

.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%;
  }
}
.logo-section {
  margin-bottom: 0;
}

.hero-section {
  padding-bottom: 60px;
}

.hero-coach-section {
  position: relative;
  background-image: url("/images/home-v2/v3/hero-banner.png");
}

.hero-coach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgb(0, 0, 0), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}
.hero-content .cta-buttons {
  margin-bottom: 32px;
}
.hero-content .hero-title {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 60%;
}
.hero-content .hero-title .red {
  color: #d81b3d;
  font-style: italic;
}
.hero-content .hero-title .white {
  color: #ffffff;
  font-style: italic;
}
.hero-content .hero-subtitle {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 700;
  text-align: center;
}
.hero-content .hero-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-content .hero-description strong {
  font-weight: 700;
}
.hero-content .cta-buttons {
  margin-bottom: 60px;
}
.hero-content .cta-buttons .cta-button {
  font-weight: 400;
}

@media (max-width: 1024px) {
  .logo-section {
    display: none;
  }
  .hero-content .hero-title {
    margin-top: 44%;
    font-size: 72px;
  }
  .hero-content .hero-subtitle {
    font-size: 24px;
    padding: 0 20px;
  }
  .hero-content .hero-description {
    font-size: 16px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 48px;
    margin-bottom: 1rem;
  }
  .hero-content .hero-subtitle {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .hero-content .hero-description {
    font-size: 14px;
  }
  .hero-section {
    padding-bottom: unset;
  }
  .hero-coach-section {
    background-size: cover;
    margin-top: 80px;
  }
}
.feature {
  max-width: 1200px;
  margin: 0 auto;
}
.feature h1 {
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.feature h1 span {
  color: #d81b3d;
}
.feature .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}
.feature .feature {
  text-align: center;
}
.feature .icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature .icon img {
  width: 130px;
  height: auto;
}
.feature .feature h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d81b3d;
}
.feature .feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .feature {
    padding: 0 1.5rem;
    margin-top: 3rem;
  }
  .feature h1 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .feature .features-grid {
    grid-template-columns: unset;
    gap: 40px;
  }
  .feature .features-grid.slick-slider {
    display: block;
  }
  .feature .features-grid.slick-slider .slick-list {
    margin: 0 -15px;
  }
  .feature .features-grid.slick-slider .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .feature .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }
  .feature .icon img {
    width: 100px;
    height: auto;
  }
  .feature .feature p {
    margin-bottom: 0;
  }
  .features-slider-dots {
    bottom: -40px !important;
    text-align: center;
    list-style: none;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 30px 0 20px 0;
  }
  .features-slider-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  .features-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(216, 27, 61, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
  }
  .features-slider-dot:hover {
    background: #d81b3d;
  }
  .features-slider-dots li.slick-active .features-slider-dot {
    background: #d81b3d;
  }
  .cta-buttons {
    margin-top: 1rem;
  }
}
.coaches-section {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 4rem;
}
.coaches-section .section-label {
  text-align: center;
  color: #d81b3d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.coaches-section .section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
.coaches-section .section-intro {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}

.coaches-section-slide {
  background-color: #1b1b1b;
  padding: 5rem 0;
}
.coaches-section-slide .coach-container {
  max-width: 1400px;
  margin: 0 auto;
}
.coaches-section-slide button.slick-arrow {
  display: none !important;
}
.coaches-section-slide .coach-profile {
  align-items: center;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.coaches-section-slide .coach-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.coaches-section-slide .coach-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
.coaches-section-slide .coach-name {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.coaches-section-slide .coach-name .label {
  color: #d81b3d;
}
.coaches-section-slide .coach-bio {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
}
.coaches-section-slide .coach-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.coaches-section-slide .info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coaches-section-slide .info-label {
  color: #d81b3d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.coaches-section-slide .info-value {
  font-size: 16px;
  color: #ffffff;
}
.coaches-section-slide .coach-quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coaches-section-slide .quote-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  font-style: italic;
}
.coaches-section-slide .coach-experience {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coaches-section-slide .coach-experience .experience-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 16px;
}
.coaches-section-slide .coach-experience .experience-list li {
  width: 50%;
}
.coaches-section-slide .experience-text {
  font-size: 16px;
  color: #e0e0e0;
}
.coaches-section-slide .experience-text a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.coaches-section-slide .experience-text a:hover {
  color: #d81b3d;
}
.coaches-section-slide .play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.coaches-section-slide .play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}
.coaches-section-slide .cta-container {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.coaches-section-slide .video-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.coaches-section-slide .video-link:hover {
  color: #d81b3d;
}
.coaches-section-slide .profile-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
.coaches-section-slide .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d81b3d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}
.coaches-section-slide .nav-link:hover {
  color: #ff4569;
  transform: translateX(0);
}
.coaches-section-slide .nav-link.prev:hover {
  transform: translateX(-5px);
}
.coaches-section-slide .nav-link.next:hover {
  transform: translateX(5px);
}
.coaches-section-slide .arrow {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 968px) {
  .coaches-section-slide {
    padding: 100px 0;
  }
  .coaches-section-slide .coach-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coaches-section-slide .section-title {
    font-size: 42px;
  }
  .coaches-section-slide .coach-name {
    font-size: 36px;
  }
  .coaches-section-slide .coach-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .coach-profile {
    gap: 0 !important;
  }
  .coach-info-grid {
    gap: 16px !important;
    margin-bottom: 8px !important;
  }
  .coach-details {
    gap: 8px !important;
  }
  .coach-details .coach-name {
    font-size: 18px !important;
    margin-bottom: 0 !important;
  }
  .coach-details .coach-bio {
    font-size: 14px !important;
  }
  .coach-details .info-value {
    font-size: 14px !important;
  }
  .coach-details .quote-text {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }
  .coach-details .experience-text {
    font-size: 14px !important;
  }
  .coaches-section {
    margin-top: 2rem;
  }
  .coaches-section .section-label {
    margin-bottom: 1rem;
  }
  .coaches-section .section-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .coaches-section .section-intro {
    font-size: 14px;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  .coaches-section-slide {
    padding: 40px 16px 0 16px;
  }
  .coaches-section-slide .info-item {
    gap: 4px !important;
  }
  .coaches-section-slide .coach-quote {
    gap: 4px !important;
    margin-bottom: 6px !important;
  }
  .coaches-section-slide .coach-experience {
    gap: 4px !important;
    margin-bottom: 8px !important;
  }
  .coaches-section-slide .coach-name {
    font-size: 24px;
  }
  .coaches-section-slide .coach-image {
    max-width: 100%;
  }
  .coaches-section-slide .coach-video .info-label {
    text-transform: uppercase;
    margin-bottom: 4px !important;
  }
  .coaches-section-slide .cta-container {
    flex-direction: column;
    width: 100%;
  }
  .coaches-section-slide .btn {
    width: 100%;
  }
  .coaches-section-slide .profile-navigation {
    justify-content: space-between;
    gap: 10px;
  }
  .coaches-section-slide .profile-navigation a {
    padding: 8px;
  }
  .coaches-section-slide .coach-profile {
    margin-bottom: 0;
  }
  .coaches-section-slide .video-link {
    font-size: 14px !important;
  }
}
.member-section {
  padding: 80px 20px 80px;
  text-align: center;
}
.member-section .membership-heading {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.member-section .membership-heading .highlight {
  color: #d81b3d;
}
.member-section .membership-subheading {
  font-size: 1.125rem;
  margin-bottom: 50px;
  color: #e0e0e0;
}
.member-section .signup-form {
  display: flex;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.member-section .form-input {
  flex: 1;
  min-width: 200px;
  padding: 20px 25px;
  background-color: transparent;
  border: 1px solid #333;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.member-section .form-input:focus {
  outline: none;
  border-color: #d81b3d;
}
.member-section .form-input::-moz-placeholder {
  color: #999;
}
.member-section .form-input::placeholder {
  color: #999;
}
.member-section .submit-btn {
  padding: 20px 40px;
  background-color: #d81b3d;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}
.member-section .submit-btn:hover {
  background-color: #e6153d;
}

.how-it-works-section {
  padding: 0 20px 40px;
  text-align: center;
  z-index: 100;
  position: relative;
}
.how-it-works-section .section-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 60px;
}
.how-it-works-section .section-title span {
  color: #d81b3d;
  font-style: italic;
}
.how-it-works-section .section-description {
  max-width: 900px;
  margin: 0 auto 80px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e0e0e0;
}
.how-it-works-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.how-it-works-section .step-card {
  text-align: center;
}
.how-it-works-section .icon-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  background-image: linear-gradient(rgba(51, 51, 51, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 51, 51, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-it-works-section .icon-container img {
  width: 180px;
  height: 180px;
}
.how-it-works-section .step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d81b3d;
  margin-bottom: 15px;
}
.how-it-works-section .step-description {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.how-it-works-section .cta-buttons {
  flex-direction: column;
  align-items: center;
}
.how-it-works-section .cta-buttons .cta-button {
  width: 400px;
  font-size: 18px;
  font-weight: bold;
}
.how-it-works-section .cta-buttons .cta-button-secondary {
  border: none;
}

@media (max-width: 768px) {
  .member-section {
    padding: 40px 20px 0 20px;
  }
  .member-section .membership-heading {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .member-section .membership-subheading {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .member-section .signup-form {
    flex-direction: column;
  }
  .member-section .form-input,
  .member-section .submit-btn {
    width: 100%;
    min-width: auto;
    padding: 0.75rem;
    font-size: 14px;
  }
  .member-section .steps-grid {
    grid-template-columns: unset;
    gap: 60px;
  }
  .member-section .steps-grid.slick-slider {
    display: block;
  }
  .member-section .steps-grid.slick-slider .slick-list {
    margin: 0 -15px;
  }
  .member-section .steps-grid.slick-slider .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .how-it-works-section {
    padding: 40px 20px;
  }
  .how-it-works-section h2 {
    font-size: 24px !important;
    margin-bottom: 1rem !important;
  }
  .how-it-works-section .icon-container {
    margin-bottom: 1rem;
  }
  .how-it-works-section .icon-container img {
    width: 180px;
    height: auto;
  }
  .how-it-works-section .cta-buttons .cta-button {
    font-size: 14px;
    width: 100%;
  }
  .how-it-works-section .step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .how-it-works-section .step-description {
    margin-bottom: 0;
  }
  .how-it-works-section .steps-grid {
    gap: 20px;
    margin-bottom: 1rem;
  }
  .steps-slider-dots {
    bottom: -40px !important;
    text-align: center;
    list-style: none;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .steps-slider-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  .steps-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(216, 27, 61, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
  }
  .steps-slider-dot:hover {
    background: #d81b3d;
  }
  .steps-slider-dots li.slick-active .steps-slider-dot {
    background: #d81b3d;
  }
  .membership-section .membership-content .main-headline {
    margin: 1rem 0;
  }
  .membership-section .membership-content .main-description {
    margin-bottom: 1rem;
  }
}
.pricing-section {
  /* Header */
  /* Pricing Grid */
  /* Pricing Cards */
  /* Features List */
  /* Coach Image */
  /* CTA Buttons */
}
.pricing-section .pricing-banner {
  max-height: 1000px;
  position: relative;
  overflow: hidden;
}
.pricing-section .pricing-banner img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.pricing-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.pricing-section .header {
  text-align: center;
  margin-bottom: 100px;
}
.pricing-section .main-title {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.pricing-section .main-title .highlight {
  color: #d81b3d;
}
.pricing-section .subtitle {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}
.pricing-section h6 {
  font-size: 14px;
  color: #d81b3d;
  font-weight: 400;
}
.pricing-section .description {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.pricing-section .description a {
  color: #d81b3d;
  text-decoration: underline;
  cursor: pointer;
}
.pricing-section .description a:hover {
  color: #ff4569;
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 300px;
  align-items: center;
  margin-bottom: 60px;
}
.pricing-section .pricing-card {
  background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 40px 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.pricing-section .card-title {
  color: #d81b3d;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.pricing-section .card-subtitle {
  font-size: 14px;
  color: #ccc;
}
.pricing-section .price {
  font-size: 20px;
  margin-bottom: 5px;
}
.pricing-section .price span {
  font-weight: 900;
  color: #d81b3d;
}
.pricing-section .cta-button-secondary {
  border: none;
}
.pricing-section .price-type {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}
.pricing-section .features-list {
  list-style: none;
  padding-left: 16px;
}
.pricing-section .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.5px;
}
.pricing-section .feature-item:last-child {
  border-bottom: none;
}
.pricing-section .checkmark {
  color: #d81b3d;
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-section .coach-image {
  width: 340px;
  height: auto;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.pricing-section .coach-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.pricing-section .cta-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-banner img {
    width: 100% !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .coach-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    order: -1;
  }
  .pricing-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .pricing-section {
    margin-top: 1rem;
    padding: 0 15px;
  }
  .pricing-section .main-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .pricing-section .main-title br {
    display: none;
  }
  .pricing-section .main-title .highlight {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .pricing-section .card-subtitle {
    margin-bottom: 0.25rem;
  }
  .pricing-section .subtitle {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .pricing-section .header {
    margin-bottom: 1.5rem;
  }
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 1rem;
  }
  .pricing-section .coach-image {
    display: none;
  }
  .pricing-section .pricing-card {
    padding: 8px;
  }
  .pricing-section .pricing-card .card-header {
    padding-bottom: 0;
  }
  .pricing-section .pricing-card .feature-item {
    padding: 8px 0;
  }
  .pricing-section .card-title {
    font-size: 1.25rem;
  }
  .pricing-section .price {
    font-size: 1.25rem;
  }
  .pricing-section .btn {
    width: 100%;
    padding: 16px 30px;
  }
  .pricing-section .cta-container {
    gap: 15px;
  }
  .pricing-section .cta-container a {
    margin-bottom: 0 !important;
  }
  .pricing-section .description {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
.cta-section {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}
.cta-section .main-heading {
  margin-bottom: 2rem;
  line-height: 1.1;
}
.cta-section .heading-line {
  display: block;
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
}
.cta-section .heading-intro {
  display: block;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.cta-section .text-red {
  color: #d81b3d;
}
.cta-section .text-white {
  color: #fff;
}
.cta-section .subheading {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #fff;
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-section .btn-primary {
  background-color: #d81b3d;
  color: #fff;
  border: none;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.cta-section .btn-primary:hover {
  background-color: #ff0033;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.4);
}
.cta-section .btn-primary:active {
  transform: translateY(0);
}
.cta-section .link-secondary {
  color: #d81b3d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.cta-section .link-secondary:hover {
  color: #ff0033;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 1.5rem;
  }
  .heading-intro {
    font-size: 24px !important;
    margin-bottom: 1rem !important;
  }
  .heading-line {
    font-size: 24px !important;
  }
  .main-heading {
    margin-bottom: 0.5rem !important;
  }
  .subheading {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .cta-buttons {
    padding: 0 1rem;
    gap: 10px !important;
  }
  .btn-primary {
    padding: 0.75rem !important;
    font-size: 14px !important;
    width: 100%;
  }
}
@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  .heading-line {
    letter-spacing: -0.03em;
  }
}
.cursor-pointer {
  cursor: pointer;
}

.exp-section .faq-content {
  margin: 0 auto 200px;
}
.exp-section .main-headline {
  font-size: 50px;
  padding: 0 160px;
}

.fun-section {
  margin-bottom: 80px;
  padding-top: 0;
}

.cta-buttons .cta-button {
  font-weight: 400;
}

#faqAccordion .accordion-button {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    padding: 0 !important;
  }
  .exp-section .main-headline {
    font-size: 32px;
    padding: unset;
  }
  .faq-section {
    padding-bottom: 0 !important;
  }
}
#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);
  }
}