/* ===================== CSS VARIABLES ===================== */
:root {
    --lime: #d7fb00;
    --red: #d10e0a;
    --dark-bg: #111111;
    --text-white: #FFFFFF;
    --text-muted: #313131;
    --rem: 10px;
    --lg: 1025px
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.ttf');
}

@font-face {
    font-family: 'Figtree Regular';
    src: url('../fonts/Figtree-Medium.ttf');
}

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/Figtree-Light.ttf');
}

/* ===================== GLOBAL ===================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    color: var(--text-white);
    font-family: 'Figtree';
    overflow-x: hidden;
    background-color: var(--dark-bg);
}

.header_spacing {
    margin-bottom: 5vw;
}

.navbar-padding {
    padding: 0 5vw;
}

.content-padding {
    padding: 0 12vw;
}

a:hover {
    text-decoration: none;
    color: inherit
}

.button {
    padding: 0.6vw 2vw 0.47vw 2vw;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14px, 1.05vw, 44px);
}

/* ===================== NAVBAR ===================== */
.main-nav {
    border-bottom: 3px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s ease;
}

.main-nav.navbar-scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    padding: 0;
    margin-right: 40px;
}

.brand-logo {
    width: 15vw;
    margin: 0;
}

/* Nav links */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(15px, 1.2vw, 54px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff !important;
    padding: 2.5vw !important;
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--lime) !important;
}

/* Lime underline on active */
.navbar-nav .nav-item.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--lime);
}

/* Location dropdown button */
.btn-location {
    background-color: var(--lime);
    color: #313131 !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14px, 1vw, 44px);
    text-transform: uppercase;
    border: none;
    padding: 0.6vw 2vw 0.3vw 2vw;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    padding-right: 70px;
}

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

.btn-location .chevron {
    height: 100%;
    display: inline-block;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: max-content;
    padding: 10px;
    right: 0;
    top: 0;
}

/* ===================== Banner ===================== */
.banner {
    position: relative;
    min-height: 100vh;
    background: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
}

.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    height: stretch;
    margin-top: 5vw;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 80px 0;
}

.hero-eyebrow {
    font-family: 'Figtree Regular', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 0.9vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1vw;
}

.hero-eyebrow-line {
    width: 5vw;
    min-width: 50px;
    height: 2px;
    background: #cf0009;
    margin-top: 6px;
    margin-bottom: 1vw;
}

.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 28px;
}

.hero-headline .line1,
.hero-headline .line2 {
    display: block;
    font-size: clamp(64px, 8vw, 357px);
    color: #fff;
}

.hero-headline .line3 {
    display: block;
    font-size: clamp(64px, 9.5vw, 140px);
    color: var(--lime);
    text-shadow: 0 0 40px rgba(201, 240, 0, 0.18);
}

.hero-body {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(12px, 0.85vw, 28px);
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    max-width: 30vw;
    margin-bottom: 36px;
}

.raceText,
.expText {
    color: transparent;
    -webkit-text-stroke: 1.1px #d4ff00;
    text-shadow: 0 0 6px transparent;
    font-family: 'Bebas Neue';
}

.hero-headline .raceText {
    margin-left: 20px;
}

/* CTA Buttons */
.btn-visit {
    background-color: var(--lime);
    color: #111;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    border: none;
    display: inline-block;
    text-decoration: none;
    width: 9vw;
    min-width: 150px;
    text-align: center;
    border: 1px solid var(--lime);
}

.btn-visit:hover {
    background-color: #d6ff00;
    color: #111;
    text-decoration: none;
}

.btn-plan {
    background-color: transparent;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    border: 1px solid #fff;
    display: inline-block;
    text-decoration: none;
    width: 9vw;
    min-width: 150px;
    text-align: center;
}

.btn-plan:hover {
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* ===================== SOCIAL SIDEBAR ===================== */
.social-sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    z-index: 100;
    padding-right: 18px;
}

.social-sidebar a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    transition: color 0.2s;
    text-decoration: none;
}

.social-sidebar a img {
    width: 1.2vw;
    max-width: 50px;
    min-width: 20px;
}

.social-sidebar a:hover {
    color: var(--lime);
}

/* ===================== NAVBAR TOGGLER ===================== */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (max-width: 1024px) {
    .content-padding {
        padding: 0 8vw;
    }

    .brand-logo {
        min-width: 180px !important;
    }

    .main-nav {
        height: 60px;
    }

    .header_spacing {
        margin-bottom: 60px !important;
    }

    .navbar-nav .nav-link {
        height: 50px;
    }

    .navbar-collapse {
        position: absolute;
        top: 60px;
        right: 5vw;
        background: #111111;
        padding: 20px;
    }

    .hero-section {
        margin-top: 60px;
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
    .banner {
        background-size: cover;
    }

    .banner {
        min-height: 70vw;
    }
}

@media screen and (max-width: 991px) {
    .hero-body {
        max-width: 45vw;
    }
}

@media screen and (max-width: 765px) {
    .hero-body {
        max-width: 100%;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-headline,
    .hero-body {
        margin-bottom: 20px;
    }

    .button {
        padding: 8px 15px 6px !important;
    }
}

@media screen and (max-width: 576px) {
    .navbar-nav .nav-item.active::after {
        left: 10px;
        right: 10px
    }

    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
    }

    .hero-headline {
        margin-top: 20px;
    }
}

/* ===================== HOW IT WORKS SECTION ===================== */
.how-it-works {
    background-color: #131313;
    padding: 7vw 0 0 0;
    position: relative;
}

.lime-bar {
    position: absolute;
    top: 0;
    left: -20px;
    width: 50%;
    height: auto
}

.how-header {
    margin-bottom: 60px;
    text-align: left;
    position: relative;
}

.how-eyebrow {
    font-family: 'Figtree Regular', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 0.9vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.how-headline {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: clamp(48px, 6vw, 200px);
    color: var(--text-white);
}

.how-headline .how-highlight {
    -webkit-text-stroke: 1.1px var(--lime);
    color: transparent;
    font-family: 'Bebas Neue';
}

/* How It Works Controls */
.how-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dropdown-container {
    position: relative;
}

.btn-dropdown {
    background-color: transparent;
    color: var(--text-white);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 11.5vw;
}

.btn-dropdown:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.btn-start-planning {
    background-color: var(--red);
    color: var(--text-white) !important;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 11.5vw;
}

.btn-start-planning:hover {
    text-decoration: none;
}

/* Cards Container */

.how-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    z-index: 2;
    position: relative;
}

.how-card {
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 0.3%;
}

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

.card-bottom {
    background: #272929;
    position: relative;
    top: -10%;
    padding: 2vw;
    width: 90%;
    left: 5%;
    border-radius: 12px;
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 64px);
    color: var(--lime);
    line-height: 1;
    text-shadow: 0 0 20px rgba(215, 251, 0, 0.1);
}

.card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 4%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 13px;
}

.how-card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.75vw, 119px);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 15px;
    text-align: center;
}

.card-description {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(12px, 0.8vw, 28px);
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
}

.card-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===================== STATS SECTION ===================== */

/* Stats Section */
.stats {
    background: white;
    padding-top: 20px;
    position: relative;
    top: -7vw
}

.how-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding: 4vw 0 2vw 0;
}

.bg-lime {
    background: var(--lime);
    position: relative;
}

.boxesImg {
    position: absolute;
    top: 0;
    right: 0;
    width: 5vw;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 170px);
    color: #131313;
    line-height: 1;
    text-transform: uppercase;
}

.stat-label {
    font-family: 'Figtree Regular', sans-serif;
    font-size: clamp(11px, 0.85vw, 32px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #131313;
    line-height: 1.3;
}

/* Responsive Design */
/* @media screen and (max-width: 1087px) {
    .faq {
        bottom: -6vw;
    }
} */

@media screen and (max-width: 991px) {

    .how-it-works {
        padding: 60px 0 0 0;
    }

    .how-header {
        margin-bottom: 40px;
    }

    .how-controls {
        gap: 15px;
        margin-bottom: 40px;
    }

    .how-cards-container {
        gap: 20px;
        margin-bottom: 50px;
    }

    .how-stats {
        gap: 20px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 765px) {

    .how-headline {
        margin-bottom: 20px;
    }

    .how-controls {
        gap: 10px;
    }

    .how-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .stat-value {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {

    .how-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== FOOD & GAMES SECTION ===================== */
.foodgames {
    position: relative;
    padding: 7vw 0;
    background: url('../images/bg-foodgames.png');
    background-size: cover;
}

.foodgames-header {
    margin-bottom: 40px;
}

.foodgames-eyebrow {
    font-family: 'Figtree Regular';
    font-weight: 600;
    font-size: clamp(13px, 0.9vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.foodgames-title {
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(48px, 6vw, 200px);
    color: #ffffff;
    margin: 0 0 18px;
}

.foodgames-copy {
    font-family: 'Figtree';
    font-size: clamp(14px, 0.85vw, 28vw);
    line-height: 1.7;
    color: #fff;
    margin-bottom: 2vw;
    padding-right: 3vw;
}

.foodgames-features {
    margin-bottom: 2vw;
    padding-right: 3vw;
}

.foodgames-feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 1.5vw, 64px);
    color: var(--lime);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.foodgames-feature-copy {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(13px, 0.85vw, 28px);
    line-height: 1.6;
    color: #fff;
}

.btn-view-menu {
    background-color: var(--red);
    color: var(--text-white);
    text-transform: uppercase;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 11.5vw;
}

.foodgames-media {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
    padding: 3vw;
}

.foodgames-media-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.foodgames-media-main img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.foodgames-media-stack {
    display: grid;
    gap: 24px;
}

.foodgames-media-stack-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.foodgames-media-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 1366px) {

    .foodgames-features,
    .foodgames-copy {
        max-width: unset
    }

    .foodgames-media {
        padding: 5vw 0;
    }
}

@media screen and (max-width: 991px) {
    .foodgames {
        padding: 90px 0;
    }

    .foodgames-features,
    .foodgames-copy {
        max-width: unset
    }
}

@media screen and (max-width: 765px) {
    .foodgames {
        padding: 70px 0;
    }

    .foodgames-title {
        font-size: clamp(36px, 7vw, 72px);
    }
}

@media screen and (max-width: 576px) {
    /*  .foodgames-media {
        grid-template-columns: 1fr;
    }*/

    .foodgames-media-stack {
        gap: 10px;
    }
}

/* ===================== EVENTS SECTION ===================== */
.events {
    position: relative;
    background: #ffffff;
    padding: 7vw 0;
    overflow: hidden;
}

.events-copy-wrapper {
    padding: 0 3.5vw;
}

.events-side {
    position: absolute;
    height: 80%;
    object-fit: cover;
    pointer-events: none;
    right: -5%;
    top: 50%;
    transform: translateY(-50%)
}

.events-top-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 15vw;
    opacity: 0.95;
}

.events-image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

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

.events-eyebrow {
    font-family: 'Figtree Regular';
    font-weight: 600;
    font-size: clamp(13px, 0.9vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #131313;
    margin-bottom: 1vw;
}

.events-title {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: clamp(48px, 6vw, 200px);
    color: #131313;
    margin: 0 0 0.5vw;
}

.events-body {
    font-family: 'Figtree';
    font-size: clamp(14px, 0.9vw, 28px);
    line-height: 1.7;
    color: #131313;
    margin-bottom: 2vw;
}

.events-divider {
    width: 5vw;
    min-width: 50px;
    border: 0;
    height: 3px;
    background: var(--lime);
    margin: 1vw 0;
}

.event-feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 1.5vw, 64px);
    color: #131313;
    margin-bottom: 0.5vw;
    text-transform: uppercase;
}

.event-feature-copy {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(13px, 0.9vw, 28px);
    line-height: 1.6;
    color: #131313;
    margin-bottom: 0;
}

.btn-book-event {
    background-color: var(--red);
    color: var(--text-white);
    text-transform: uppercase;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 11.5vw;
}

@media screen and (max-width: 991px) {
    .events {
        padding: 90px 0;
    }

    .events-top-bar {
        display: none;
    }

    .events-watermark {
        display: none;
    }

    .events-copy-wrapper {
        padding: 0;
    }
}

@media screen and (max-width: 765px) {
    .events {
        padding: 70px 0;
    }

    .events-title {
        font-size: clamp(36px, 8vw, 60px);
    }

    .events-body {
        margin-bottom: 20px;
    }

    .events-divider {
        margin: 10px 0;
    }
}

/* ===================== RACE CTA SECTION ===================== */
.race-cta {
    background: var(--lime);
    padding: 1.8vw 0 1vw;
}

.race-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
}

.race-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    font-size: clamp(64px, 8vw, 357px);
    margin: 0;
    color: #111;
}

.race-cta-accent {
    color: #111;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

.race-cta-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(15px, 1.5vw, 64px);
    line-height: 1;
    color: rgba(17, 17, 17, 0.85);
    text-transform: uppercase;
    margin-bottom: 11px;
}

.btn-race-now {
    background-color: #111;
    color: #fff;
    text-transform: uppercase;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 11.5vw;
}

.btn-race-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
    .race-cta {
        padding: 5vw 0;
    }

    .race-cta-inner {
        justify-content: center;
        text-align: center;
    }

    .race-cta-action {
        width: 100%;
    }

    .btn-race-now {
        max-width: 100%;
    }

    .race-cta-inner {
        gap: 1rem;
    }
}

/* ===================== FOOTER ===================== */
.footer {
    background: #070707;
    color: #fff;
    padding: 6vw 0 3vw;
}

.footer-logo {
    max-width: 15vw;
    min-width: 150px;
    margin-bottom: 2vw;
}

.footer-desc {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(13px, 1vw, 36px);
    line-height: 1.7;
    color: #fff;
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 1.5vw, 64px);
    color: var(--lime);
    margin-bottom: 1.5vw;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
    margin-top: 0.5vw;
}

.footer-links a {
    color: #fff;
    font-family: 'Figtree Regular', sans-serif;
    font-size: clamp(13px, 0.9vw, 36px);
    text-decoration: none;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.footer-contact-line {
    margin-bottom: 0.4vw;
    font-family: 'Figtree Regular', sans-serif;
    font-size: clamp(13px, 0.9vw, 36px);
    color: #fff
}

.font-gotham-regular {
    font-family: 'Figtree Regular', sans-serif;
}

.footer-contact-line a {
    color: #fff;
    text-decoration: none;
}

.footer-contact-line a:hover {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    background-color: rgba(95, 95, 95, 0.2);
    border: 0px solid #000000;
    padding: 1vw 2vw;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lime);
    padding: 12px;
}

.footer-social a img {
    width: 1vw;
    max-width: 40px;
    min-width: 15px;
    border-radius: 2px;
}

.footer-social a:hover {
    background: rgba(215, 251, 0, 0.9);
    color: #111;
}

.footer-copyright {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(12px, 0.9vw, 36px);
    color: #dbdbdb;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .footer {
        padding: 5vw 0 3vw;
    }

    .footer-bottom {
        padding: 8px 16px;
        gap: 10px
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 10vw 0 2.5vw;
    }

    .footer-social {
        justify-content: center;
        margin: auto;
    }

    .locdropdown .dropdown-menu a {
        font-size: 12px !important;
        padding: 5px 0px !important;
    }
}

/* ===================== FAQ SECTION ===================== */
.faq {
    position: relative;
    background: white;
    width: 100%;
    padding: 0 0 7vw;
}

.faq-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
}

.faq-header {
    margin-bottom: 2vw;
}

.faq-content {
    padding: 0 3vw;
}

.faq-eyebrow {
    font-family: 'Figtree Regular', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 0.9vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #131313;
    margin-bottom: 1vw;
}

.faq-eyebrow-line {
    width: 5vw;
    min-width: 50px;
    height: 2px;
    background: var(--lime);
    margin-top: 6px;
    margin-bottom: 1vw;
}

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: clamp(48px, 6vw, 200px);
    margin: 0;
    color: #131313
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    margin-bottom: 1vw;
    overflow: hidden;
    background: #f0f0f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1vw 1.5vw;
    font-family: 'Figtree Regular';
    font-weight: 600;
    font-size: clamp(14px, 1vw, 36px);
    color: #131313;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.25s ease;
}

.faq-question.collapsed:after {
    transform: rotate(0deg);
}

.faq-question:not(.collapsed):after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1vw 1.5vw;
    font-family: 'Figtree';
    font-size: clamp(13px, 0.85vw, 28px);
    line-height: 1.6;
    color: #131313;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-btn {
    background-color: var(--red);
    color: var(--text-white);
    border: none;
    font-size: clamp(15px, 1.2vw, 44px);
    text-transform: uppercase;
    text-align: center;
}

@media screen and (max-width: 991px) {

    .faq-header {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 765px) {

    .faq-title {
        font-size: clamp(32px, 6vw, 72px);
    }

    .faq-accordion {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {

    .faq-question {
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 16px 18px;
    }
}

/* SUB PAGE STYLES */
.sub-page-hero-section {
    width: 100%;
    background: url('../images/sub_page_bg.jpg') no-repeat;
    object-fit: cover;
    background-size: cover;
}

.sub-page-hero-section .hero-content {
    padding-top: 16%;
}

.sub-page-hero-section .hero-headline {
    font-weight: 400;
}

.sub-page-hero-section .hero-headline .line1,
.sub-page-hero-section .hero-headline .line2 {
    display: block;
    font-size: clamp(64px, 7.5vw, 357px);
    color: #fff;
}

.green_line {
    background: #d7fb00;
    width: 45%;
    height: 25px;
    display: inline-block;
    transform: skew(-40deg);
    left: -50px;
    position: absolute;
    top: 0;
}

.left-content-section {
    background: #131313;
    padding: 7% 0;
    position: relative;
}

.small-intro-title {
    font-size: clamp(13px, 1vw, 32px);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Figtree Regular';
    font-weight: 600;
}

.small-intro-title::after {
    content: "";
    width: 75px;
    height: 2px;
    background: #cf0009;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.small-intro-title {
    position: relative;
}

.left-hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.left-hero-headline .line1,
.left-hero-headline .line2 {
    display: block;
    font-size: 3em;
    color: #fff;
}

.left-content-inner p {
    font-size: 16px;
    line-height: 24px;
}

.left-content-image-box img {
    width: 45%;
    margin: 0 0 30px 40px;
}

.green_col_anchor {
    color: #d7fb00;
}

.btn.button-option {
    padding: 10px 60px;
    font-size: 21px;
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn.button-option:hover {
    border: 1px solid #d7fb00;
    background: #d7fb00;
    color: #131313;
}

.btn.button-option-red {
    padding: 11px 60px 9px;
    font-size: 21px;
    display: inline-block;
    color: #fff;
    border: 1px solid #d10e0a;
    background: #d10e0a;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn.button-option-red:hover {
    border: 1px solid #d7fb00;
    background: #d7fb00;
    color: #131313;
}

.accordion-section {
    background: #fff;
    padding: 5% 0;
    position: relative;
}

.boxes_div {
    position: absolute;
    bottom: 0;
    left: 0;
}

.boxes_div img {
    width: 150px;
}

.icon {
    transition: transform 0.3s ease;
    font-size: 18px;
    float: right;
}

.icon img {
    width: 21px;
}

.btn.faq-btn:focus {
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25) !important;
}

.btn.faq-btn .icon {
    transform: rotate(180deg);
}

.btn.faq-btn.collapsed .icon {
    transform: rotate(0);
}

.accordion-section .small-intro-title {
    color: #131313;
    position: relative;
}

.small-intro-title.title_green_line::after {
    background: #d7fb00 !important;
}

.right-dropdown-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    color: #131313;
    font-size: 5em;
}

.right-dropdown-title .redText {
    color: #d10e0a;
}

.faq-section .card {
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 0;
}

.faq-section .card-header {
    border-radius: 0;
    background: transparent;
    border: 0;
}

.faq-section .card-body {
    border-top: 1px solid rgba(0, 0, 0, .125);
    color: #131313;
    font-size: 14px;
    padding: 20px 35px;
}

.faq-section .card-header button {
    font-size: 18px;
    font-weight: bold;
}

.third-section {
    padding: 7% 0;
    background: #252525;
    position: relative;
}

.hr_line {
    border-top: 1px solid #7c7c7c;
    margin: 40px 0;
}

.breakout_box h3 {
    color: #d7fb00;
    font-size: 36px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1px;
}

.two_line_div {
    position: absolute;
    bottom: 0;
    right: 0;
}

.two_line_div img {
    width: 300px;
}

.third-section .left-content-inner p {
    font-size: 14px;
}

.red_line_tracked {
    background: #cf0009;
    width: 25%;
    height: 25px;
    display: inline-block;
    transform: skew(40deg);
    right: -50px;
    position: absolute;
    top: 0;
}

.section {
    padding: 80px 0;
    position: relative;
}

.image-box img {
    width: 100%;
    border-radius: 20px;
}

.content-box {
    background: #272929;
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 40px 80px 30px 100px;
    position: relative;
    margin-left: -75px;
    /* overlap effect */
}

.number {
    font-size: 48px;
    color: #d7fb00;
    background: #353737;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 30px 20px;
    border-radius: 12px 0 0 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1px;
}

.title {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1px;
}

.text {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
}

.flex-box {
    display: flex;
    align-items: flex-start;
}

.stacked_buttons {
    position: absolute;
    top: 90px;
    right: 15px;
}

.pricing_div {
    position: absolute;
    top: 150px;
    right: 0;
}

.pricing_div img {
    width: 150px;
}

.card-custom {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #272929;
    height: 94%;
}

/* Top Header */
.card-header-custom {
    background: #5f5f5f;
    color: #fff;
    padding: 15px 30px 10px;
    font-size: 42px;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
}

/* Body */
.card-body-custom {
    background: #272929;
    color: #fff;
    padding: 30px 30px 50px;
    border-radius: 0 0 10px 10px;
}

.price {
    font-size: 60px;
    color: #d4ff00;
    margin: 20px 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.list-item {
    padding: 15px 0;
    border-top: 1px solid #444;
    display: flex;
    align-items: center;
}

.list-item:first-of-type {
    border-top: none;
}

.arrow {
    color: #d4ff00;
    margin-right: 5px;
    font-size: 18px;
}

/* Button */
.btn-book {
    position: relative;
    bottom: 25px;
    background: #e60000;
    color: #fff;
    padding: 10px 60px;
    font-size: 21px;
    display: inline-block;
    color: #fff;
    border: 1px solid #d10e0a;
    background: #d10e0a;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-book:hover {
    border: 1px solid #d7fb00;
    background: #d7fb00;
    color: #131313;
}

.subPage-how-it-works {
    padding: 5% 0 0 !important;
}

.subPage-how-it-works::after {
    content: "";
    width: 100%;
    height: 150px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.how-it-works-secondSection {
    padding-bottom: 5%;
    background: #fff;
    color: #131313;
}

.left-content-secondSection .left-content-image-box img {
    margin: 0 40px 20px 0px;
}

.left-content-secondSection .small-intro-title.title_green_line {
    display: inline-block;
}

.btn.button-option-green {
    color: #131313;
    border: 1px solid #d7fb00;
    background: #d7fb00;
}

.btn.button-option-green:hover {
    border: 1px solid #d7fb00;
    background: #d7fb00;
    color: #131313;
}

.map-container {
    height: 100%;
    min-height: 500px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-box {
    padding: 20px 30px;
}

.section-title {
    color: #d60000;
    font-weight: 300;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 26px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #131313;
}

.form-control {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: none;
    background: #eee;
    min-height: 55px;
    font-family: 'Figtree Regular';
    color: #131313;
}

.form-control::placeholder {
    color: #131313;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(to right, #d60000, #ff2d2d);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    width: 200px;
}

.btn-submit:hover {
    opacity: 0.9;
}

.mail_icon {
    width: 18px;
    margin-right: 5px;
}

.mobile_viewcarImg {
    display: none;
}


/* Responsive */
@media (min-width: 2000px) {
    .small-intro-title {
        font-size: 24px;
    }

    .left-hero-headline .line1,
    .left-hero-headline .line2 {
        font-size: 5em;
    }

    .left-content-inner p,
    .third-section .left-content-inner p,
    .text,
    .card-custom p,
    .contact-info p {
        font-size: 20px;
        line-height: 27px;
    }

    .btn.button-option,
    .btn.button-option-red,
    .btn-book {
        font-size: 30px;
    }

    .right-dropdown-title {
        font-size: 6em;
    }

    .breakout_box h3,
    .title,
    .card-header-custom,
    .price,
    .number,
    .section-title {
        font-size: 3em;
    }

    .arrow {
        margin-right: 15px;
        font-size: 2em;
        position: relative;
        bottom: 4px;
    }

    .list-item {
        font-size: 1.5em;
    }

    .form-control {
        font-size: 21px;
    }
}

@media (max-width: 1499px) {
    .stacked_buttons {
        position: relative;
        top: 0;
        right: 0;
    }
}

@media (max-width: 1199px) {
    .custom_padding_mobile {
        padding: 0 6%;
    }

    .pricing_div,
    .boxes_div {
        display: none;
    }

    .content-box {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {

    .flex-box {
        flex-direction: column;
    }

    .number {
        margin-bottom: 10px;
    }

    .sub-page-hero-section .hero-content {
        padding-top: 30%;
        padding-bottom: 0;
    }

    .small-intro-title {
        font-size: 16px;
    }

    .left-hero-headline .line1,
    .left-hero-headline .line2,
    .left-hero-headline {
        font-size: 2em;
    }

    .right-dropdown-title {
        font-size: 3em;
    }

    .btn.button-option,
    .btn.button-option-red,
    .btn-book {
        font-size: 18px;
    }

    .card-custom {
        margin: 0 auto;
    }

    .subPage-how-it-works::after {
        bottom: -50px;
    }
}

@media (max-width: 767px) {
    .left-content-secondSection .left-content-image-box img {
        margin: 0 15px 10px 0px;
    }

    .btn.button-option,
    .btn.button-option-red,
    .btn-book {
        font-size: 16px;
        padding: 10px 20px;
    }

    .right-dropdown-title.my-5 {
        margin: 30px 0 10px !important;
    }

    .left-content-image-box img {
        width: 50%;
        margin: 0 0 15px 15px;
    }
}

@media (max-width: 576px) {
    .card-header-custom {
        font-size: 28px;
    }

    .price {
        font-size: 45px;
    }

    .green_line {
        width: 60%;
        height: 12px;
    }

    .mobile_btnSize {
        text-align: center;
    }

    .mobile_btnSize .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile_btnSize .btn.button-option.mr-2 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .number {
        font-size: 30px;
        padding: 20px 15px;
    }

    .content-box {
        padding: 20px 15px 20px 70px;
    }

    .contact-box {
        padding: 0;
    }

    .custom_padding_mobile {
        padding: 0 40px;
    }

    .breakout_box h3 {
        font-size: 24px;
    }

    .mobileCustom_btnDiv.mt-5 {
        margin-top: 20px !important;
    }

    .desktop_viewcarImg {
        display: none;
    }

    .mobile_viewcarImg {
        display: block;
    }

    .left-content-image-box img {
        float: none !important;
        width: 100%;
        margin: 0 0 20px;
    }
}

@media (max-width: 399px) {
    .mobileCustom_btnDiv .btn {
        width: 100%;
    }

    .mobileCustom_btnDiv.mt-5 .btn.button-option.mr-2,
    .stacked_buttons.mobileCustom_btnDiv .btn.button-option.mr-2 {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

.locdropdown .dropdown-menu {
    width: 100%;
    border-radius: 23px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(0, 0, 0, 0.80);
    padding: 10px;
    top: 120%
}

.locdropdown .dropdown-menu a {
    width: 100%;
    font-size: clamp(14px, 0.85vw, 44px);
    font-family: 'Figtree';
    color: white;
    padding: 12px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.locdropdown .dropdown-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.locdropdown .dropdown-menu a {
    background: none;
}

/* Dropdown item alignment */
.dropdown-item {
    display: flex;
    align-items: center;
}

/* Base circle (inactive by default) */
.circle {
    position: relative;
    width: 1vw;
    height: 1vw;
    min-width: 18px;
    min-height: 18px;
    margin-left: auto;
}

/* Outer ring (default = inactive) */
.circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #ccc;
    /* inactive grey */
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Inner fill (hidden by default) */
.circle::before {
    content: "";
    position: absolute;
    inset: 28%;
    background: #d4ff00;
    border-radius: 56%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* ✅ Active state */
.dropdown-item.active .circle::after {
    border-color: #d4ff00;
    /* green ring */
}

.dropdown-item.active .circle::before {
    opacity: 1;
    /* show inner fill */
}

/* new dynamic page styles */

.video_overlap_div {
    position: relative;
    height: 100%
}

.video_overlap_div span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3%;
}

.video_overlap_div span p {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.video_overlap_div span h4 {
    text-transform: uppercase;
    font-size: 36px;
    font-family: 'Bebas Neue', sans-serif;
    max-width: 380px;
}

.vieo_main_banner {
    height: 500px;
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #000;
}

.vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
}

.menu_item_div li {
    position: relative;
    margin: 1%;
}

.menu_item_div li .menu_item_inner {
    display: inline-block;
}

.menu_item_div .menu_item_thumb {
    border-radius: 8px;
}

.image_pop_moreInfo:before {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    z-index: 0;
}

.image_pop_moreInfo {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    -o-transition: color .2s ease-out, all .3s ease-in;
    -ms-transition: color .2s ease-out, all .3s ease-in;
    -moz-transition: color .2s ease-out, all .3s ease-in;
    -webkit-transition: color .2s ease-out, all .3s ease-in;
    transition: color .2s ease-out, all .3s ease-in;
}

.menu_item_div li .menu_item_inner {
    -o-transition: color .2s ease-out, all .3s ease-in;
    -ms-transition: color .2s ease-out, all .3s ease-in;
    -moz-transition: color .2s ease-out, all .3s ease-in;
    -webkit-transition: color .2s ease-out, all .3s ease-in;
    transition: color .2s ease-out, all .3s ease-in;
}

.menu_item_div li .menu_item_inner:hover {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.menu_item_div li .menu_item_inner:hover .image_pop_moreInfo {
    opacity: 1;
    display: inline-block;
}

.image_pop_moreInfo_inner {
    position: relative;
    top: 50%;
    color: #ffffff;
    font-size: 12px;
    transform: translateY(-50%);
    padding: 0 30px;
}


.menu_item_inner {
    background: #000;
    color: #fff;
    width: 100%;
    border-radius: 8px;
}

.menu_item_inner .eat_menu_description {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 10px;
    font-size: 18px;
    border-radius: 0 0 8px 8px;
}

.menu_item_div li .menu_item_inner:hover .eat_menu_description {
    display: none;
}

.menu_item_div li {
    width: 30%;
    display: inline-block;
    vertical-align: top;
}

.menu_item_div li span {
    display: inline-block;
    width: 100%;
    color: #101010;
    padding: 15px;
    border-radius: 6px
}

.menu_item_div li span:hover {
    box-shadow: 0 0 5px #9c9999;
}

.menu_item_div li span h4 {
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Figtree Regular';
}

.foodTab_section {
    background: #fff;
}

.cat_title {
    margin-top: 30px;
    margin-left: 8px;
}

.foodTab_section.nav-tabs .nav-item {
    margin-bottom: 0;
}

.foodTab_section .nav-tabs .nav-link.active,
.foodTab_section .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border: 1px solid #ffffff;
    box-shadow: 0 0 5px #d1d1d1;
    font-weight: bold;
}

.foodTab_section .nav-item {
    margin-right: 10px;
    max-width: 200px;
    margin-bottom: 15px;
    width: 100%;
}

.foodTab_section .nav-item span {
    margin-left: 10px;
}

.foodTab_section .nav-tabs {
    border-bottom: 0px solid #dee2e6;
}

.foodTab_section .nav-tabs .nav-link {
    border: 1px solid #e4e4e4;
    color: #131313;
    font-size: 15px;
    padding: 5px 15px 5px 10px;
    border-radius: 8px;
    font-family: 'Figtree Regular', sans-serif;
    min-height: 65px;
    text-transform: uppercase;
    display: flex;
    line-height: 20px;
    justify-content: left;
    align-items: center;
}

.cat_title,
.cat_desc {
    color: #131313;
    font-family: 'Figtree Regular', sans-serif;
}

@media screen and (max-width: 576px) {
    .foodTab_section .nav-item {
        width: calc(50% - 10px)
    }

    .foodTab_section .nav-item a img {
        width: 25px;
    }

    .foodTab_section .nav-item a span {
        font-size: 12px;
    }

    .menu_item_div li {
        width: 100%
    }
}

.content-section {
    background: white;
    color: black
}

.btn.balance-send-btn {
    background: #A1D14C;
    border-radius: 4px;
    font-family: 'Figtree';
    padding: 8px 25px;
    color: #443c0a;
}

.fun_card_balance {
    background: white;
    color: black
}

.fun_card_balance .parties_div {
    max-width: 700px;
    margin: auto;
    text-align: center;
}