/* ==========================================================================
   NOVA FITNESS - Custom Stylesheet with Mobile Bottom Nav, Preloader & Zero-Overflow
   ========================================================================== */

:root {
    --color-lime: #9ce800;
    --color-lime-hover: #b4ff00;
    --color-lime-glow: rgba(156, 232, 0, 0.45);
    --color-dark-bg: #0b0d0b;
    --color-dark-surface: #121512;
    --color-dark-card: #161916;
    --color-dark-border: #232a23;
    --color-text-muted: #9fa59f;
    --color-accent-green: #3d8b00;
    --font-heading: 'Anton', 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-cursive: 'Caveat', cursive;
}

/* Bulletproof Zero Horizontal Overflow */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark-bg);
    color: #ffffff;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Container safety */
.container, .container-fluid, .custom-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
}

.custom-container {
    max-width: 1200px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.row > * {
    padding-right: 10px;
    padding-left: 10px;
}

.bg-dark-theme {
    background-color: var(--color-dark-bg);
}

.bg-dark-card {
    background-color: var(--color-dark-card);
}

.text-lime {
    color: var(--color-lime) !important;
}

.bg-lime {
    background-color: var(--color-lime) !important;
}

.text-lime-fire {
    color: var(--color-lime);
    text-shadow: 0 0 20px rgba(156, 232, 0, 0.35);
}

.text-lime-highlight {
    color: var(--color-lime);
    font-weight: 600;
}

.text-lime-cursive {
    color: var(--color-lime);
    font-family: var(--font-cursive);
    font-size: 1.25rem;
    font-weight: 700;
}

.text-light-gray {
    color: var(--color-text-muted);
}

.text-accent-green {
    color: var(--color-accent-green);
}

.hover-lime:hover {
    color: var(--color-lime) !important;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader-overlay {
    position: fixed;
    inset: 0;
    background-color: #080a08;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-bar-container {
    width: 160px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background-color: var(--color-lime);
    box-shadow: 0 0 10px var(--color-lime);
    animation: preloaderFill 1.2s ease-in-out infinite;
}

@keyframes preloaderFill {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 0%; transform: translateX(100%); }
}

.preloader-pulse {
    animation: pulseRing 1.5s infinite !important;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes flameGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(156, 232, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(156, 232, 0, 0.75));
    }
}

.animate-flame {
    animation: flameGlow 3s ease-in-out infinite;
}

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

.floating-badge {
    animation: floatBob 4s ease-in-out infinite;
}

/* ==========================================================================
   LOGO STYLES
   ========================================================================== */
.site-logo-img {
    height: 52px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(156, 232, 0, 0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 16px rgba(156, 232, 0, 0.75));
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(156, 232, 0, 0.35));
}

.preloader-logo-img {
    height: 75px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(156, 232, 0, 0.65));
    animation: preloaderPulse 2s infinite ease-in-out;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(156, 232, 0, 0.5)); }
    50% { transform: scale(1.06); filter: drop-shadow(0 0 28px rgba(156, 232, 0, 0.85)); }
}

.poster-logo-img {
    height: 68px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(156, 232, 0, 0.5));
}

.admin-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(156, 232, 0, 0.4));
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}

.logo-n, .logo-v, .logo-a {
    color: #ffffff;
}

.logo-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

.logo-ring {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3.5px solid var(--color-lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-lime);
    animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px var(--color-lime); }
    50% { transform: scale(1.1); box-shadow: 0 0 18px var(--color-lime); }
}

.brand-subtext {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #ffffff;
    margin-top: 2px;
    padding-left: 2px;
}

.logo-tagline {
    font-family: var(--font-cursive);
    font-size: 0.85rem;
    color: var(--color-lime);
    letter-spacing: 1px;
    margin-top: -2px;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.site-navbar {
    background-color: rgba(11, 13, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1050;
    width: 100%;
}

.nav-menu .nav-link {
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--color-lime) !important;
}

.btn-lime-nav {
    background-color: var(--color-lime);
    color: #0b0d0b;
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lime-nav:hover {
    background-color: var(--color-lime-hover);
    color: #000000;
    box-shadow: 0 0 15px var(--color-lime-glow);
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: #0b0d0b;
    padding: 45px 0 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.55) contrast(1.15) saturate(1.1);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 13, 11, 0.75) 0%, rgba(11, 13, 11, 0.5) 45%, rgba(11, 13, 11, 0.95) 100%),
                radial-gradient(ellipse at 75% 35%, rgba(156, 232, 0, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 25% 65%, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

.hero-welcome-badge span {
    color: var(--color-lime);
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-main-title {
    font-family: var(--font-heading);
    line-height: 0.92;
    letter-spacing: 2px;
    word-break: break-word;
}

.title-fuel {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.title-fire {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #b6ff00 0%, #8ac700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead-text {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.6;
    max-width: 480px;
}

.btn-lime-main {
    background-color: var(--color-lime);
    color: #0b0d0b;
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 12px 26px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lime-main:hover {
    background-color: var(--color-lime-hover);
    color: #000000;
    box-shadow: 0 0 20px var(--color-lime-glow);
    transform: translateY(-2px);
}

.btn-outline-lime {
    background: transparent;
    border: 1.5px solid var(--color-lime);
    color: var(--color-lime);
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 11px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-lime:hover {
    background-color: var(--color-lime);
    color: #000000;
    box-shadow: 0 0 15px var(--color-lime-glow);
}

.btn-watch-video {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-watch-video:hover {
    border-color: var(--color-lime);
    background: rgba(156, 232, 0, 0.08);
}

.video-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff;
}

/* Hero Right: Trainers & Badge */
.hero-trainers-wrapper {
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.hero-trainers-img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
}

.experience-badge-circle {
    position: absolute;
    bottom: 20px;
    right: 0px;
    width: 120px;
    height: 120px;
    background: #000000;
    border: 3px solid var(--color-lime);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9), 0 0 15px var(--color-lime-glow);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
}

.badge-ribbon-tag {
    background-color: var(--color-lime);
    color: #000000;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 1px 12px;
    margin: 2px 0;
    border-radius: 2px;
}

.badge-subtitle {
    font-family: var(--font-sub);
    font-size: 0.48rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
}

.badge-stars {
    color: var(--color-lime);
    font-size: 0.55rem;
    margin-top: 2px;
    display: flex;
    gap: 2px;
}

/* 25% OFF PROMO SKEW BANNER */
.promo-skew-banner {
    background: rgba(11, 13, 11, 0.95);
    border: 2px solid var(--color-lime);
    box-shadow: 0 0 25px var(--color-lime-glow), inset 0 0 15px rgba(156, 232, 0, 0.15);
    transform: skewX(-12deg);
    padding: 18px 25px;
    margin-top: 35px;
    border-radius: 4px;
    width: 100%;
    overflow: hidden;
}

.promo-inner {
    transform: skewX(12deg);
    gap: 25px;
}

.promo-left-discount {
    gap: 8px;
}

.promo-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 0.85;
    font-weight: 900;
    color: var(--color-lime);
    text-shadow: 0 0 15px var(--color-lime-glow);
}

.promo-percent {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.promo-off-badge {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 6px;
}

.promo-divider {
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
}

.promo-line-1 {
    font-family: var(--font-sub);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.promo-line-2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: 1px;
}

.promo-line-3 {
    font-family: var(--font-sub);
    font-size: clamp(0.68rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (WHITE)
   ========================================================================== */
.why-choose-section {
    background-color: #ffffff;
    color: #111111;
    overflow: hidden;
    width: 100%;
}

.section-title-line-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    letter-spacing: 1.5px;
    color: #111111;
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.why-choose-title::before,
.why-choose-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #111111;
}

.why-choose-title::before {
    left: -45px;
}

.why-choose-title::after {
    right: -45px;
}

.why-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background-color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-card:hover .why-icon-circle {
    border-color: var(--color-accent-green);
    transform: scale(1.05);
}

.why-icon-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    color: #111111;
}

.why-icon-stars {
    font-size: 0.52rem;
    color: #111111;
    display: flex;
    gap: 1px;
    margin-top: 2px;
}

.why-fa-icon {
    font-size: 1.6rem;
    color: #111111;
}

.why-card-label {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.3px;
    color: #111111;
    word-break: break-word;
}

/* ==========================================================================
   OUR PROGRAMS SECTION
   ========================================================================== */
.programs-section {
    background-color: var(--color-dark-bg);
    overflow: hidden;
    width: 100%;
}

.programs-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    letter-spacing: 1.5px;
}

.programs-nav-btn {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 1.1rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.program-card {
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(156, 232, 0, 0.2);
}

.program-img-wrapper {
    height: 190px;
    overflow: hidden;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.program-badge-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(11, 13, 11, 0.9);
    border: 1.5px solid var(--color-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lime);
    font-size: 0.95rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.program-card-body {
    padding: 16px 14px;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.program-desc {
    font-size: 0.78rem;
    line-height: 1.45;
}

/* ==========================================================================
   PRICING & MEMBERSHIP PACKAGES SECTION
   ========================================================================== */
.pricing-section {
    background: radial-gradient(circle at 50% 50%, rgba(156, 232, 0, 0.07) 0%, #050705 75%);
    overflow: hidden;
    width: 100%;
}

.pricing-card {
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-lime);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(156, 232, 0, 0.2);
}

.popular-pricing-card {
    border: 2px solid var(--color-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(156, 232, 0, 0.25);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--color-lime);
    color: #000000;
    font-size: 0.62rem;
    letter-spacing: 1px;
    padding: 3px 12px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pkg-name {
    font-family: var(--font-sub);
    font-size: 1.25rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    line-height: 1;
    letter-spacing: 1px;
}

/* NOVA POSTER PRICING TABLE STYLES */
.nova-poster-frame {
    background: radial-gradient(ellipse at 50% 0%, rgba(156, 232, 0, 0.12) 0%, rgba(10, 14, 9, 0.98) 70%);
    border: 1px solid rgba(156, 232, 0, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(156, 232, 0, 0.15);
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
}

.nova-poster-frame::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(156, 232, 0, 0.25) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
}

.poster-brand-header {
    position: relative;
    z-index: 1;
}

.poster-tagline-top {
    font-family: 'Caveat', cursive;
    font-size: 1.55rem;
    color: #e2ff85;
    letter-spacing: 1px;
}

.poster-title-emboss {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(156, 232, 0, 0.4), 0 3px 6px #000000;
}

.poster-title-emboss .highlight-lime {
    color: #bbf815;
    text-shadow: 0 0 15px rgba(156, 232, 0, 0.6);
}

.table-matrix-wrapper {
    position: relative;
    z-index: 1;
    border: 2px solid rgba(156, 232, 0, 0.45);
    border-radius: 18px;
    background: #0d120c;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), 0 8px 30px rgba(0, 0, 0, 0.7);
    padding: 10px;
    overflow: hidden;
}

.nova-matrix-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 6px;
    color: #ffffff;
}

.nova-matrix-table thead tr th {
    background: linear-gradient(180deg, #b8f712 0%, #8ecb05 100%);
    color: #0b1106;
    font-family: var(--font-sub);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 10px;
    border-radius: 8px;
    border: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 3px 8px rgba(0, 0, 0, 0.4);
}

.nova-matrix-table thead tr th:first-child {
    text-align: left;
    padding-left: 20px;
}

.nova-matrix-table tbody tr td {
    background: linear-gradient(180deg, #151b13 0%, #0d120b 100%);
    border: 1px solid rgba(156, 232, 0, 0.15);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 3px 10px rgba(0, 0, 0, 0.5);
}

.nova-matrix-table tbody tr td.cell-pkg-type {
    text-align: left;
    padding-left: 16px;
}

.nova-matrix-table tbody tr:hover td {
    border-color: rgba(156, 232, 0, 0.45);
    background: linear-gradient(180deg, #1b2419 0%, #121910 100%);
}

.nova-matrix-table tbody td.price-clickable {
    cursor: pointer;
    position: relative;
}

.nova-matrix-table tbody td.price-clickable:hover {
    background: linear-gradient(180deg, #24321b 0%, #172412 100%);
    border-color: #9ce800;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(156, 232, 0, 0.35);
}

.pkg-type-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pkg-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, #2a3d13 0%, #111a08 100%);
    border: 2px solid #9ce800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbf815;
    font-size: 1.15rem;
    box-shadow: 0 0 10px rgba(156, 232, 0, 0.4);
}

.pkg-title-text {
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.matrix-price-val {
    font-family: var(--font-sub);
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.family-spanning-cell {
    background: linear-gradient(180deg, #172014 0%, #0d120a 100%) !important;
    border: 1.5px dashed rgba(156, 232, 0, 0.45) !important;
    text-align: center !important;
    padding: 16px 20px !important;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    color: #e5e5e5;
}

.family-spanning-cell .accent-text {
    color: #bbf815;
    font-weight: 900;
}

/* 4 BOTTOM FEATURE PILL CARDS */
.poster-features-row {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.poster-feature-card {
    background: linear-gradient(180deg, #141b12 0%, #0b0f0a 100%);
    border: 1.5px solid rgba(156, 232, 0, 0.25);
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 5px 18px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.poster-feature-card:hover {
    transform: translateY(-4px);
    border-color: #9ce800;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(156, 232, 0, 0.25);
}

.poster-feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #253812 0%, #0e1608 100%);
    border: 2px solid #9ce800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbf815;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(156, 232, 0, 0.35);
    margin-bottom: 14px;
}

.poster-feature-card h6 {
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #d1d8cc;
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.poster-bottom-script {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    text-shadow: 0 0 15px rgba(156, 232, 0, 0.5);
}

.poster-bottom-script span {
    color: #bbf815;
}

@media (max-width: 991px) {
    .table-matrix-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nova-matrix-table {
        min-width: 680px;
    }
}

/* ==========================================================================
   VIRTUAL TOUR & TESTIMONIALS SECTION
   ========================================================================== */
.dual-feature-section {
    background-color: var(--color-dark-bg);
    overflow: hidden;
    width: 100%;
}

.virtual-tour-box {
    background-color: var(--color-dark-surface);
    border: 1px solid var(--color-lime);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(156, 232, 0, 0.15);
    overflow: hidden;
}

.tour-heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.tour-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.tour-preview-img-container {
    border-radius: 6px;
    overflow: hidden;
    height: 140px;
}

.tour-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-play-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-play-circle:hover {
    border-color: var(--color-lime);
    color: var(--color-lime);
    transform: scale(1.1);
}

/* Testimonials Box */
.testimonials-box {
    background-color: var(--color-dark-surface);
    border: 1px solid var(--color-dark-border);
    border-radius: 8px;
    overflow: hidden;
}

.reviews-main-heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 1px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-dark-border);
}

.testimonial-stars {
    font-size: 0.72rem;
    display: flex;
    gap: 2px;
}

.testimonial-quote {
    font-size: 0.8rem;
    line-height: 1.45;
}

.testimonial-author {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.testimonial-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--color-lime);
    box-shadow: 0 0 6px var(--color-lime);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #050705;
    border-top: 1px solid var(--color-dark-border);
    overflow: hidden;
    width: 100%;
}

.footer-heading {
    font-family: var(--font-sub);
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--color-lime);
    color: var(--color-lime);
    transform: translateY(-2px);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-newsletter-text {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.newsletter-input {
    font-size: 0.82rem;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.btn-lime-newsletter {
    background-color: var(--color-lime);
    color: #000000;
    border: none;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.btn-lime-newsletter:hover {
    background-color: var(--color-lime-hover);
}

.copyright-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(11, 13, 11, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1040;
    padding: 6px 0 8px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a0a5a0;
    font-size: 0.65rem;
    font-family: var(--font-sub);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    padding: 2px 6px;
}

.mobile-nav-item i {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--color-lime);
}

.mobile-nav-center {
    margin-top: -16px;
}

.mobile-join-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-lime);
    color: #000000;
    border: 3px solid #0b0d0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--color-lime-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-join-fab:active {
    transform: scale(0.9);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS & ZERO OVERFLOW FIXES
   ========================================================================== */
@media (max-width: 991px) {
    body {
        padding-bottom: 65px; /* space for mobile bottom bar */
    }

    .promo-skew-banner {
        transform: none !important;
        padding: 16px;
        border-radius: 8px;
    }
    
    .promo-inner {
        transform: none !important;
        gap: 12px;
        text-align: center;
    }

    .promo-divider {
        display: none !important;
    }
    
    .experience-badge-circle {
        right: 0px;
        bottom: 5px;
        width: 100px;
        height: 100px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }

    .programs-nav-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .why-choose-title::before,
    .why-choose-title::after {
        display: none; /* remove pseudo lines to prevent mobile horizontal bleed */
    }

    .why-icon-circle {
        width: 60px;
        height: 60px;
    }

    .why-icon-num {
        font-size: 1.2rem;
    }

    .why-card-label {
        font-size: 0.65rem;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .title-fuel, .title-fire {
        font-size: 2.3rem;
    }

    .promo-number {
        font-size: 2.8rem;
    }

    .pricing-card {
        padding: 24px 16px;
    }
}
