/* FitFlex Gym Styling */
:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #121216;
    --accent: #ef4444; /* Neon Red/Orange */
    --accent-hover: #dc2626;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* WebLaunch Showcase Banner */
.showcase-banner {
    background: #7c3aed; /* WebLaunch Lab color */
    color: #ffffff;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.back-link svg {
    display: block;
}

/* Header & Nav */
.header {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 38px; /* Offset showcase banner height */
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(239, 68, 68, 0.05);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.accent-text {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Sections Global */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
    max-width: 600px;
}

.section-header.text-center {
    text-align: center;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-gray);
}

/* Perks Section */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.perk-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 40px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.perk-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Programs Section */
.programs-section {
    background: #0d0d10;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.program-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing / Membership */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 48px 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.popular {
    border-color: var(--accent);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-card ul li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Lead Gen Form Section */
.join-section {
    background: #0d0d10;
}

.join-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.join-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.join-info p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.gym-details p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.join-form {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .join-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-actions {
        justify-content: center;
    }
}
