/* Global Variables & Reset */
:root {
    /* Colors - The Arena Theme */
    --bg: #0F0F0F;
    /* Deep Black for Hero/Video */
    --bg-light: #F4F4F0;
    /* Bone for Services/Info */
    --bg-card: #FFFFFF;
    /* White for Cards */

    --accent: #D0F224;
    /* Neon Lime */
    --accent-rgb: 208, 242, 36;

    --secondary-blue: #185ADB;
    /* Sport Blue */

    --text-primary: #111111;
    /* Carbon Black */
    --text-on-dark: #FFFFFF;
    --text-muted: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto Condensed', sans-serif;

    /* Spacing & Radii */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-pill: 9999px;
    /* Only for buttons */

    --section-padding: 100px 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Site Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-slim {
    padding: 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Common Components */
button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
}

.btn-primary {
    background: #fff;
    color: #000;
    border-radius: var(--radius-pill);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-lime {
    background: var(--accent);
    color: #000;
    border-radius: var(--radius-pill);
    /* Pill shape for buttons */
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-lime:hover {
    transform: scale(1.05);
    /* Sporty pop */
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 14px 30px;
    font-weight: 700;
}

/* Utilities */
.text-gradient {
    /* Removed for flat sporty look, but keeping class for safety */
    color: var(--accent);
}

.section-tag {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    display: inline-block;
    background: #000;
    padding: 4px 8px;
    color: #fff;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 40px;
    color: #000;
    /* Default to black for light sections */
}

/* Dark Section Override */
.section-dark .section-title {
    color: #fff;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Page Sections */

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
    color: #fff;
    /* Ensure all text in hero is white */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent);
    color: #000;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 104px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-style: italic;
    color: #fff;
    /* Explicitly white */
}

.hero-description {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
    font-weight: 500;
    color: #ccc;
    /* Light gray for description */
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}


/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Common High-Impact Section */
.concierge-hero,
.free-service-hero {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.concierge-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.free-service-hero .concierge-grid {
    grid-template-columns: 1fr 1.1fr;
}

.concierge-content h2 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    font-style: italic;
}

.concierge-highlight-box {
    background: linear-gradient(90deg, rgba(217, 255, 0, 0.15) 0%, transparent 100%);
    border-left: 6px solid var(--accent);
    padding: 24px 32px;
    margin-bottom: 48px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.concierge-highlight-box p {
    color: var(--accent);
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
}

.concierge-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9), 0 0 50px rgba(217, 255, 0, 0.1);
    border: 1px solid rgba(217, 255, 0, 0.2);
}

.concierge-cta {
    display: flex;
    margin-top: 48px;
}

/* Features Group */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step-counter;
}

.step-card {
    position: relative;
    padding: 40px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.step-card::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Experience / Mockups */
.app-mockup-wrapper {
    position: relative;
    height: 700px;
    background: #000;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.mockup-lifestyle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Contact Form Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.form-container {
    padding: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
}

textarea.form-input {
    min-height: 150px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    padding: 32px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
}

.review-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 160px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/assets/community_grid-070b4b35.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.final-cta h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
}

/* Responsive Styles */

/* Tablet (Under 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 72px;
    }

    .concierge-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 60px;
    }

    .concierge-content h2 {
        font-size: 56px;
    }

    .features-grid,
    .reviews-grid,
    .how-it-works-grid,
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 60px;
    }

    .concierge-cta {
        justify-content: center;
    }
}

/* Arena Theme Utilities */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.section-dark {
    background-color: var(--bg);
    color: var(--text-on-dark);
}

.card-season {
    background: #FFFFFF;
    border-radius: 0px;
    /* Sharp edges */
    border-top: 5px solid var(--accent);
    /* Neon Lime Strip */
    padding: 32px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.card-season .card-tag {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

.card-season h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.card-season p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 24px;
}

.card-season .card-footer {
    border-top: 1px dotted #000;
    padding-top: 16px;
    margin-top: auto;
}

.card-season .btn-link {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Mobile (Under 768px) */
@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .concierge-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 48px;
    }

    .concierge-content h2 {
        font-size: 40px;
    }

    .concierge-highlight-box {
        border-left: none;
        border-bottom: 4px solid var(--accent);
        padding: 24px;
    }

    .features-grid,
    .reviews-grid,
    .how-it-works-grid,
    .contact-grid,
    .experience-grid {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 32px;
    }

    .navbar .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 20px;
    }


    .final-cta h2 {
        font-size: 40px;
    }

    .desktop-br {
        display: none;
    }
}

/* Small Mobile (Under 480px) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-container {
        padding: 32px 20px;
    }
}