html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    background: #ECECEC;
    margin: 0;
    padding: 0;
  }

  /* Header Styles */
  .header {
    background: #FFFFFF;
    border-top: 2px solid #000000;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    gap: 30px;
    height: 100px;
  }

  /* Logo */
  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 40px;
  }

  .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* Navigation Menu */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
    padding: 0 20px;
  }

  .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
  }

  .nav-link:hover {
    color: #305C44;
  }

  .chevron-btn {
    background: transparent;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    margin-left: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    vertical-align: middle;
  }

  .chevron-btn:hover {
    background: #f5f5f5;
  }

  .chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .nav-item:hover .chevron-btn .chevron {
    transform: rotate(180deg);
  }

  /* Dropdown Menu */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-item.active .chevron-btn .chevron {
    transform: rotate(180deg);
  }

  .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }

  .dropdown-item:hover {
    background: #ECECEC;
    color: #305C44;
    border-left-color: #305C44;
    padding-left: 25px;
  }

  /* Header CTA Button */
  .header-cta-btn {
    background: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 80px;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .btn-text {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1.2px;
  }

  .header-cta-btn .arrow {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    font-weight: 900;
  }

  .header-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }

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

  .header-cta-btn:hover {
    background: #254735;
    box-shadow: 0 3px 10px rgba(48, 92, 68, 0.15);
    font-weight: 900;
    letter-spacing: 1.5px;
  }

  .btn-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .header-cta-btn:hover .btn-text {
    font-weight: 900;
    letter-spacing: 1.5px;
  }

  .arrow {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }

  .header-cta-btn:hover .arrow {
    transform: translateX(5px);
  }

  /* Arrow fade animation */
  @keyframes arrowFade {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    50% {
      opacity: 0.8;
      transform: translateX(3px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .header-cta-btn:hover .arrow {
    animation: arrowFade 1.5s ease-in-out infinite;
  }

  /* Video Section */
  .video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
    margin-top: 0;
    z-index: 1;
  }

  .video-container {
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* Increased height */
    position: relative;
    overflow: hidden;
  }

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

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
  }

  /* Video Content Overlay */
  .video-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .video-heading {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .video-statement {
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
  }

  .video-book-btn {
    background: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 40px;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .video-book-btn:hover {
    background: #254735;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  }

  .video-book-btn:active {
    transform: translateY(0);
  }

  /* Video Section - Mobile Responsive */
  @media (max-width: 767px) {
    .video-container {
      padding-bottom: 125%; /* Increased height for mobile */
    }

    .hero-video {
      object-fit: cover;
    }

    .video-heading {
      font-size: 36px;
      letter-spacing: 1.5px;
    }

    .video-statement {
      font-size: 20px;
    }

    .video-book-btn {
      padding: 14px 35px;
      font-size: 14px;
    }

    .video-content {
      gap: 15px;
      max-width: 90%;
      bottom: 60px;
    }
  }

  @media (max-width: 480px) {
    .video-container {
      padding-bottom: 110%; /* Increased height for small mobile */
    }

    .video-heading {
      font-size: 28px;
      letter-spacing: 1px;
    }

    .video-statement {
      font-size: 15px;
    }

    .video-book-btn {
      padding: 12px 30px;
      font-size: 12px;
    }

      .video-content {
      gap: 12px;
      max-width: 95%;
      padding: 0 15px;
      bottom: 40px;
    }
  }

  /* Games Carousel Section */
  .games-section {
    background: #FFFFFF;
    padding: 60px 40px 80px 40px; /* Increased bottom padding for hover effect */
    width: 100%;
    box-sizing: border-box;
  }

  .games-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .games-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #979797 0%, #5a5a5a 25%, #305C44 50%, #4A7C59 75%, #1a2e1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .games-subtitle {
    font-size: 18px;
    color: #979797;
    text-align: center;
    margin: 0 0 50px 0;
    font-weight: 500;
  }

  .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 10px 0; /* Extra padding to accommodate hover animation */
  }

  .carousel-container {
    flex: 1;
    overflow: hidden; /* Keep hidden for carousel sliding */
    position: relative;
    padding: 15px 0; /* Extra padding top/bottom for hover animation */
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
  }

  .game-card {
    min-width: calc(33.333% - 20px);
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .game-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #ECECEC;
  }

  .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .game-name {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    text-align: center;
    margin: 20px 0;
    padding: 0 20px;
  }

  .game-btn {
    display: inline-block;
    background: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    margin: 0 auto 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .game-btn:hover {
    background: #254735;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(48, 92, 68, 0.12);
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000000;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
  }

  .carousel-btn:hover {
    background: #305C44;
    color: #FFFFFF;
    border-color: #305C44;
  }

  .carousel-btn span {
    line-height: 1;
    font-weight: bold;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #D0D0D0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .dot.active {
    background: #305C44;
    width: 30px;
    border-radius: 6px;
  }

  /* About Section */
  .about-section {
    background: #305C44;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    scroll-margin-top: 100px;
  }

  .about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 8px solid #000000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 0, 0, 0.2), 0 0 90px rgba(0, 0, 0, 0.1);
  }

  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-content {
    flex: 1;
    color: #FFFFFF;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  .about-heading {
    font-size: 42px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-align: left;
  }

  .about-text {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: left;
  }

  .about-btn {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .about-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* About Section 2 (Reversed - White Background) */
  .about-section-2 {
    background: #FFFFFF;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
    scroll-margin-top: 100px;
  }

  .about-container-2 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row;
  }

  .about-image-wrapper-2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image-circle-2 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 8px solid #305C44;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(48, 92, 68, 0.3), 0 0 60px rgba(48, 92, 68, 0.2), 0 0 90px rgba(48, 92, 68, 0.1);
  }

  .about-image-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-content-2 {
    flex: 1;
    color: #000000;
  }

  .about-heading-2 {
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 30px 0;
    line-height: 1.2;
    text-align: left;
  }

  .about-text-2 {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: left;
  }

  .about-btn-2 {
    display: inline-block;
    background: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .about-btn-2:hover {
    background: #254735;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* Parallax Section */
  .parallax-section {
    position: relative;
    min-height: 600px;
    background-image: url('./img01.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .parallax-content {
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    padding: 40px;
    max-width: 800px;
  }

  .parallax-heading {
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .parallax-text {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    font-weight: 500;
  }

  .parallax-btn {
    display: inline-block;
    background: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .parallax-btn:hover {
    background: #254735;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 92, 68, 0.3);
  }

  .dot:hover {
    background: #305C44;
  }

  /* Gallery Section */
  .gallery-section {
    background: #ECECEC;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .gallery-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .gallery-title {
    font-size: 42px;
    font-weight: 900;
    color: #305C44;
    text-align: center;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .gallery-subtitle {
    font-size: 18px;
    color: #979797;
    text-align: center;
    margin: 0 0 50px 0;
    font-weight: 500;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.1);
  }

  .gallery-load-more {
    display: none;
    margin: 40px auto 0;
    padding: 16px 40px;
    background: #305C44;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gallery-load-more:hover {
    background: #254735;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 92, 68, 0.3);
  }

  /* Lightbox Modal */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
  }

  .lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    line-height: 1;
  }

  .lightbox-close:hover {
    color: #305C44;
  }

  .lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1);
    }
  }

  /* Footer */
  .footer {
    background: #305C44;
    color: #FFFFFF;
    padding: 60px 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
  }

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

  .footer-logo-img {
    height: 60px;
    width: auto;
    /* filter: brightness(0) invert(1); */
  }

  .footer-title {
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .footer-text {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0 0 10px 0;
    opacity: 0.9;
  }

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

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

  .footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    opacity: 0.9;
  }

  .footer-links a:hover {
    color: #ECECEC;
    opacity: 1;
  }

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

  .footer-contact li {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
    line-height: 1.6;
  }

  .footer-social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .social-link {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0.9;
  }

  .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-2px);
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .footer-book-btn {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
  }

  .footer-book-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
  }

  .footer-bottom p {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
  }

  /* FAQ Section */
  .faq-section {
    background: #ECECEC;
    padding: 80px 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .faq-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .faq-title {
    font-size: 42px;
    font-weight: 900;
    color: #305C44;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background: #F5F5F5;
  }

  .faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 20px;
  }

  .faq-icon {
    font-size: 30px;
    font-weight: 700;
    color: #305C44;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
  }

  .faq-answer p {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
  }

  /* Franchise Form Section */
  .franchise-form-section {
    background-color: #305C44;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .franchise-form-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .franchise-form {
    background-color: #FFFFFF;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-section {
    margin-bottom: 40px;
  }

  .form-section:last-of-type {
    margin-bottom: 0;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row:last-child {
    margin-bottom: 0;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
  }

  .franchise-form label,
  .contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    display: block;
  }

  .franchise-form input[type="text"],
  .franchise-form input[type="email"],
  .franchise-form input[type="tel"],
  .franchise-form select,
  .franchise-form textarea,
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .franchise-form input[type="text"]:focus,
  .franchise-form input[type="email"]:focus,
  .franchise-form input[type="tel"]:focus,
  .franchise-form select:focus,
  .franchise-form textarea:focus,
  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form input[type="tel"]:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #305C44;
    border-width: 2px;
  }

  .franchise-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .franchise-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-note {
    font-size: 12px;
    color: #666666;
    margin: -4px 0 8px 0;
    font-weight: 400;
  }

  .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .form-legal-text {
    margin: 20px 0 30px 0;
  }

  .form-legal-text p {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
  }

  .form-submit-wrapper {
    text-align: center;
  }

  .form-submit-btn {
    background-color: #305C44;
    color: #FFFFFF;
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
  }

  .form-submit-btn:hover {
    background-color: #254735;
  }

  .form-submit-btn:active {
    transform: translateY(1px);
  }

  /* Franchise Form Responsive Styles */
  @media (max-width: 767px) {
    .franchise-form-section {
      padding: 60px 15px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .franchise-form-container {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .franchise-form {
      padding: 30px 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin: 0;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
      width: 100%;
      box-sizing: border-box;
    }

    .form-group {
      width: 100%;
      box-sizing: border-box;
    }

    .form-group.full-width {
      grid-column: 1;
      width: 100%;
    }

    .franchise-form input[type="text"],
    .franchise-form input[type="email"],
    .franchise-form input[type="tel"],
    .franchise-form select,
    .franchise-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .form-submit-btn {
      width: 100%;
      padding: 16px 30px;
      box-sizing: border-box;
    }
  }

  @media (max-width: 480px) {
    .franchise-form-section {
      padding: 40px 10px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .franchise-form-container {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .franchise-form {
      padding: 25px 15px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin: 0;
    }

    .form-row {
      width: 100%;
      box-sizing: border-box;
    }

    .form-group {
      width: 100%;
      box-sizing: border-box;
    }

    .franchise-form input[type="text"],
    .franchise-form input[type="email"],
    .franchise-form input[type="tel"],
    .franchise-form select,
    .franchise-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  /* Locations Section */
  .locations-section {
    padding: 80px 20px;
    background-color: #ECECEC;
    width: 100%;
    box-sizing: border-box;
  }

  .locations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .locations-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .location-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    position: relative;
  }

  .location-number {
    width: 50px;
    height: 50px;
    background-color: #305C44;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .location-content {
    flex: 1;
  }

  .location-city {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
  }

  .location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000000;
  }

  .location-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .location-text {
    flex: 1;
    line-height: 1.5;
  }

  .location-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .location-link:hover {
    color: #305C44;
  }

  .location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .location-btn {
    background-color: #305C44;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .location-btn:hover {
    background-color: #254735;
  }

  .location-btn:active {
    transform: translateY(1px);
  }

  .locations-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .locations-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Locations Responsive Styles */
  @media (max-width: 991px) {
    .locations-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .locations-map {
      height: 500px;
      order: -1;
    }
  }

  @media (max-width: 767px) {
    .locations-section {
      padding: 60px 15px;
    }

    .location-card {
      flex-direction: column;
      padding: 20px;
    }

    .location-number {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .location-city {
      font-size: 20px;
    }

    .location-buttons {
      flex-direction: column;
    }

    .location-btn {
      width: 100%;
    }

    .locations-map {
      height: 400px;
    }
  }

  @media (max-width: 480px) {
    .locations-section {
      padding: 40px 10px;
    }

    .location-card {
      padding: 15px;
    }

    .locations-map {
      height: 300px;
    }
  }

  /* Contact Form Section */
  .contact-form-section {
    background-color: #ECECEC;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form {
    background-color: #FFFFFF;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Contact Form Responsive Styles */
  @media (max-width: 767px) {
    .contact-form-section {
      padding: 60px 15px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .contact-form-container {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .contact-form {
      padding: 30px 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin: 0;
    }

    .contact-form .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form .form-group {
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form .form-group.full-width {
      grid-column: 1;
      width: 100%;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .contact-form .form-submit-btn {
      width: 100%;
      padding: 16px 30px;
      box-sizing: border-box;
    }
  }

  @media (max-width: 480px) {
    .contact-form-section {
      padding: 40px 10px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .contact-form-container {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .contact-form {
      padding: 25px 15px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      margin: 0;
    }

    .contact-form .form-row {
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form .form-group {
      width: 100%;
      box-sizing: border-box;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  /* Work in Progress Section */
  .work-in-progress-section {
    padding: 100px 20px;
    background-color: #ECECEC;
    text-align: center;
  }

  .work-in-progress-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .work-in-progress-heading {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
  }

  .work-in-progress-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
  }

  /* Tournaments Content Section */
  .tournaments-content-section {
    padding: 100px 20px;
    background-color: #ECECEC;
  }

  .tournaments-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .tournaments-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
  }

  .tournaments-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }

  .tournament-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .tournament-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #305C44;
  }

  .tournament-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0;
  }

  .tournament-date {
    font-size: 18px;
    font-weight: 600;
    color: #305C44;
    background-color: #E8F5E9;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .tournament-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .tournament-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .tournament-label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
  }

  .tournament-value {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
  }

  .tournament-value a {
    color: #305C44;
    text-decoration: none;
    font-weight: 600;
  }

  .tournament-value a:hover {
    text-decoration: underline;
  }

  .tournament-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
  }

  .tournament-rules-section {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .tournament-rules-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
  }

  .tournament-rules-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 0;
  }

  .tournament-rules-list li {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 10px;
  }

  .tournament-rules-list li:last-child {
    margin-bottom: 0;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 80px 20px;
    background-color: #ECECEC;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .pricing-card.featured {
    border: 3px solid #305C44;
    transform: scale(1.05);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
  }

  .featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #305C44;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    text-align: center;
  }

  .pricing-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .pricing-price {
    text-align: center;
    margin-bottom: 20px;
  }

  .price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #305C44;
    display: block;
  }

  .price-period {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    display: block;
    margin-top: 5px;
  }

  .pricing-special {
    font-size: 14px;
    color: #305C44;
    font-weight: 600;
    text-align: center;
    margin: 0;
  }

  .pricing-details {
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin: 0;
    line-height: 1.6;
  }

  .pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .pricing-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ECECEC;
  }

  .pricing-option-item:last-child {
    border-bottom: none;
  }

  .pricing-option-item.additional {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #ECECEC;
  }

  .option-price {
    font-size: 36px;
    font-weight: 700;
    color: #305C44;
  }

  .option-details {
    font-size: 14px;
    color: #000000;
    text-align: right;
    flex: 1;
    margin-left: 15px;
  }

  .pricing-features {
    flex: 1;
    margin-bottom: 30px;
  }

  .pricing-description {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }

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

  .pricing-list li {
    font-size: 14px;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #ECECEC;
    position: relative;
    padding-left: 25px;
  }

  .pricing-list li:last-child {
    border-bottom: none;
  }

  .pricing-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #305C44;
    font-weight: 700;
    font-size: 16px;
  }

  .pricing-btn {
    background-color: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  }

  .pricing-btn:hover {
    background-color: #254735;
    transform: translateY(-2px);
  }

  .pricing-btn:active {
    transform: translateY(0);
  }

  /* Pricing Responsive Styles */
  @media (max-width: 991px) {
    .pricing-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .pricing-card.featured {
      transform: scale(1);
    }

    .pricing-card.featured:hover {
      transform: translateY(-5px);
    }

    .pricing-option-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .option-details {
      text-align: left;
      margin-left: 0;
    }
  }

  @media (max-width: 767px) {
    .pricing-section {
      padding: 60px 15px;
    }

    .pricing-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .pricing-card {
      padding: 30px 20px;
    }

    .pricing-title {
      font-size: 24px;
    }

    .price-amount {
      font-size: 40px;
    }

    .option-price {
      font-size: 32px;
    }

    .work-in-progress-heading {
      font-size: 36px;
    }

    .work-in-progress-text {
      font-size: 16px;
    }

    /* Tournaments Tablet Styles */
    .tournaments-content-section {
      padding: 80px 20px;
    }

    .tournaments-main-heading {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .tournaments-cards {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .tournament-card {
      padding: 30px;
    }

    .tournament-card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .tournament-card-title {
      font-size: 24px;
    }

    .tournament-rules-section {
      padding: 30px 25px;
    }

    .tournament-rules-heading {
      font-size: 28px;
    }
  }

  @media (max-width: 480px) {
    .pricing-section {
      padding: 40px 10px;
    }

    .pricing-card {
      padding: 25px 15px;
    }

    .price-amount {
      font-size: 36px;
    }

    .option-price {
      font-size: 28px;
    }

    .work-in-progress-section {
      padding: 60px 15px;
    }

    .work-in-progress-heading {
      font-size: 28px;
    }

    /* Tournaments Mobile Styles */
    .tournaments-content-section {
      padding: 60px 15px;
    }

    .tournaments-main-heading {
      font-size: 32px;
      margin-bottom: 30px;
    }

    .tournaments-cards {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .tournament-card {
      padding: 25px;
    }

    .tournament-card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    .tournament-card-title {
      font-size: 22px;
    }

    .tournament-date {
      font-size: 14px;
      padding: 6px 12px;
    }

    .tournament-label,
    .tournament-value {
      font-size: 14px;
    }

    .tournament-rules-section {
      padding: 25px 20px;
    }

    .tournament-rules-heading {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .tournament-rules-list {
      padding-left: 20px;
    }

    .tournament-rules-list li {
      font-size: 14px;
      margin-bottom: 12px;
    }
  }

  /* Birthday Party Pricing Section */
  .birthday-pricing-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
  }

  .birthday-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .birthday-pricing-heading {
    font-size: 42px;
    font-weight: 700;
    color: #305C44;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .birthday-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .birthday-pricing-card {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .birthday-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .birthday-pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #305C44;
    margin: 0 0 30px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .birthday-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
  }

  .birthday-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #ECECEC;
  }

  .birthday-price-item:last-child {
    border-bottom: none;
  }

  .birthday-price-label {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
  }

  .birthday-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #305C44;
  }

  .birthday-pricing-features {
    flex: 1;
    margin-bottom: 30px;
  }

  .birthday-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .birthday-features-list li {
    font-size: 15px;
    color: #000000;
    padding: 12px 0;
    border-bottom: 1px solid #ECECEC;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
  }

  .birthday-features-list li:last-child {
    border-bottom: none;
  }

  .birthday-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #305C44;
    font-weight: 700;
    font-size: 18px;
  }

  .birthday-pricing-btn {
    background-color: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  }

  .birthday-pricing-btn:hover {
    background-color: #254735;
    transform: translateY(-2px);
  }

  .birthday-pricing-btn:active {
    transform: translateY(0);
  }

  /* Birthday Pricing Responsive Styles */
  @media (max-width: 991px) {
    .birthday-pricing-cards {
      gap: 30px;
    }

    .birthday-pricing-heading {
      font-size: 36px;
    }

    .birthday-pricing-title {
      font-size: 28px;
    }

    .birthday-price-amount {
      font-size: 32px;
    }
  }

  @media (max-width: 767px) {
    .birthday-pricing-section {
      padding: 60px 15px;
    }

    .birthday-pricing-heading {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .birthday-pricing-cards {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .birthday-pricing-card {
      padding: 30px 20px;
    }

    .birthday-pricing-title {
      font-size: 24px;
    }

    .birthday-price-amount {
      font-size: 28px;
    }

    .birthday-features-list li {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .birthday-pricing-section {
      padding: 40px 10px;
    }

    .birthday-pricing-heading {
      font-size: 28px;
    }

    .birthday-pricing-card {
      padding: 25px 15px;
    }

    .birthday-pricing-title {
      font-size: 22px;
    }

    .birthday-price-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .birthday-price-label {
      font-size: 16px;
    }

    .birthday-price-amount {
      font-size: 24px;
    }
  }

  /* Merchandise Section */
  .merchandise-section {
    padding: 80px 20px;
    background-color: #ECECEC;
    width: 100%;
    box-sizing: border-box;
  }

  .merchandise-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .merchandise-heading {
    font-size: 42px;
    font-weight: 700;
    color: #305C44;
    text-align: center;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .merchandise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .merchandise-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .merchandise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .merchandise-name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .merchandise-price {
    font-size: 32px;
    font-weight: 700;
    color: #305C44;
    margin: 0;
  }

  /* Merchandise Responsive Styles */
  @media (max-width: 991px) {
    .merchandise-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .merchandise-heading {
      font-size: 36px;
    }

    .merchandise-name {
      font-size: 22px;
    }

    .merchandise-price {
      font-size: 28px;
    }
  }

  @media (max-width: 767px) {
    .merchandise-section {
      padding: 60px 15px;
    }

    .merchandise-heading {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .merchandise-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .merchandise-item {
      padding: 25px 15px;
    }

    .merchandise-name {
      font-size: 20px;
    }

    .merchandise-price {
      font-size: 26px;
    }
  }

  @media (max-width: 480px) {
    .merchandise-section {
      padding: 40px 10px;
    }

    .merchandise-heading {
      font-size: 28px;
    }

    .merchandise-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .merchandise-item {
      padding: 25px 20px;
    }

    .merchandise-name {
      font-size: 18px;
    }

    .merchandise-price {
      font-size: 24px;
    }
  }

  /* Powered By Section */
  .powered-by {
    background: #000000;
    color: #FFFFFF;
    padding: 20px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .powered-by p {
    margin: 0;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
  }

  .hashstack-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .hashstack-link:hover {
    opacity: 0.8;
  }

  .hashstack-name {
    font-weight: 700;
    color: #FFFFFF;
  }

  /* Scroll to Top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #305C44;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }

  .scroll-to-top:hover {
    background: #254735;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .scroll-to-top:active {
    transform: translateY(-1px);
  }

  .scroll-to-top span {
    line-height: 1;
    display: inline-block;
    animation: arrowBounce 2s ease-in-out infinite;
  }

  /* Booking Modal */
  .booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .booking-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }

  .booking-modal-content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
  }

  @keyframes modalSlideIn {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .booking-modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }

  .booking-modal-close:hover {
    color: #000000;
  }

  .booking-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #305C44;
    text-align: center;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .booking-modal-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .booking-option {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .booking-option:hover:not(.disabled) {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .booking-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .booking-option-icon {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .booking-option-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .booking-option-text {
    font-size: 14px;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.6;
  }

  .booking-option-btn {
    background-color: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
  }

  .booking-option-btn:hover:not(:disabled) {
    background-color: #254735;
    transform: translateY(-2px);
  }

  .booking-option-btn:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
    opacity: 0.7;
  }

  .booking-option-btn-call {
    background-color: #305C44;
  }

  .booking-option-btn-call:hover {
    background-color: #254735;
  }

  /* Booking Form Styles */
  .booking-form-content {
    max-width: 1100px;
    width: 95%;
  }

  .booking-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }

  .booking-form-left {
    width: 100%;
  }

  .booking-form-right {
    width: 100%;
    position: sticky;
    top: 20px;
  }

  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }

  .form-label {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-label .required {
    color: #DC3545;
    margin-left: 3px;
  }

  .form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-input:focus {
    outline: none;
    border-color: #305C44;
    box-shadow: 0 0 0 3px rgba(48, 92, 68, 0.1);
  }

  .form-input[type="date"],
  .form-input[type="time"] {
    cursor: pointer;
  }

  .form-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
  }

  .form-input[type="number"]::-webkit-outer-spin-button,
  .form-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
  }

  .form-actions {
    margin-top: 10px;
  }

  .booking-form-submit-btn {
    width: 100%;
    background-color: #305C44;
    color: #FFFFFF;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  }

  .booking-form-submit-btn:hover {
    background-color: #254735;
    transform: translateY(-2px);
  }

  .booking-form-submit-btn:active {
    transform: translateY(0);
  }

  /* Custom Calendar Picker */
  .date-picker-input,
  .time-picker-input {
    cursor: pointer;
    background-color: #F8F8F8;
  }

  .custom-calendar-picker {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 8px;
    z-index: 1000;
    width: 100%;
    max-width: 350px;
  }

  .custom-calendar-picker.show {
    display: block;
  }

  .calendar-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .calendar-nav-btn {
    background-color: #305C44;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .calendar-nav-btn:hover {
    background-color: #254735;
  }

  .calendar-month-year-display {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .calendar-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    padding: 8px 0;
  }

  .calendar-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }

  .calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000000;
  }

  .calendar-day-cell.empty {
    cursor: default;
  }

  .calendar-day-cell.past {
    color: #CCCCCC;
    cursor: not-allowed;
  }

  .calendar-day-cell.today {
    background-color: #E8F5E9;
    color: #305C44;
    font-weight: 700;
  }

  .calendar-day-cell[data-selectable="true"]:hover:not(.selected) {
    background-color: #F0F0F0;
  }

  .calendar-day-cell.selected {
    background-color: #305C44;
    color: #FFFFFF;
    font-weight: 700;
  }

  /* Custom Clock Picker */
  .custom-clock-picker {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin-top: 8px;
    z-index: 1000;
    width: 100%;
    max-width: 320px;
  }

  .custom-clock-picker.show {
    display: block;
  }

  .clock-picker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .clock-face {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    border: 4px solid #305C44;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #305C44;
    border-radius: 50%;
    z-index: 10;
  }

  .clock-hour-hand,
  .clock-minute-hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: bottom center;
    background-color: #305C44;
    border-radius: 4px;
    z-index: 5;
  }

  .clock-hour-hand {
    width: 4px;
    height: 70px;
    margin-left: -2px;
    margin-top: -70px;
  }

  .clock-minute-hand {
    width: 3px;
    height: 90px;
    margin-left: -1.5px;
    margin-top: -90px;
    background-color: #254735;
  }

  .clock-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .clock-number {
    position: absolute;
    font-size: 16px;
    font-weight: 700;
    color: #305C44;
    transform: translate(-50%, -50%);
  }

  .clock-number[data-hour="12"] { top: 8%; left: 50%; }
  .clock-number[data-hour="1"] { top: 15%; left: 78%; }
  .clock-number[data-hour="2"] { top: 30%; left: 92%; }
  .clock-number[data-hour="3"] { top: 50%; left: 96%; }
  .clock-number[data-hour="4"] { top: 70%; left: 92%; }
  .clock-number[data-hour="5"] { top: 85%; left: 78%; }
  .clock-number[data-hour="6"] { top: 92%; left: 50%; }
  .clock-number[data-hour="7"] { top: 85%; left: 22%; }
  .clock-number[data-hour="8"] { top: 70%; left: 8%; }
  .clock-number[data-hour="9"] { top: 50%; left: 4%; }
  .clock-number[data-hour="10"] { top: 30%; left: 8%; }
  .clock-number[data-hour="11"] { top: 15%; left: 22%; }

  .clock-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .time-display-picker {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .time-input {
    width: 60px;
    padding: 10px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  }

  .time-input:focus {
    outline: none;
    border-color: #305C44;
    box-shadow: 0 0 0 3px rgba(48, 92, 68, 0.1);
  }

  .time-separator {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
  }

  .period-select {
    padding: 10px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
    background-color: #FFFFFF;
  }

  .period-select:focus {
    outline: none;
    border-color: #305C44;
    box-shadow: 0 0 0 3px rgba(48, 92, 68, 0.1);
  }

  .clock-ok-btn {
    background-color: #305C44;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Myriad Pro', 'Myriad Pro Bold Condensed', 'Roboto Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  }

  .clock-ok-btn:hover {
    background-color: #254735;
    transform: translateY(-2px);
  }

  /* Calendar and Clock Widgets */
  .calendar-clock-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .calendar-widget,
  .clock-widget {
    background: linear-gradient(135deg, #305C44 0%, #254735 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(48, 92, 68, 0.3);
    color: #FFFFFF;
    text-align: center;
  }

  .calendar-header,
  .clock-header {
    margin-bottom: 20px;
  }

  .calendar-title,
  .clock-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: #FFFFFF;
  }

  .calendar-display {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .calendar-day {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .calendar-date {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
  }

  .calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .clock-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .clock-time {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    font-variant-numeric: tabular-nums;
  }

  .clock-period {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Info Widget */
  .info-widget {
    background: linear-gradient(135deg, #305C44 0%, #254735 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(48, 92, 68, 0.3);
    color: #FFFFFF;
  }

  .info-header {
    margin-bottom: 20px;
    text-align: center;
  }

  .info-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: #FFFFFF;
  }

  .info-display {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: #FFFFFF;
  }

  .info-value {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    word-break: break-word;
  }

  /* Toast Notification Styles */
  .toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #333333;
    color: #FFFFFF;
    padding: 18px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    max-width: 90%;
    box-sizing: border-box;
  }

  .toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .toast-notification.success {
    background-color: #4CAF50;
  }

  .toast-notification.error {
    background-color: #F44336;
  }

  .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .toast-icon {
    font-size: 24px;
    flex-shrink: 0;
  }

  .toast-message {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }

  /* Booking Modal Responsive Styles */
  @media (max-width: 767px) {
    .booking-modal-content {
      padding: 30px 20px;
      width: 85%;
    }

    .booking-modal-title {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .booking-modal-options {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .booking-option {
      padding: 25px 15px;
    }

    .booking-option-icon {
      font-size: 40px;
    }

    .booking-option-title {
      font-size: 20px;
    }

    .booking-option-text {
      font-size: 13px;
    }

    .booking-option-btn {
      font-size: 14px;
      padding: 12px 25px;
    }

    /* Booking Form Mobile Styles */
    .booking-form-wrapper {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .booking-form-right {
      position: static;
    }

    .booking-form {
      gap: 18px;
    }

    .form-label {
      font-size: 14px;
    }

    .form-input {
      padding: 12px 16px;
      font-size: 15px;
    }

    .booking-form-submit-btn {
      padding: 14px 25px;
      font-size: 16px;
    }

    .calendar-widget,
    .clock-widget {
      padding: 25px 20px;
    }

    .calendar-date {
      font-size: 48px;
    }

    .clock-time {
      font-size: 42px;
    }

    .info-widget {
      padding: 25px 20px;
    }

    .info-title {
      font-size: 16px;
    }

    .info-display {
      gap: 15px;
    }

    .info-item {
      padding-bottom: 12px;
    }

    .info-label {
      font-size: 11px;
    }

    .info-value {
      font-size: 14px;
    }

    /* Calendar and Clock Pickers Mobile */
    .custom-calendar-picker {
      max-width: 100%;
      padding: 15px;
    }

    .calendar-picker-days {
      gap: 6px;
    }

    .calendar-day-cell {
      font-size: 13px;
    }

    .custom-clock-picker {
      max-width: 100%;
      padding: 20px;
    }

    .clock-face {
      width: 200px;
      height: 200px;
    }

    .clock-hour-hand {
      height: 60px;
      margin-top: -60px;
    }

    .clock-minute-hand {
      height: 75px;
      margin-top: -75px;
    }

    .clock-number {
      font-size: 14px;
    }

    .time-input {
      width: 50px;
      font-size: 16px;
      padding: 8px;
    }

    .toast-notification {
      bottom: 20px;
      padding: 15px 20px;
      max-width: 95%;
    }

    .toast-message {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .booking-modal-content {
      padding: 25px 15px;
    }

    .booking-modal-title {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .booking-option-icon {
      font-size: 36px;
    }

    .booking-option-title {
      font-size: 18px;
    }

    /* Booking Form Small Mobile Styles */
    .booking-form-wrapper {
      gap: 25px;
    }

    .booking-form {
      gap: 16px;
    }

    .form-label {
      font-size: 13px;
    }

    .form-input {
      padding: 11px 14px;
      font-size: 14px;
    }

    .booking-form-submit-btn {
      padding: 13px 20px;
      font-size: 15px;
    }

    .calendar-widget,
    .clock-widget {
      padding: 20px 15px;
    }

    .calendar-title,
    .clock-title {
      font-size: 16px;
    }

    .calendar-date {
      font-size: 40px;
    }

    .calendar-day,
    .calendar-month-year {
      font-size: 14px;
    }

    .clock-time {
      font-size: 36px;
    }

    .clock-period {
      font-size: 16px;
    }

    .info-widget {
      padding: 20px 15px;
    }

    .info-title {
      font-size: 14px;
    }

    .info-display {
      gap: 12px;
    }

    .info-item {
      padding-bottom: 10px;
    }

    .info-label {
      font-size: 10px;
    }

    .info-value {
      font-size: 13px;
    }

    /* Calendar and Clock Pickers Small Mobile */
    .custom-calendar-picker {
      padding: 12px;
    }

    .calendar-picker-header {
      margin-bottom: 15px;
    }

    .calendar-nav-btn {
      width: 32px;
      height: 32px;
      font-size: 20px;
    }

    .calendar-month-year-display {
      font-size: 16px;
    }

    .calendar-picker-weekdays {
      gap: 4px;
      margin-bottom: 8px;
    }

    .calendar-weekday {
      font-size: 11px;
      padding: 6px 0;
    }

    .calendar-picker-days {
      gap: 4px;
    }

    .calendar-day-cell {
      font-size: 12px;
    }

    .custom-clock-picker {
      padding: 15px;
    }

    .clock-face {
      width: 180px;
      height: 180px;
    }

    .clock-hour-hand {
      height: 50px;
      margin-top: -50px;
    }

    .clock-minute-hand {
      height: 65px;
      margin-top: -65px;
    }

    .clock-number {
      font-size: 12px;
    }

    .time-input {
      width: 45px;
      font-size: 14px;
      padding: 6px;
    }

    .time-separator {
      font-size: 20px;
    }

    .period-select {
      padding: 8px 12px;
      font-size: 14px;
    }

    .clock-ok-btn {
      padding: 10px 30px;
      font-size: 14px;
    }

    .toast-notification {
      bottom: 15px;
      padding: 12px 18px;
    }

    .toast-icon {
      font-size: 20px;
    }

    .toast-message {
      font-size: 13px;
    }
  }

  @keyframes arrowBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .scroll-to-top:hover span {
    animation-duration: 0.5s;
  }

  /* Main Content */
  .main-content {
    padding: 40px;
  }
  
  .title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card {
    background: #FFFFFF;
    width: 280px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
  }
  
  .card h2 {
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
  }
  
  /* Square Button Styling */
  .square-btn {
    background-color: #305C44;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: bold;
  }

  .square-btn:hover {
    background-color: #254735;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(48, 92, 68, 0.12);
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  /* Mobile Book Golf Bay Button - Hidden on Desktop */
  .mobile-book-btn {
    display: none;
  }

  /* Mobile Menu Header - Hidden on Desktop */
  .mobile-menu-header {
    display: none;
  }

  .mobile-logo {
    display: none;
  }

  .mobile-close-btn {
    display: none;
  }

  .nav-items-wrapper {
    display: contents;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Responsive Design - Media Queries */

  /* Laptops and Desktops (992px and above) */
  @media (min-width: 992px) {
    .header-container {
      padding: 0;
      max-width: 100%;
      gap: 0;
    }
    
    .logo {
      padding-left: 30px;
      padding-right: 20px;
    }
    
    .nav-menu {
      gap: 25px;
      padding: 0 20px;
    }
    
    .header-cta-btn {
      padding: 0 100px;
      /* padding-right: 0; */
    }

    .video-container {
      padding-bottom: 45%; /* Increased height for laptops */
    }

    .video-section {
      margin-top: 0px; /* Push video section down a bit */
    }
  }

  /* Large Screens (1400px and above) */
  @media (min-width: 1400px) {
    .header-container {
      max-width: 100%;
    }
  }

  /* Tablets and Small Laptops (768px - 991px) */
  @media (max-width: 991px) {
    .header-container {
      padding: 0 20px;
      height: 90px;
    }

    .logo {
      padding: 0 20px;
    }

    .logo-img {
      height: 60px;
    }

    .nav-menu {
      gap: 20px;
      padding: 0 10px;
    }

    .nav-link {
      font-size: 12px;
    }

    .header-cta-btn {
      padding: 0 30px;
      font-size: 12px;
    }

    .games-section {
      padding: 40px 20px;
    }

    .about-section {
      padding: 60px 30px;
    }

    .about-container {
      flex-direction: column;
      gap: 40px;
    }

    .about-image-circle {
      width: 400px;
      height: 400px;
    }

    .about-heading {
      font-size: 36px;
      text-align: center;
    }

    .about-text {
      font-size: 16px;
      text-align: center;
    }

    .about-btn {
      display: block;
      text-align: center;
      margin: 0 auto;
    }

    .about-section-2 {
      padding: 60px 30px;
    }

    .about-container-2 {
      flex-direction: column;
      gap: 40px;
    }

    .about-image-wrapper-2 {
      order: -1;
    }

    .about-content-2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      order: 1;
    }

    .about-image-circle-2 {
      width: 400px;
      height: 400px;
    }

    .about-heading-2 {
      font-size: 36px;
      text-align: center;
    }

    .about-text-2 {
      font-size: 16px;
      text-align: center;
    }

    .about-btn-2 {
      display: block;
      text-align: center;
      margin: 0 auto;
    }

    .parallax-section {
      min-height: 500px;
      background-attachment: scroll;
    }

    .parallax-heading {
      font-size: 36px;
    }

    .parallax-text {
      font-size: 20px;
    }

    .parallax-btn {
      font-size: 16px;
      padding: 14px 35px;
    }

    .scroll-to-top {
      width: 48px;
      height: 48px;
      bottom: 25px;
      right: 25px;
      font-size: 22px;
    }

    .gallery-section {
      padding: 60px 30px;
    }

    .gallery-title {
      font-size: 36px;
    }

    .gallery-subtitle {
      font-size: 16px;
    }

    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .gallery-item.hidden-mobile {
      display: none;
    }

    .gallery-item.hidden-mobile.show {
      display: block;
    }

    .gallery-load-more {
      display: block;
    }

    .footer-logo-img {
      height: 50px;
    }

    .faq-section {
      padding: 60px 30px;
    }

    .faq-title {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .faq-question h3 {
      font-size: 18px;
    }

    .powered-by {
      padding: 18px 30px;
    }

    .powered-by p {
      font-size: 14px;
    }

    .footer-social {
      gap: 15px;
    }

    .social-link {
      width: 35px;
      height: 35px;
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .games-title {
      font-size: 32px;
    }

    .games-subtitle {
      font-size: 16px;
    }

    .game-card {
      min-width: calc(50% - 15px);
    }

    .game-image {
      height: 200px;
    }

    .main-content {
      padding: 30px 20px;
    }

    .card {
      width: 100%;
      max-width: 350px;
    }
  }

  /* Tablets Portrait (577px - 767px) */
  @media (max-width: 767px) {
    .header-container {
      height: 80px;
      padding: 0 15px;
    }

    .logo {
      padding: 0 15px;
    }

    .logo-img {
      height: 50px;
    }

    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #FFFFFF;
      flex-direction: column;
      align-items: stretch;
      padding: 0;
      gap: 0;
      box-shadow: none;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 9999;
      overflow: hidden;
      display: flex;
      justify-content: space-between;
    }

    .nav-menu.active {
      transform: translateX(0);
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 2px solid #ECECEC;
      background: #FFFFFF;
      position: sticky;
      top: 0;
      z-index: 100;
      flex-shrink: 0;
    }

    .mobile-logo {
      display: flex;
      align-items: center;
    }

    .mobile-logo-img {
      height: 50px;
      width: auto;
      object-fit: contain;
    }

    .mobile-close-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      font-size: 40px;
      color: #000000;
      cursor: pointer;
      width: 40px;
      height: 40px;
      padding: 0;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .mobile-close-btn:hover {
      color: #305C44;
    }

    .nav-items-wrapper {
      display: flex;
      flex-direction: column;
      width: 100%;
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      min-height: 0;
      -webkit-overflow-scrolling: touch;
      align-items: stretch;
    }

    .nav-item {
      width: 100%;
      border-bottom: 1px solid #ECECEC;
      display: flex;
      flex-direction: column;
      position: static;
    }

    /* On mobile, nav-link and chevron-btn should be in a row */
    .nav-item > div {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      justify-content: flex-start;
      position: relative;
    }

    .nav-link {
      flex: 1;
      padding: 18px 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-align: left;
      box-sizing: border-box;
      transition: color 0.3s ease;
      width: 100%;
    }

    .nav-item > div > .chevron-btn {
      position: absolute;
      right: 20px;
      margin: 0;
      flex-shrink: 0;
    }

    .nav-item.active .nav-link {
      color: #305C44;
    }

    .chevron-btn {
      background: transparent;
      border: 1.5px solid #000000;
      border-radius: 4px;
      padding: 6px 10px;
      margin-right: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .chevron-btn:hover {
      border-color: #305C44;
      background: #f5f5f5;
    }

    .chevron {
      font-size: 14px;
      transition: transform 0.3s ease, color 0.3s ease;
      display: inline-block;
    }

    .nav-item.active .chevron-btn .chevron {
      transform: rotate(180deg);
      color: #305C44;
    }

    /* Mobile Dropdown - Simple Display Toggle */
    .dropdown-menu {
      display: none !important;
      width: 100%;
      background: #ECECEC;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      position: static !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
      opacity: 1 !important;
      visibility: hidden !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      margin-top: 0 !important;
      z-index: auto !important;
    }

    .nav-item.active .dropdown-menu {
      display: block !important;
      visibility: visible !important;
    }

    .dropdown-item {
      display: block;
      width: 100%;
      padding: 16px 40px;
      color: #000000;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      background: #ECECEC;
      border-bottom: 1px solid #D0D0D0;
      box-sizing: border-box;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .dropdown-item:last-child {
      border-bottom: none;
    }

    .dropdown-item:active,
    .dropdown-item:hover {
      background: #D0D0D0;
      color: #305C44;
    }

    .header-cta-btn {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
      margin-top: 10px;
    }

    /* Mobile Book Golf Bay Button - Show on Mobile */
    .mobile-book-btn {
      display: flex !important;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 120px;
      background: #305C44;
      color: #FFFFFF;
      text-align: center;
      padding: 0;
      margin: 30px auto 20px;
      font-weight: 900;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
      box-sizing: border-box;
      gap: 0;
      z-index: 100;
      flex-shrink: 0;
      border: none;
      position: relative;
      line-height: 1.2;
    }

    .mobile-book-btn:hover,
    .mobile-book-btn:active {
      background: #254735;
    }

    .mobile-book-btn .arrow {
      display: none;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .video-container {
      padding-bottom: 125%;
    }

    .games-section {
      padding: 40px 15px;
    }

    .about-section {
      padding: 50px 20px;
    }

    .about-container {
      flex-direction: column;
      gap: 30px;
    }

    .about-image-circle {
      width: 300px;
      height: 300px;
      border: 6px solid #000000;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .about-heading {
      font-size: 28px;
      text-align: center;
    }

    .about-text {
      font-size: 15px;
      text-align: center;
    }

    .about-btn {
      font-size: 14px;
      padding: 14px 30px;
      max-width: 100%;
      box-sizing: border-box;
      width: auto;
    }

    .about-section-2 {
      padding: 50px 20px;
    }

    .about-container-2 {
      flex-direction: column;
      gap: 30px;
    }

    .about-image-wrapper-2 {
      order: -1;
    }

    .about-content-2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      order: 1;
    }

    .about-image-circle-2 {
      width: 300px;
      height: 300px;
      border: 6px solid #305C44;
    }

    .about-heading-2 {
      font-size: 28px;
      text-align: center;
    }

    .about-text-2 {
      font-size: 15px;
      text-align: center;
    }

    .about-btn-2 {
      font-size: 14px;
      padding: 14px 30px;
    }

    .gallery-item.hidden-mobile {
      display: none;
    }

    .gallery-item.hidden-mobile.show {
      display: block;
    }

    .gallery-load-more {
      display: block;
      font-size: 14px;
      padding: 14px 35px;
    }

    .powered-by {
      padding: 15px 20px;
    }

    .powered-by p {
      font-size: 13px;
    }

    .games-title {
      font-size: 28px;
      letter-spacing: 1px;
    }

    .games-subtitle {
      font-size: 14px;
      margin-bottom: 30px;
    }

    .carousel-wrapper {
      gap: 10px;
      padding: 0;
    }

    .carousel-container {
      width: 100%;
      overflow: hidden;
      padding: 0;
    }

    .carousel-track {
      gap: 15px;
    }

    .game-card {
      min-width: calc(50% - 15px);
      max-width: calc(50% - 15px);
      width: calc(50% - 15px);
      box-sizing: border-box;
    }

    .game-image {
      height: 180px;
      width: 100%;
      overflow: hidden;
    }

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

    .game-name {
      font-size: 20px;
      margin: 15px 0;
    }

    .game-btn {
      padding: 10px 25px;
      font-size: 12px;
      margin: 0 15px 15px;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 24px;
    }

    .main-content {
      padding: 25px 15px;
    }

    .title {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .container {
      gap: 20px;
    }

    .card {
      max-width: 100%;
    }
  }

  /* Small Mobiles (481px - 576px) */
  @media (max-width: 576px) {
    .header-container {
      height: 70px;
      padding: 0 10px;
      gap: 15px;
    }

    .logo {
      padding: 0 10px;
    }

    .logo-img {
      height: 45px;
    }

    .nav-menu {
      top: 0;
      height: 100vh;
    }

    .mobile-logo-img {
      height: 45px;
    }

    .mobile-menu-header {
      padding: 12px 15px;
    }

    .main-content {
      padding: 20px 10px;
    }

    .title {
      font-size: 22px;
      margin-bottom: 25px;
    }

    .card {
      padding: 20px;
    }

    .card h2 {
      font-size: 20px;
    }

    .price {
      font-size: 18px;
    }

    .square-btn {
      padding: 10px 20px;
      font-size: 12px;
      width: 100%;
    }
  }

  /* Extra Small Mobiles (320px - 480px) */
  @media (max-width: 480px) {
    .header-container {
      height: 65px;
    }

    .logo-img {
      height: 40px;
    }

    .nav-menu {
      top: 0;
      height: 100vh;
      width: 100%;
    }

    .mobile-logo-img {
      height: 40px;
    }

    .mobile-menu-header {
      padding: 12px 15px;
    }

    .nav-link {
      font-size: 13px;
      padding: 16px 15px;
    }

    .dropdown-item {
      padding: 12px 30px;
    }

    .mobile-book-btn {
      width: 100px;
      height: 100px;
      font-size: 12px;
      margin: 25px auto 15px;
    }

    .games-section {
      padding: 30px 10px;
    }

    .about-section {
      padding: 40px 15px;
    }

    .about-container {
      flex-direction: column;
      gap: 25px;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .about-image-circle {
      width: 250px;
      height: 250px;
      border: 5px solid #000000;
    }

    .about-heading {
      font-size: 24px;
      text-align: center;
    }

    .about-text {
      font-size: 14px;
      text-align: center;
    }

    .about-btn {
      font-size: 12px;
      padding: 12px 25px;
      width: auto;
      max-width: 100%;
      box-sizing: border-box;
      display: inline-block;
    }

    .about-section-2 {
      padding: 40px 15px;
    }

    .about-container-2 {
      flex-direction: column;
      gap: 25px;
    }

    .about-image-wrapper-2 {
      order: -1;
    }

    .about-content-2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      order: 1;
    }

    .about-image-circle-2 {
      width: 250px;
      height: 250px;
      border: 5px solid #305C44;
    }

    .about-heading-2 {
      font-size: 24px;
      text-align: center;
    }

    .about-text-2 {
      font-size: 14px;
      text-align: center;
    }

    .about-btn-2 {
      font-size: 12px;
      padding: 12px 25px;
      width: auto;
      max-width: 100%;
      box-sizing: border-box;
      display: inline-block;
    }

    .faq-section {
      padding: 40px 15px;
    }

    .faq-title {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .faq-question {
      padding: 20px 15px;
    }

    .faq-question h3 {
      font-size: 16px;
    }

    .faq-icon {
      font-size: 24px;
    }

    .faq-item.active .faq-answer {
      padding: 0 15px 20px 15px;
    }

    .faq-answer p {
      font-size: 14px;
    }

    .parallax-section {
      min-height: 350px;
      background-attachment: scroll;
    }

    .parallax-content {
      padding: 25px 15px;
    }

    .parallax-heading {
      font-size: 24px;
      letter-spacing: 1px;
    }

    .parallax-text {
      font-size: 16px;
      margin: 0 0 30px 0;
    }

    .parallax-btn {
      font-size: 12px;
      padding: 12px 25px;
    }

    .gallery-section {
      padding: 40px 15px;
    }

    .gallery-title {
      font-size: 24px;
    }

    .gallery-subtitle {
      font-size: 14px;
      margin-bottom: 25px;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .gallery-item.hidden-mobile {
      display: none;
    }

    .gallery-item.hidden-mobile.show {
      display: block;
    }

    .gallery-load-more {
      display: block;
      font-size: 12px;
      padding: 12px 30px;
      margin: 30px auto 0;
    }

    .footer-logo-img {
      height: 40px;
    }

    .powered-by {
      padding: 12px 15px;
    }

    .powered-by p {
      font-size: 12px;
    }

    .scroll-to-top {
      width: 45px;
      height: 45px;
      bottom: 20px;
      right: 20px;
      font-size: 20px;
    }

    .footer-social {
      gap: 10px;
      justify-content: center;
    }

    .social-link {
      width: 32px;
      height: 32px;
    }

    .social-link svg {
      width: 16px;
      height: 16px;
    }

    .footer-book-btn {
      font-size: 11px;
      padding: 8px 14px;
    }

    .lightbox-close {
      top: 10px;
      right: 20px;
      font-size: 30px;
    }

    .lightbox-content {
      max-width: 95%;
      max-height: 85%;
    }

    .lightbox-caption {
      font-size: 14px;
      padding: 8px 15px;
      bottom: 10px;
    }

    .games-title {
      font-size: 24px;
      letter-spacing: 0.5px;
    }

    .games-subtitle {
      font-size: 12px;
      margin-bottom: 25px;
    }

    .carousel-wrapper {
      gap: 8px;
      padding: 0;
      width: 100%;
      box-sizing: border-box;
    }

    .carousel-container {
      width: 100%;
      overflow: hidden;
      padding: 0;
      box-sizing: border-box;
    }

    .carousel-track {
      gap: 10px;
      width: 100%;
      box-sizing: border-box;
    }

    .game-card {
      min-width: 100%;
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      margin: 0;
    }

    .game-image {
      height: 200px;
      width: 100%;
      overflow: hidden;
    }

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

    .game-name {
      font-size: 18px;
      margin: 12px 0;
    }

    .game-btn {
      padding: 10px 20px;
      font-size: 11px;
      margin: 0 15px 15px;
    }

    .carousel-btn {
      width: 35px;
      height: 35px;
      font-size: 20px;
    }

    .carousel-wrapper {
      gap: 8px;
      padding: 0;
      width: 100%;
      box-sizing: border-box;
    }

    .carousel-container {
      width: 100%;
      overflow: hidden;
      padding: 0;
      box-sizing: border-box;
    }

    .carousel-track {
      gap: 10px;
      width: 100%;
      box-sizing: border-box;
    }

    .main-content {
      padding: 15px 8px;
    }

    .title {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .container {
      gap: 15px;
    }

    .card {
      padding: 15px;
    }

    .card h2 {
      font-size: 18px;
    }

    .price {
      font-size: 16px;
    }

    .square-btn {
      padding: 10px 15px;
      font-size: 11px;
    }
  }

  /* Service Hero Section */
  .service-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
    margin-top: 0;
    z-index: 1;
  }

  .service-hero-container {
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* Reduced height for laptop */
    position: relative;
    overflow: hidden;
  }

  .service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
  }

  .service-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 40px 20px;
  }

  .service-hero-heading {
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  }

  .service-hero-text {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.8;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Service Navigation Links Section */
  .service-nav-section {
    background: #ECECEC;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .service-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .service-nav-link {
    display: inline-block;
    padding: 12px 30px;
    background: #FFFFFF;
    color: #305C44;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #305C44;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .service-nav-link:hover {
    background: #305C44;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 92, 68, 0.3);
  }

  .service-nav-link:active {
    transform: translateY(0);
  }

  /* Responsive Styles for Service Hero Section */
  @media (max-width: 1400px) {
    .service-hero-heading {
      font-size: 42px;
    }
    .service-hero-text {
      font-size: 17px;
    }
  }

  @media (max-width: 1200px) {
    .service-hero-heading {
      font-size: 38px;
    }
    .service-hero-text {
      font-size: 16px;
    }
  }

  @media (max-width: 991px) {
    .service-hero-content {
      padding: 30px 20px;
    }
    .service-hero-heading {
      font-size: 32px;
      margin-bottom: 20px;
    }
    .service-hero-text {
      font-size: 15px;
      line-height: 1.6;
    }
  }

  @media (max-width: 767px) {
    .service-hero-container {
      padding-bottom: 125%; /* Match video section mobile height */
    }
    .service-hero-content {
      padding: 25px 15px;
      width: 95%;
    }
    .service-hero-heading {
      font-size: 24px;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }
    .service-hero-text {
      font-size: 14px;
      line-height: 1.5;
    }
  }

  @media (max-width: 480px) {
    .service-hero-container {
      padding-bottom: 110%; /* Match video section small mobile height */
    }
    .service-hero-content {
      padding: 20px 12px;
    }
    .service-hero-heading {
      font-size: 20px;
      margin-bottom: 12px;
    }
    .service-hero-text {
      font-size: 13px;
      line-height: 1.4;
    }

    .service-nav-section {
      padding: 30px 15px;
    }

    .service-nav-container {
      gap: 15px;
    }

    .service-nav-link {
      padding: 10px 20px;
      font-size: 14px;
    }
  }

  /* Service Navigation Links - Responsive */
  @media (max-width: 991px) {
    .service-nav-section {
      padding: 35px 20px;
    }

    .service-nav-container {
      gap: 15px;
    }

    .service-nav-link {
      padding: 11px 25px;
      font-size: 15px;
    }
  }

  @media (max-width: 767px) {
    .service-nav-section {
      padding: 30px 15px;
    }

    .service-nav-container {
      gap: 12px;
      flex-direction: row;
      justify-content: center;
      padding: 0 15px;
    }

    .service-nav-link {
      flex: 0 1 calc(50% - 6px);
      min-width: 0;
      text-align: center;
      padding: 12px 10px;
      font-size: 13px;
      max-width: none;
      width: auto;
      box-sizing: border-box;
    }
  }

  @media (max-width: 480px) {
    .service-nav-section {
      padding: 25px 10px;
    }

    .service-nav-container {
      gap: 10px;
      padding: 0 10px;
    }

    .service-nav-link {
      flex: 0 1 calc(50% - 5px);
      padding: 11px 8px;
      font-size: 11px;
      letter-spacing: 0.5px;
    }
  }

  /* Waiver Content Section */
  .waiver-content-section {
    background-color: #ECECEC;
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .waiver-content-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .waiver-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  /* Text Content (Right Side - Scrollable) */
  .waiver-text-box {
    flex: 0 0 500px;
    background-color: #FFFFFF;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .waiver-text-title {
    font-size: 32px;
    font-weight: 700;
    color: #305C44;
    margin-bottom: 30px;
    text-align: center;
  }

  .waiver-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .waiver-text-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #ECECEC;
  }

  .waiver-text-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .waiver-text-heading {
    font-size: 22px;
    font-weight: 700;
    color: #305C44;
    margin-bottom: 15px;
  }

  .waiver-text-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
  }

  /* Image (Left Side - Sticky) */
  .waiver-image-box {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    box-sizing: border-box;
    height: calc(100vh - 120px);
    display: flex;
    align-items: stretch;
  }

  .waiver-image-wrapper {
    background-color: #FFFFFF;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .waiver-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: contain;
  }

  /* Laptop Devices - Increase Image Height */
  @media (min-width: 992px) and (max-width: 1399px) {
    .waiver-image-box {
      height: calc(100vh - 80px);
      min-height: 800px;
    }
  }

  /* Waiver Content Responsive Styles */
  @media (max-width: 991px) {
    .waiver-content-wrapper {
      flex-direction: column;
      gap: 30px;
    }

    .waiver-image-box {
      flex: 1;
      position: static;
      width: 100%;
      height: auto;
      order: 1;
    }

    .waiver-image-wrapper {
      height: auto;
      min-height: 400px;
    }

    .waiver-image {
      height: auto;
      object-fit: cover;
    }

    .waiver-text-box {
      order: 2;
    }
  }

  @media (max-width: 767px) {
    .waiver-content-section {
      padding: 60px 15px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .waiver-content-container {
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      padding: 0;
    }

    .waiver-content-wrapper {
      gap: 25px;
    }

    .waiver-text-box {
      padding: 30px 20px;
      order: 2;
    }

    .waiver-text-title {
      font-size: 24px;
    }

    .waiver-text-heading {
      font-size: 18px;
    }

    .waiver-text-paragraph {
      font-size: 14px;
    }

    .waiver-image-box {
      width: 100%;
      height: auto;
      order: 1;
    }

    .waiver-image-wrapper {
      height: auto;
      min-height: 350px;
    }

    .waiver-image {
      height: auto;
      object-fit: cover;
    }
  }

  @media (max-width: 480px) {
    .waiver-content-section {
      padding: 40px 10px;
      box-sizing: border-box;
      width: 100%;
      overflow-x: hidden;
    }

    .waiver-text-box {
      padding: 25px 15px;
      order: 2;
    }

    .waiver-text-title {
      font-size: 20px;
    }

    .waiver-text-heading {
      font-size: 16px;
    }

    .waiver-text-paragraph {
      font-size: 13px;
    }

    .waiver-image-box {
      order: 1;
      height: auto;
    }

    .waiver-image-wrapper {
      min-height: 300px;
    }
  }
  