:root {
    --primary: #D4AF37;
    /* Classic Gold */
    --primary-dark: #B59020;
    --primary-glow: rgba(212, 175, 55, 0.4);

    --accent-red: #c62828;
    /* Energetic Red */
    --accent-red-glow: rgba(198, 40, 40, 0.4);

    --secondary: #0a0a12;
    /* Very Dark Navy/Black */
    --background: #121216;
    /* Deepest Charcoal */
    --surface: #1e1e24;
    /* Lighter charcoal */
    --border: #333333;

    --text: #e0e0e0;
    --text-muted: #aaaaaa;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-body);
    background-color: var(--background);
    /* Restored Correct Variable */
    color: var(--text);
    /* Restored Correct Variable */
    overflow-x: hidden;
    /* Critical Fix for Mobile Menu */
    line-height: 1.6;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--primary-glow);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* Animated Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.btn-red {
    background: linear-gradient(135deg, var(--accent-red) 0%, #8e0000 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s;
    z-index: -1;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--primary-glow);
    color: #fff;
}

.btn-red:hover {
    box-shadow: 0 8px 25px var(--accent-red-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(18, 18, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: var(--background);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--accent-red);
    /* Red border on scroll for energy */
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links a {
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero - Animated Gradient */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 0;
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #0a0a12, #1a2c4e, #550000, #3e2723);
    /* Navy, Red, Dark Brown */
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero:hover .hero-bg-overlay {
    background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--primary);
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ddd;
    font-weight: 300;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.hero-stats strong {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.hero-stats span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Section */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.info-text .lead {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 4px solid var(--accent-red);
    /* Red accent */
    padding-left: 1rem;
}

.hours-box {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.hours-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.hours-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.hours-box li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}

.img-frame {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
}

.img-frame img {
    width: 100%;
    display: block;
    opacity: 0.9;
}

/* Gallery - Dark Mosaic */
.gallery-section {
    padding: 6rem 2%;
    background: #0f0f13;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s;
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Reviews - Card Style */
.reviews-section {
    background: var(--background);
    padding-bottom: 8rem;
}

.reviews-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 2rem 0;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

.review-card {
    background: var(--surface);
    padding: 2rem;
    border: 1px solid var(--border);
    min-width: 320px;
    text-align: center;
    border-top: 4px solid var(--accent-red);
    /* Red top border */
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.stars {
    color: var(--primary);
    margin-bottom: 1rem;
}

.review-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.review-card strong {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    border: 1px solid var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
    color: #000;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Footer */
footer {
    background: #050508;
    color: #888;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-contact {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    width: 100%;
    text-align: center;
}

/* --- Internal Pages (Dark Classic) --- */
.hidden {
    display: none;
}

.page-header {
    background: var(--secondary);
    color: #fff;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--primary);
    background: linear-gradient(rgba(10, 10, 18, 0.9), rgba(10, 10, 18, 1));
}

.page-header h1 {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #ccc;
    font-size: 1.2rem;
    font-style: italic;
}

.center-container {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    background: var(--background);
}

.tool-card {
    background: var(--surface);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--accent-red);
    text-align: center;
    animation: fadeUp 0.8s ease-out;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tool-card:not(.no-hover):hover {
    transform: translateY(-10px);
    border-top-color: var(--primary);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    /* Gold Glow */
}

/* Featured / Pricing Highlight */
.tool-card h3 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tool-card h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #444;
    background: #1a1a1f;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.result-box {
    margin-top: 2rem;
    padding: 1rem;
    background: #1a1a1f;
    border: 1px solid var(--primary);
}

.result-number {
    font-size: 2.5rem;
    color: #fff;
    display: block;
}

/* Gender Toggle */
.gender-toggle {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #ccc;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        background: var(--secondary);
    }

    .nav-links {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links a {
        margin: 0;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}


/* --- Visual Polish (Requested) --- */

/* Remove Number Spinners (Arrows) */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Modern Form Controls */
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.05);
    /* Modern Glassy feel */
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    border-radius: 8px;
    /* Rounded corners */
    transition: all 0.3s;
}


.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Fix Dropdown Visibility (Options often default to white bg) */
select.form-control option {
    background-color: #1a1a1f;
    /* Dark Background */
    color: #fff;
    /* White Text */
    padding: 1rem;
}

/* --- Gallery Full Grid Styling --- */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary);
    /* Gold Border by Default */
    transition: all 0.4s ease;
    background: #000;
}

.gallery-card:hover {
    border-color: var(--accent-red);
    /* Red on Hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    /* Fixed Height for Uniformity */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary);
    padding: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .caption {
    transform: translateY(0);
}

/* --- Mobile Optimization --- */

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        /* Slimmer padding */
        background: rgba(0, 0, 0, 0.95);
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        min-height: 60px;
        /* Fixed concise height */
    }

    .navbar .logo {
        font-size: 1rem;
        /* Smaller, cleaner logo */
        letter-spacing: 0.5px;
        max-width: 75%;
        line-height: 1.2;
    }

    .menu-toggle {
        display: flex;
        z-index: 2000;
        transform: scale(0.8);
        /* Slightly smaller icon */
    }

    /* Menu Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        /* Almost solid black */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1.2rem 0;
        font-size: 1.3rem;
        /* Slightly smaller links */
        font-family: var(--font-heading);
        color: #fff;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    /* Staggered Animation for Links */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    /* Mobile Join Button - Slimmer */
    .nav-links .btn-nav-gradient {
        margin-top: 2rem;
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
        width: auto;
    }

    /* Hero Mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Adjust Grid for small screens */
    .gallery-full-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on mobile */
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    /* Smaller cards for mobile grid */
    .gallery-card img,
    .gallery-item img {
        height: 150px;
        /* Reduced height for 2-col layout */
    }

    .gallery-card .caption {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .tool-card {
        padding: 2rem 1.5rem;
    }

    /* Split Layout Mobile */
    .split-layout {
        grid-template-columns: 1fr;
    }

    .info-image {
        display: none;
        /* Hide image on mobile to save space or stack it */
    }

    .contact-mini {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 1. Contact Info Styling */
.contact-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    font-family: var(--font-heading);
    color: #fff;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
}

.contact-mini div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-mini i {
    color: var(--accent-red);
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    text-shadow: 0 0 10px var(--accent-red-glow);
}

.contact-mini span {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 2. Navbar Gradient Button */
.btn-nav-gradient {
    background: linear-gradient(45deg, var(--accent-red), var(--primary)) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    /* Bigger pill */
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
    position: relative;
    z-index: 1;
    border: none;
    margin-left: 1rem;
}

.btn-nav-gradient:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* 3. Image Borders & Hover Effects */
.gallery-item img,
.img-frame img {
    border: 2px solid var(--primary);
    /* Custom Border */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(20%);
}

.gallery-item:hover img,
.img-frame:hover img {
    transform: scale(1.03);
    border-color: var(--accent-red);
    box-shadow: 0 20px 50px rgba(198, 40, 40, 0.2);
    filter: grayscale(0%) brightness(1.1);
}

/* --- Trainers Section (New) --- */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trainer-card {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.trainer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.trainer-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-red);
}

.trainer-name {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trainer-role {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --- Lightbox Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 95%;
    max-height: 80vh;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Pricing Optimization */
@media screen and (max-width: 768px) {

    /* Use Grid for Pricing on Mobile */
    .pricing-container-mobile {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
        justify-content: center;
    }

    .tool-card {
        margin: 0 !important;
        padding: 1rem !important;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .tool-card h3 {
        font-size: 1.1rem !important;
    }

    .tool-card div {
        /* Price */
        font-size: 1.5rem !important;
    }

    .tool-card ul {
        padding-left: 0 !important;
        font-size: 0.8rem;
    }

    .tool-card p {
        font-size: 0.8rem !important;
    }

    .trainer-card {
        padding: 1.5rem;
    }

    .trainer-img {
        width: 100px;
        height: 100px;
    }

    /* --- Horizontal Scroll for Experts & Reviews --- */
    .trainer-grid,
    .reviews-track {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
    }

    .trainer-grid::-webkit-scrollbar,
    .reviews-track::-webkit-scrollbar {
        display: none;
    }

    .trainer-card,
    .review-card {
        min-width: 260px;
        /* Fixed functional width */
        max-width: 260px;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin: 0 !important;
        background: #1a1a1f;
        /* Ensure visibility */
    }

    /* Compact Footer */
    footer {
        padding: 1rem 0;
        background: #000;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        /* Subtle separator */
    }

    .footer-content {
        gap: 0.5rem;
    }

    .footer-logo {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-contact {
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .copyright {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        opacity: 0.6;
    }
}