/* ============================================
   IRON & FLOW — GOLD & BLACK PREMIUM THEME
   ============================================ */

:root {
    /* Core Blacks */
    --bg-main: #000000;
    --bg-surface: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;

    /* Gold Palette */
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --gold-warm: #C5963A;
    --gold-dark: #8B7328;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #C5963A 100%);
    --gold-gradient-dark: linear-gradient(135deg, #8B7328 0%, #D4AF37 100%);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #999999;
    --text-dim: #666666;
    --border-color: rgba(212, 175, 55, 0.2);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

/* Maintain aggressive gym fonts for Home & About */
.hero, .proving-ground-section, #home, #about {
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base class for GSAP animated elements to hide them before JS loads */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}
html { overflow-x: hidden; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

/* ============================================
   GOLD SHIMMER ANIMATION
   ============================================ */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.2); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none !important;
}

.btn-white {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}
.btn-white span { margin-left: 10px; font-weight: bold; }

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 25px var(--gold-glow);
}

.btn-outline-nav {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.btn-outline-nav:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-small-dark {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    letter-spacing: 2px;
}
.btn-small-dark:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-white-full {
    background: var(--gold-gradient);
    color: #000;
    width: 100%;
    margin-top: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px var(--gold-glow);
    /* Shimmer effect */
    background-size: 200% auto;
    animation: goldShimmer 3s linear infinite;
    background-image: linear-gradient(90deg, #D4AF37 0%, #FFD700 25%, #fff 50%, #FFD700 75%, #D4AF37 100%);
}
.btn-white-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
}

.btn-dark {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-dark:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, .brand-text {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

h1, .section-heading, .hero-title, .hero-subtitle-outline, .pg-title {
    font-family: var(--font-display);
    font-weight: 400;
}

.plan-details {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.plan-details h2, .plan-details h3 {
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    color: #fff;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Gold gradient text for spans inside headings */
.section-heading span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}
.section-desc.centered { margin: 1.5rem auto 0; }

/* ============================================
   NAVBAR
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.nav-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.brand-name-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.brand-text {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 6px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 180px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    image-rendering: auto;
    -webkit-transform: translateZ(0); /* Force GPU layer for crisp rendering */
    transform: translateZ(0);
}

/* Reusable class for GSAP parallax backgrounds on any section */
.parallax-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    z-index: 0;
    will-change: transform;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-top-text {
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1.05;
    letter-spacing: 5px;
    color: #fff;
    margin: 1.5rem 0 0 0;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.highlight-yellow {
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle-outline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1.05;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.4);
}

.hero-desc {
    color: #bbb;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    margin-top: 1.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-yellow {
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    padding: 1rem 2.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 25px var(--gold-glow);
}
.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
}
.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    z-index: 2;
}

.stat-item { text-align: center; }

.stat-item h3 {
    color: var(--gold-bright);
    font-size: 2.8rem;
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 3px;
}

.stat-item p {
    color: var(--text-dim);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

/* ============================================
   TICKER TAPES
   ============================================ */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 0.8rem 0;
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dark-ticker {
    background: #000;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.ticker-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5);
}

.ticker-slash {
    color: var(--gold);
    font-style: italic;
    transform: skewX(-15deg);
    -webkit-text-stroke: 0;
}

.yellow-ticker {
    background: var(--gold);
    color: #000;
}

.yellow-ticker .ticker { animation-duration: 18s; }
.dark-ticker .ticker { animation-duration: 35s; }

.yellow-ticker .ticker-item {
    font-size: 1.6rem;
    letter-spacing: 3px;
}

.ticker-dot {
    font-size: 1rem;
    margin-top: 2px;
    display: inline-block;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   THE PROVING GROUND SECTION
   ============================================ */
.proving-ground-section {
    padding: 8rem 0;
    background: #000;
    position: relative;
}

/* Subtle gold line at top */
.proving-ground-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--gold-gradient);
}

.proving-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left Text Side */
.pg-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pg-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.pg-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.pg-title .solid-white { color: #fff; }

.pg-title .outline-grey {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
    font-style: italic;
}

.pg-title .solid-yellow {
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.pg-desc {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1rem;
    max-width: 90%;
}

.pg-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pg-feature-item {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    transition: all 0.3s;
}

.pg-feature-item:hover {
    border-left-width: 4px;
    padding-left: 2rem;
}

.pg-feature-item h4 {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pg-feature-item p {
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Right Bento Side */
.proving-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1.5fr 1fr;
    gap: 0.5rem;
}

.bento-tall { grid-column: 1; grid-row: 1; }
.bento-small-top { grid-column: 2; grid-row: 1; }
.bento-wide { grid-column: 1; grid-row: 2; }

.bento-yellow {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem;
    background: var(--gold);
    color: #ffffff;
}

.bento-item {
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 200px;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
    transition: border-color 0.3s;
}

.bento-item:hover::after {
    border-color: rgba(212, 175, 55, 0.4);
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover .placeholder-img {
    transform: scale(1.05);
}

.bento-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    margin: 0 0 0.4rem 0;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.bento-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.bento-text span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 0.4rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ============================================
   ALTERNATING FEATURES
   ============================================ */
.alt-features-section {
    padding: 6rem 0 8rem;
    background: var(--bg-surface);
}

.alt-features-header {
    margin-bottom: 5rem;
}

.alt-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
    background: #000;
    padding: 0;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    transition: all 0.4s;
    overflow: hidden;
}

.alt-row:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.alt-row.reverse { flex-direction: row-reverse; }

.alt-img-box {
    width: 45%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.alt-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.alt-row:hover .alt-img-box img {
    transform: scale(1.08);
}

/* Remove angled cutouts for cleaner look */
.clip-top-left { clip-path: none; }
.clip-bottom-right { clip-path: none; }

.alt-text-box {
    width: 55%;
    padding: 3rem;
}

.sub-heading {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    padding: 0.15em 0;
    line-height: 1.3;
}

.mobile-image-link {
    display: block;
    pointer-events: none; /* Not clickable on desktop */
}

.alt-text-box p {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
    padding: 8rem 0;
    background: #000 url('./logo-Photoroom.png') center/contain no-repeat fixed;
    position: relative;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.plans-section .container {
    position: relative;
    z-index: 2;
}

.logo-watermark-bg {
    background: #000 url('./logo-Photoroom.png') center/contain no-repeat fixed !important;
    position: relative;
}

.logo-watermark-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
    pointer-events: none;
}

.logo-watermark-bg > .container {
    position: relative;
    z-index: 2;
}

.plans-header { margin-bottom: 4rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.pricing-card {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    clip-path: none;
    transition: all 0.4s;
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.pricing-card.elevated {
    background: #000;
    transform: scale(1.08);
    z-index: 3;
    border: 2px solid var(--gold);
    clip-path: none;
    animation: goldPulse 3s ease-in-out infinite;
}

.pricing-card.elevated:hover {
    transform: scale(1.1);
}

.card-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.elevated .card-icon {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px var(--gold-glow);
}

.card-icon img {
    width: 100px;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.pricing-card h4 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.elevated h4 {
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.price span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.plan-features { list-style: none; text-align: left; }

.plan-features li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 6rem 0 8rem;
    background: #000;
}

.gallery-header { margin-bottom: 4rem; }

/* ============================================
   PHOTO GALLERY GRID
   ============================================ */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.photo-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(212,175,55,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-item:nth-child(3n+1) {
    grid-row: span 2; /* Every 3rd photo is taller for masonry feel */
    aspect-ratio: unset;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-item:hover {
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
    transform: scale(1.02);
}

.photo-item:hover img {
    transform: scale(1.08);
}

/* ============================================
   VIDEO GALLERY GRID
   ============================================ */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    background: #000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212,175,55,0.2);
}

.video-card .gym-video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.unmute-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0.7rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
    text-align: center;
    z-index: 10;
}

.unmute-btn:hover {
    color: var(--gold);
}

.unmute-btn.active {
    color: var(--gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-surface);
}

.cta-box {
    background: #000;
    padding: 5rem 4rem;
    text-align: center;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

/* Gold corner accents */
.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
}
.cta-box::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}
.cta-box::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.clip-corners { clip-path: none; }

.cta-sub {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin: 1rem 0 2.5rem;
    letter-spacing: 1px;
}

.cta-sub span {
    color: var(--gold-bright);
    font-weight: bold;
    font-size: 2.2rem;
    font-family: var(--font-head);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0,0,0,0.8);
    color: #fff;
    border-radius: 0;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.whatsapp-form select {
    appearance: none;
    cursor: pointer;
}

.whatsapp-form textarea {
    resize: vertical;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    border-color: var(--gold);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.whatsapp-form .btn-dark {
    width: 100%;
    margin-top: 1rem;
    border-radius: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-col .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-col .footer-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.footer-brand .brand-name-img {
    height: 90px;
}

.brand-col span {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.brand-col p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

.social-col h4, .contact-col h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--text-muted);
    transition: all 0.3s;
    padding: 0.5rem;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Brand Colors on Hover */
.social-icons a[href*="facebook.com"]:hover {
    color: #1877F2;
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.4));
}
.social-icons a[href*="instagram.com"]:hover {
    color: #E4405F;
    filter: drop-shadow(0 0 8px rgba(228, 64, 95, 0.4));
}
.social-icons a[href*="youtube.com"]:hover {
    color: #FF0000;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-col { text-align: left; }

.contact-item {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   GSAP 3D Scroll Classes
   ============================================ */
/* The CSS transitions have been removed so GSAP has full control of the rendering pipeline. */

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}
.wa-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.wa-float-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.wa-float-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE & MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}
.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 150;
        gap: 3rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    .btn-outline-nav { display: none; }

    /* Layout overrides */
    .proving-grid,
    .alt-row, .alt-row.reverse,
    .pricing-grid,
    .gallery-grid,
    .photo-gallery-grid,
    .video-gallery-grid,
    .footer-grid,
    .proving-bento {
        grid-template-columns: 1fr;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-item:nth-child(3n+1) {
        grid-row: span 1;
        aspect-ratio: 1 / 1;
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .proving-bento {
        grid-template-rows: auto;
    }
    .bento-tall, .bento-small-top, .bento-wide, .bento-yellow {
        grid-column: 1;
        grid-row: auto;
    }

    .alt-row {
        flex-direction: column;
        border: 2px solid var(--gold);
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.25);
    }

    .alt-row.reverse {
        flex-direction: column-reverse;
    }

    .alt-img-box, .alt-text-box {
        width: 100%;
    }

    .section-heading {
        font-size: 2.2rem;
        line-height: 1.3;
        letter-spacing: 2px;
    }

    .mobile-shrink-word {
        display: block;
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }

    .mobile-hide {
        display: none !important;
    }

    .mobile-image-link {
        pointer-events: auto;
        cursor: pointer;
    }

    .alt-img-box {
        height: 250px;
    }

    .media-placeholder.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sub-heading {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        line-height: 1.4;
    }

    .plan-details {
        padding: 1.5rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 2rem;
    }

    .hero-container {
        padding: 0 1.5rem;
        width: 100%;
    }

    .hero-stats {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
        padding: 3rem 1.5rem 1rem;
        background: transparent;
        border-top: none;
    }

    .stat-item h3 { font-size: 2.2rem; }

    .hero-title,
    .hero-subtitle-outline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        line-height: 1;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .contact-col { text-align: center; }

    .pricing-card.elevated {
        transform: scale(1);
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }
    .whatsapp-form {
        width: 100%;
    }

    .nav-container {
        padding: 0.5rem 1rem;
        width: 100%;
    }

    .nav-logo {
        width: 65px;
        height: 65px;
    }
    
    .footer-logo {
        width: 120px;
        height: 120px;
    }

    .brand {
        gap: 8px;
    }

    .brand .brand-name-img {
        height: 45px;
    }

    .footer-brand .brand-name-img {
        height: 60px;
    }

    .brand-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    /* Less padding on sections for mobile */
    .proving-ground-section, .alt-features-section, .plans-section, .gallery-section, .cta-section {
        padding: 4rem 0;
    }

    /* Footer Mobile Alignment */
    .footer-grid { gap: 2rem; }
    .footer-col { text-align: center; }
    .brand-col .footer-brand { 
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* WhatsApp Mobile Icon Only */
    .wa-float-text { display: none; }
    .wa-float {
        padding: 0;
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        border-radius: 50%;
    }
}

strong, b {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
    z-index: 10002;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        padding: 10px 15px;
        font-size: 20px;
    }
    .lightbox-next {
        right: 10px;
        padding: 10px 15px;
        font-size: 20px;
    }
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }
}
