/* --- PREMIUM CSS VARIABLES --- */
:root {
    --brand-dark: #050505;
    --brand-gold: #FBE84C; /* Rebrand: Volt Yellow */
    --brand-gold-light: #F2C94C;
    --white: #ffffff;
    --top-bar-height: 40px;
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--brand-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomOutBg {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- SCROLL ANIMATION ENGINE --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* --- 1. TOP BAR & NAV --- */
.top-bar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--top-bar-height);
    background: linear-gradient(90deg, #8E793E, #AD9C3E, #8E793E);
    color: var(--white);
    text-align: center; display: flex; justify-content: center;
    align-items: center; font-weight: 800; font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase; z-index: 2000;
}
.top-bar i { margin-right: 8px; }

/* --- NAVBAR STYLES --- */
.navbar {
    position: fixed; top: var(--top-bar-height); left: 0; width: 100%;
    padding: 15px 5%; display: flex; justify-content: space-between;
    align-items: center; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(15px);
}
.logo { 
    font-family: 'Anton', sans-serif; 
    font-size: 28px; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 60px; /* Adjust based on actual logo ratio */
    width: auto;
    object-fit: contain;
}
.logo-text { 
    color: var(--white);
    /* Hidden on mobile by default (mobile-first approach or overriding below) */
    display: none;
}
@media (min-width: 992px) {
    .logo-text {
        display: block; /* Show text on desktop */
    }
}
.logo-box {
    display: none; /* Removed/Hidden as replaced by img */
}
.logo-text { color: var(--white); }
.logo-text span { color: var(--brand-gold); }

.mobile-cta { display: none; }

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}
.nav-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links li a:hover { color: var(--brand-gold); }

/* Nav Button */
.nav-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}
.nav-btn:hover { 
    background-color: #ffffff !important; 
    color: #000000 !important; 
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--brand-gold);
    transition: 0.3s;
}

/* --- 2. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* REMOVED: background: url(...) */
    background: none;
    overflow: hidden; /* Important for keeping zoomed bg contained */
    padding-top: calc(var(--top-bar-height) + var(--nav-height));
    padding-bottom: 50px;
}

/* Background Image on Pseudo Element for Animation */
.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') center/cover no-repeat;
    z-index: 0;
    animation: zoomOutBg 10s ease-out forwards;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.9) 40%, rgba(5, 5, 5, 0.7) 100%);
    z-index: 1; /* Updated Stack */
}

.hero-container {
    position: relative;
    z-index: 2; /* Content sits on top */
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

/* --- LEFT COLUMN: CONTENT --- */
.hero-content { 
    max-width: 700px; 
    /* Animation */
    opacity: 0; 
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.pill-badge {
    display: inline-flex; align-items: center; padding: 8px 18px;
    border: 1px solid var(--brand-gold); background: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; margin-top: 20px;
    border-radius: 4px;
}
.pill-badge i { margin-right: 10px; }

h1 {
    font-family: 'Anton', sans-serif; font-size: 75px; line-height: 1;
    text-transform: uppercase; margin-bottom: 25px; color: white;
    letter-spacing: 3px;
    font-weight: 500;
}
.gold-text {
    background: linear-gradient(90deg, #BF953F, #FCF6BA);
    background-size: 100% 100%; background-repeat: no-repeat;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}

p.sub-lead {
    font-size: 18px; line-height: 1.6; color: #ccc; margin-bottom: 40px; text-align: left;
    max-width: 90%; border-left: 4px solid var(--brand-gold); padding-left: 25px;
}

.hero-stats { display: flex; gap: 30px; }
.stat-item { display: flex; flex-direction: column; }
.stat-val { font-family: 'Anton', sans-serif; font-size: 36px; color: var(--white); line-height: 1; letter-spacing: 1.5px; }
.stat-label { font-size: 12px; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-top: 8px; }

/* --- RIGHT COLUMN: THE PREMIUM FORM --- */
.hero-form-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 5px solid var(--brand-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    text-align: center;
    /* Animation */
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
}

.hero-form-card h3 {
    font-family: 'Anton', sans-serif; font-size: 28px;
    text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1.5px;
}
.form-sub-text { color: #aaa; font-size: 14px; margin-bottom: 25px; }

.form-group { position: relative; margin-bottom: 15px; text-align: left; }
.form-group i {
    position: absolute; top: 18px; left: 15px;
    color: var(--brand-gold);
    pointer-events: none;
}
.form-input {
    width: 100%; padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.05); border: 1px solid #333;
    color: var(--white); font-family: 'Manrope', sans-serif; border-radius: 4px;
    transition: 0.3s;
    appearance: none;
    font-size: 14px;
}
select.form-input { cursor: pointer; }
select.form-input option {
    background-color: var(--brand-dark);
    color: var(--white);
}

.form-input:focus { outline: none; border-color: var(--brand-gold); background: rgba(255,255,255,0.1); }
.form-input::placeholder { color: #777; }
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.hidden { display: none; }

.btn-submit {
    width: 100%; background: var(--brand-gold); color: #000;
    padding: 18px; font-weight: 800; font-size: 16px;
    text-transform: uppercase; letter-spacing: 1px; border: none;
    cursor: pointer; transition: 0.3s; border-radius: 4px; margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    /* Animation */
    animation: pulseGold 2s infinite;
}
.btn-submit:hover {
    background: var(--white); transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}
.form-disclaimer { font-size: 11px; color: #666; margin-top: 15px; }

/* --- 3. FEATURES SECTION --- */
.features-section {
    background-color: var(--brand-dark);
    padding: 100px 5%;
    text-align: center;
    /* Ensure padding doesn't affect the full-width bar next to it, 
       but we will place the bar sibling to this section. */
}

.features-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid #333;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--brand-gold);
}

.feature-card i {
    font-size: 40px;
    color: var(--brand-gold);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

/* --- 4. USP BAR --- */
.usp-bar {
    width: 100%;
    padding: 40px 0;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Allow wrapping */
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.usp-item:nth-child(1) { animation-delay: 0.2s; }
.usp-item:nth-child(2) { animation-delay: 0.4s; }
.usp-item:nth-child(3) { animation-delay: 0.6s; }
.usp-item:nth-child(4) { animation-delay: 0.8s; }

.usp-item i {
    font-size: 24px;
    color: var(--brand-gold);
}

.usp-item span {
    color: #eee;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 5. ABOUT FOUNDERS SECTION --- */
/* VISUAL FIX: Background Change to Pure Black */
.about-founders {
    padding: 100px 5%;
    padding-top: 80px; /* Added Padding Top */
    background: #000000; /* CHANGED to Pure Black */
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333;
    display: block; /* Ensure it behaves like a block for margin auto if needed */
    margin: 0 auto; /* Center if container is larger */
}
/* Removed old pseudo-element placeholder styles */

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold-label {
    color: var(--brand-gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
}

.about-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-text p {
    color: #bbb;
    line-height: 1.8;
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
}

.founder-credentials {
    list-style: none;
    margin-bottom: 30px;
}

.founder-credentials li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.founder-credentials li::before {
    content: '\f00c'; /* Font Awesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-gold);
}

.founder-credentials strong {
    color: var(--white);
    font-weight: 700;
    margin-right: 5px;
}

/* Stagger Animation for list items */
.reveal-stagger {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}
.reveal-stagger:nth-child(1) { animation-delay: 0.3s; }
.reveal-stagger:nth-child(2) { animation-delay: 0.5s; }
.reveal-stagger:nth-child(3) { animation-delay: 0.7s; }
.reveal-stagger:nth-child(4) { animation-delay: 0.9s; }

.signature {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--brand-gold);
    padding-left: 20px;
}
.signature strong { color: var(--brand-gold); font-size: 18px; }
.signature span { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

.about-btn {
    display: inline-block;
    width: fit-content;
    padding: 15px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}
.about-btn:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #000;
}


/* --- 6. CLASSES SECTION --- */
.classes-section {
    background-color: #1a1a1a;
    padding: 120px 5%;
    text-align: center;
}

.classes-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.class-card {
    position: relative;
    height: 450px;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid transparent;
    text-align: left; /* Reset text align */
    cursor: pointer;
}

.class-card:hover {
    border-color: var(--brand-gold);
}

.class-card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.class-card:hover .class-card-bg {
    transform: scale(1.1);
}

.class-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.class-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--brand-gold);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.class-card span {
    color: var(--brand-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.class-info {
    padding: 20px;
}

.class-btn {
    display: inline-block;
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    background: transparent;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    align-self: flex-start; /* Prevent stretching */
}

.class-card:hover .class-btn {
    background: var(--brand-gold);
    color: #000;
}

/* Fix for Class Page Images */
.class-image {
    position: relative;
    width: 100%;
    height: 70%; /* Takes up top 70% of the card */
    overflow: hidden;
}

.class-image .img-placeholder {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
}

/* Ensure the hover zoom effect targets the correct class */
.class-card:hover .class-image .img-placeholder {
    transform: scale(1.1);
}

/* Adjust the text container to fill the remaining space */
.class-info {
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #222; /* Matches card bg */
    z-index: 2;
    position: relative;
    padding: 20px; /* Re-adding padding for safety, though it cascades */
}

/* --- 7. SUCCESS STORIES SECTION --- */
.testimonials-section {
    background-color: #000000;
    padding: 100px 5%;
    text-align: center;
}

.testimonials-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #111;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border-left: 3px solid var(--brand-gold);
}

.stars {
    color: var(--brand-gold);
    margin-bottom: 20px;
    font-size: 14px;
}
.stars i { margin-right: 2px; }

.quote {
    color: #fff;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    display: block;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px; height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #666; font-size: 12px;
    overflow: hidden;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }

.user-details h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.user-details span {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 8. PRICING SECTION --- */
.pricing-section {
    background-color: #1a1a1a;
    padding: 100px 5%;
    text-align: center;
}

.pricing-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Vertically align centers */
}

.pricing-card {
    background-color: #222;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Featured Card Style */
.pricing-card.featured {
    transform: scale(1.05); /* Slight pop */
    border: 2px solid var(--brand-gold);
    background-color: #1a1a1a; /* slightly lighter dark */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

.plan-name {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.plan-price {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}
.plan-period {
    font-size: 13px; color: #888; text-transform: uppercase; margin-bottom: 30px; letter-spacing: 1px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1; /* Pushes button to bottom */
}
.plan-features li {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.plan-features li i {
    color: var(--brand-gold);
    margin-right: 12px;
    font-size: 12px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-select:hover {
    background: var(--white);
    color: #000;
}

/* Featured Button */
.pricing-card.featured .btn-select {
    background: var(--brand-gold);
    border: none;
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.pricing-card.featured .btn-select:hover {
    background: var(--white);
    color: #000;
    transform: translateY(-2px);
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* Secondary Button (Action) */
.btn-secondary-link {
    display: inline-block;
    margin-top: 60px;
    color: #888;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    transition: 0.3s;
}
.btn-secondary-link:hover {
    color: var(--brand-gold);
    border-bottom-color: var(--brand-gold);
}

/* --- 9. CONTACT SECTION --- */
.contact-section {
    background-color: #000000;
    padding: 100px 5%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info h2, .contact-form h2 {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}
.contact-info h2 { color: var(--brand-gold); }
.contact-form h2 { color: var(--white); }

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-details {
    list-style: none;
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ccc;
}
.contact-details li i {
    width: 40px; height: 40px;
    background: #111;
    color: var(--brand-gold);
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-image-placeholder {
    width: 100%;
    /* Flex-grow to fill remaining height */
    flex-grow: 1;
    min-height: 300px;
    background-color: #222;
    border: 1px solid #333;
    display: flex; justify-content: center; align-items: center;
    color: #555;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Subtle shadow */
}
.contact-image-placeholder::before {
    content: '';
    position: absolute; top:0; left:0; width:100%; height:100%;
    /* Gym interior placeholder */
    background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=1375&auto=format&fit=crop') center/cover;
    opacity: 0.5; /* Overlay effect */
    transition: 0.5s;
}
.contact-image-placeholder:hover::before {
    transform: scale(1.05);
    opacity: 0.7;
}

.contact-form textarea.form-input {
    resize: none;
}


/* --- 10. FOOTER SECTION --- */
footer {
    background-color: #050505;
    padding: 80px 5% 40px;
    border-top: 1px solid #111;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Col 1: Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.logo-box {
    background: var(--white);
    color: #000;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 20px;
    border-radius: 4px;
}
.logo-text {
    color: var(--brand-gold);
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.brand-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 40px; height: 40px;
    background: #222;
    color: #fff;
    display: flex; justify-content: center; align-items: center;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 16px;
}
.social-btn:hover {
    background: var(--brand-gold);
    color: #000;
    transform: translateY(-3px);
}

/* Col 2 & 3: Headings & Links */
.footer-col h3 {
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.links-col ul, .contact-col-footer ul {
    list-style: none;
}
.links-col li { margin-bottom: 12px; }
.links-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.links-col a:hover {
    color: var(--brand-gold);
    padding-left: 5px;
}

/* Contact Footer Specific */
.contact-col-footer li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}
.contact-col-footer i {
    color: var(--brand-gold);
    margin-right: 15px;
    margin-top: 5px;
}

/* Col 4: Map */
.map-col .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #111;
    border: 1px solid #222;
    display: flex; justify-content: center; align-items: center;
    color: #444; font-weight: 700;
}

/* Bottom Row */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agency-link {
    color: #888;
    font-weight: 800;
    text-decoration: none;
    margin-left: 5px;
    transition: 0.3s;
}
.agency-link:hover {
    color: var(--brand-gold);
}

.policy-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}
.policy-links a:hover {
    color: #ccc;
}



/* --- 11. ABOUT US PAGE STYLES --- */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brand-dark);
    margin-top: calc(var(--top-bar-height) + var(--nav-height));
}
.page-hero::before {
    content: '';
    position: absolute; top:0; left:0; width:100%; height:100%;
    /* Placeholder Dark Image */
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') center/cover;
    opacity: 0.4;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-hero h1 {
    font-size: 72px;
    color: var(--brand-gold);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Story Section */
.about-story {
    padding: 100px 5%;
    background-color: #000;
    position: relative;
    z-index: 10;
    color: var(--white); /* Force visible text color */
}
.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.story-text p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.story-highlight {
    display: flex;
    gap: 20px;
}
.story-highlight span {
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--brand-gold);
}

.story-image .img-placeholder {
    width: 100%;
    height: 500px;
    background: #111;
    border: 1px solid #222;
    display: flex; justify-content: center; align-items: center;
    color: #555;
    font-weight: 700;
    font-size: 18px;
}

/* Stats Bar */
.stats-bar {
    background-color: #111;
    padding: 60px 5%;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 10;
    color: var(--white);
}
.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-box {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
}
.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    color: var(--brand-gold);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}
.stat-label {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 100px 5%;
    background-color: #000;
    text-align: center;
}
.team-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.coach-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    background: #111;
}
/* Ensure img-placeholder fills card */
.coach-card .img-placeholder {
    width: 100%; height: 100%;
    /* Override placeholder default to full height if needed */
}

/* Overlay Slide Effect */
.coach-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark Glass */
    padding: 20px;
    text-align: left;
    transform: translateY(100%); /* Hidden by default */
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.coach-card:hover .coach-info {
    transform: translateY(0);
}

.coach-name {
    color: var(--brand-gold);
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.coach-role {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.coach-social {
    color: #ccc;
    font-size: 16px;
    align-self: flex-start;
    transition: 0.3s;
}
.coach-social:hover {
    color: var(--brand-gold);
}


/* --- 12. MEMBERSHIP PAGE STYLES --- */

/* Membership Hero */
.membership-hero::before {
    background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=1375&auto=format&fit=crop') center/cover;
    opacity: 0.5;
}
.hero-sub-text {
    font-size: 1.1rem;
    color: #ddd;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: #111;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-container h2 {
    text-align: center;
    color: var(--white);
    font-size: 42px;
    font-family: 'Anton', sans-serif;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 4px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}
.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.faq-question:hover h3 {
    color: var(--brand-gold);
}
.toggle-icon {
    font-size: 24px;
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
}
.faq-answer p {
    margin-top: 15px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

/* Active Accordion State */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if needed */
}
.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* --- 13. CLASSES PAGE STYLES --- */

/* Classes Hero */
.classes-hero::before {
    background: url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?q=80&w=1469&auto=format&fit=crop') center/cover;
    opacity: 0.5;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 5%;
    background-color: #000;
}
.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
}
.schedule-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--brand-gold);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1.5px;
}
.table-wrapper {
    overflow-x: auto;
    border: 1px solid #222;
    border-radius: 8px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Force scroll on mobile */
    background: #111;
}
th, td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
}
th:last-child, td:last-child {
    border-right: none;
}
th {
    background: #222;
    color: var(--brand-gold);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
td {
    vertical-align: top;
    height: 120px;
    color: #ccc;
    font-size: 14px;
}
.class-slot {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 4px;
    border-left: 2px solid var(--brand-gold);
}
.class-slot strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-top: 5px;
}

/* --- 14. CONTACT PAGE STYLES --- */

/* Contact Hero */
.contact-hero::before {
    background: url('https://images.unsplash.com/photo-1596357395217-80de13130e92?q=80&w=1471&auto=format&fit=crop') center/cover;
    opacity: 0.5;
}

/* Contact Page Layout */
.contact-page-section {
    padding: 100px 5%;
    background-color: #000;
}
.contact-page-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 80px;
}
.contact-info-col h2, .contact-form-col h2 {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    color: var(--brand-gold);
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}

/* Info Column */
.info-block { margin-bottom: 40px; }
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.info-item i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex; justify-content: center; align-items: center;
    color: var(--brand-gold);
    font-size: 18px;
}
.info-item p {
    color: #ccc;
    font-size: 18px;
}

.hours-block {
    margin-bottom: 40px;
    border-left: 3px solid var(--brand-gold);
    padding-left: 20px;
}
.hours-block h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hours-block p {
    color: #888;
    margin-bottom: 5px;
    font-size: 16px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #222;
    display: flex; justify-content: center; align-items: center;
    color: #555;
    font-weight: 700;
    border: 1px solid #333;
}

/* Contact Form Column */
.styled-form {
    background: #111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #222;
}
.styled-form .form-group { margin-bottom: 25px; }
.styled-form label {
    display: block;
    color: #888;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.styled-form input, .styled-form select, .styled-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}
.styled-form input:focus, .styled-form select:focus, .styled-form textarea:focus {
    border-color: var(--brand-gold);
}
.styled-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}


/* --- 15. KIDS ACADEMY STYLES --- */

/* Hero Image */
.kids-hero::before {
    background: url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?q=80&w=1469&auto=format&fit=crop') center/cover; /* Placeholder boxing image */
    opacity: 0.5;
}

/* Details Card */
.kids-details-card {
    background: #111;
    border: 2px solid var(--brand-gold); /* Gold Border */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.kids-details-card h3 {
    font-family: 'Anton', sans-serif;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

/* Specs List */
.kids-specs {
    list-style: none;
}
.kids-specs li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.kids-specs li:last-child { margin-bottom: 0; }
.kids-specs i {
    width: 50px; height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--brand-gold);
    font-size: 20px;
    border: 1px solid #333;
}
.kids-specs div strong {
    display: block;
    color: var(--brand-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.kids-specs div span {
    color: #ccc;
    font-size: 16px;
}

/* CTA Section */
.kids-cta-section {
    padding: 100px 5%;
    background: #000;
    text-align: center;
}
.kids-cta-content {
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    padding: 60px;
    border-radius: 8px;
    border: 1px solid #222;
}
.kids-cta-content h2 {
    font-family: 'Anton', sans-serif;
    color: var(--brand-gold);
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.kids-cta-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 40px;
}
.btn-primary-gold {
    display: inline-block;
    background: var(--brand-gold);
    color: #000;
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-primary-gold:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}




/* --- 16. RESTAURANT SECTION STYLES --- */
.restaurant-section {
    padding: 100px 5%;
    background-color: #111;
    position: relative;
    border-top: 1px solid #222;
}
.restaurant-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.restaurant-image .img-placeholder {
    width: 100%;
    height: 500px;
    background: #000;
    border: 1px solid #222;
    background-size: cover;
    background-position: center;
}
.restaurant-text h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 2px;
}
.restaurant-text .gold-text {
    color: var(--brand-gold);
}
.restaurant-text p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}


.restaurant-text p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* --- 17. ECOSYSTEM SECTION STYLES --- */
.ecosystem-section {
    padding: 100px 5%;
    background-color: #050505; /* Slightly lighter than black */
    text-align: center;
}
.ecosystem-container {
    max-width: 1400px;
    margin: 0 auto;
}
.ecosystem-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.ecosystem-container .gold-text { color: var(--brand-gold); }
.section-sub-head {
    color: #888;
    font-size: 18px;
    margin-bottom: 60px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.ecosystem-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ecosystem-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
}
.icon-box {
    width: 70px; height: 70px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--brand-gold);
    font-size: 28px;
    margin-bottom: 25px;
    border: 1px solid #333;
    transition: 0.3s;
}
.ecosystem-card:hover .icon-box {
    background: var(--brand-gold);
    color: #000;
}
.ecosystem-card h3 {
    font-family: 'Anton', sans-serif;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.ecosystem-card p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.link-arrow {
    margin-top: auto; /* Push to bottom */
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.ecosystem-card:hover .link-arrow {
    gap: 15px; /* Slide arrow */
}


/* --- MOBILE & TABLET RESPONSIVE --- */

@media (max-width: 992px) {
    .hero-container {
        padding-left: 12px;
        grid-template-columns: 1fr;
        gap: 50px; text-align: center;
    }
    .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
    h1 { font-size: 50px; text-align: left; }
    p.sub-lead {
        border-left: 4px solid var(--brand-gold);
        padding-left: 20px;
    }
    .hero-stats { justify-content: center; width: 100%; }
    .hero-form-card { max-width: 500px; margin: 0 auto; width: 100%; }
    .nav-items { display: none; }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* USP Bar Mobile */
    .usp-bar {
        gap: 30px;
        padding: 40px 20px;
    }
    .usp-item {
        width: 45%; /* Approx 2 per row */
    }
    
    /* About Mobile */
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image { height: 350px; }
    .about-text { align-items: flex-start; }
    
    /* Classes Mobile */
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pricing-card.featured {
        transform: scale(1); /* Reset scale on mobile */
        order: -1; /* Show featured first (optional) or keep middle. Let's keep distinct. */
    }

    /* Contact Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .policy-links a {
        margin: 0 10px;
    }
    /* About Us Page Mobile */
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Restaurant Mobile */
    .restaurant-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .restaurant-image { order: -1; height: 350px; }
    .restaurant-text { 
        text-align: center;
        padding: 30px 20px; /* Fix for edge touching */
    }
    .restaurant-text .about-btn { margin-top: 20px; }
    
    /* Ecosystem Mobile */
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 48px;
        text-align: center; /* Fix left alignment */
    }
    .page-hero-content {
        text-align: center;
        padding: 0 20px;
        width: 100%;
        display: flex;
        flex-direction: column; /* Ensure vertical stacking */
        align-items: center;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 30px;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px; /* Limit width on mobile */
        margin: 0 auto;
    }
    
    /* Classes Page Mobile */
    .table-wrapper {
        margin: 0 -20px; /* Bleed to edge */
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    th, td {
        padding: 15px;
    }
    
    /* Contact Page Mobile */
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .styled-form {
        padding: 20px;
    }

    /* Mobile Navigation */
    .top-bar { display: flex; } /* RESTORED TOP BAR */
    .navbar { top: 40px; background: #000; } /* Pushed down by 40px top bar */
    .hero, .page-hero { margin-top: 120px; padding-top: 0; } /* 80px nav + 40px top bar */
    
    .hamburger { display: flex; }
    
    /* Logo Logic for Mobile */
    .logo-text { display: none; }
    .logo-box {
        display: flex;
        width: 40px; height: 40px;
        background: #222;
        color: var(--brand-gold);
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        font-size: 24px;
        border: 1px solid #333;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: inline-block;
        background-color: var(--brand-gold);
        color: #000;
        padding: 8px 16px;
        font-weight: 700;
        border-radius: 4px;
        margin-right: 15px; /* Gap for hamburger */
        margin-left: auto; /* Push to right */
        text-decoration: none;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        right: -100%;
        width: 100%;
        height: calc(100vh - 100%); /* Full height minus navbar */
        background: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s ease;
        border-top: 1px solid #222;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li a {
        font-size: 24px;
        color: var(--white);
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* --- 19. PROGRAMS PAGE STYLES --- */
.program-section {
    padding: 80px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: #050505;
    border-bottom: 1px solid #222;
}
.program-section:last-of-type { border-bottom: none; }

.program-section.reverse {
    flex-direction: row-reverse;
    background-color: #0a0a0a;
}

.program-image {
    flex: 1;
    height: 400px;
}
.program-image .img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    border: 1px solid #333;
}

.program-text {
    flex: 1;
}
.program-text h2 {
    font-family: 'Anton', sans-serif;
    color: var(--white);
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.program-text p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.program-details-box p {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 8px;
}
.program-details-box strong { color: var(--brand-gold); }

/* Mobile Program Styles */
@media (max-width: 992px) {
    .program-section {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 60px 5%;
    }
    .program-section.reverse {
        flex-direction: column;
    }
    .program-image {
        width: 100%;
        height: 300px;
    }
    .program-text {
        width: 100%;
    }
    .program-details-box {
        text-align: left;
    }
}

/* Hero CTA Button Style */
.hero-cta {
    display: inline-block;
    background-color: #FBE84C; /* Volt Yellow */
    color: #000000;
    padding: 16px 40px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(251, 232, 76, 0.3); /* Subtle yellow glow */
}

.hero-cta:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 232, 76, 0.5);
}

/* Fix for Program Page Images */
.program-section .img-placeholder {
    min-height: 400px; /* Force height so image is visible */
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Mobile specific adjustment if needed */
@media (max-width: 992px) {
    .program-section .img-placeholder {
        min-height: 300px;
        margin-bottom: 20px;
    }
    .program-section {
        flex-direction: column-reverse !important; /* Stack text under image */
        padding: 60px 20px;
    }
}

/* --- 20. CLASSES PAGE RESTRUCTURE --- */

/* SPLIT LAYOUT CONTAINER */
.classes-layout-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start; /* Keeps header at top */
}

/* LEFT SIDE (Text) */
.classes-intro {
    flex: 1;
    min-width: 300px; /* Desktop width */
    position: sticky;
    top: 160px; /* Sticky effect on scroll - increased to avoid header overlap */
}
.classes-intro h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 30px;
    text-align: left; /* Force left align */
    font-family: 'Anton', sans-serif;
    color: var(--white);
}
.classes-intro p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

/* RIGHT SIDE (2x2 Grid) */
.classes-grid {
    flex: 2; /* Takes up 2/3 space */
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important; /* Force 2 Columns */
    gap: 30px;
    margin-bottom: 0 !important; /* Remove old margin */
}

/* CARD FIX (Text Clipping) */
.class-card {
    height: auto; /* Remove fixed height */
    min-height: 100%; /* Stretch to match neighbors */
    display: flex;
    flex-direction: column;
}
.class-image {
    height: 250px; /* Fixed height for image only */
    flex-shrink: 0;
}
.class-info {
    flex-grow: 1; /* Allows text area to expand */
    height: auto; /* Remove fixed height */
    padding: 25px;
    background: #222;
}

/* MOBILE RESPONSIVE for Classes */
@media (max-width: 992px) {
    .classes-layout-wrapper {
        flex-direction: column; /* Stack Text on Top */
    }
    .classes-intro {
        position: static; /* Remove sticky on mobile */
        text-align: center;
        margin-bottom: 40px;
    }
    .classes-intro h2, .classes-intro p {
        text-align: center;
    }
    .classes-grid {
        grid-template-columns: 1fr !important; /* Stack cards 1 by 1 */
        width: 100%;
    }
    .desktop-only-btn {
        display: none; /* Hide extra button on mobile if needed */
    }
}

/* --- 21. MEMBERSHIP PAGE TOGGLE STYLES --- */

/* 1. Style the Toggle Container & Buttons */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px; /* Fixes overlap with card badges */
    margin-top: 20px;
}

.toggle-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-family: 'Anton', sans-serif; /* Matches headers */
    letter-spacing: 1.5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.toggle-btn:hover {
    border-color: #FBE84C;
    color: #FBE84C;
}

.toggle-btn.active {
    background: #FBE84C;
    color: #000;
    border-color: #FBE84C;
    box-shadow: 0 0 15px rgba(251, 232, 76, 0.4);
}

/* 2. Fix Button Underlines */
.btn-select, .hero-cta, a.class-btn {
    text-decoration: none !important; /* Forces removal of underlines */
}

/* 3. The Toggle Logic Classes */
.hidden-grid {
    display: none !important; /* Hides the inactive grid */
}
.active-grid {
    display: grid !important; /* Shows the active grid */
}

/* --- 22. FOOTER FIXES --- */
.footer-bottom a, 
.social-icons a, 
.social-btn {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}


/* --- 18. KIDS GALLERY & LIGHTBOX --- */

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #333;
    cursor: pointer;
    height: 300px; /* Fixed Thumbnail Height */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the box without stretching */
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Lightbox Modal (Hidden by default) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #FBE84C;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
