/* ============================================
   JUNIOR FITNESS - COMPLETE STYLESHEET
   Dark Theme + Neon Green Accents (#00ff88)
   Production Ready - All Pages Covered
   ============================================

   PAGES COVERED:
   - index.html (Home Page)
   - programs.html (Programs Page)
   - trainers.html (Trainers Page)
   - membership.html (Membership/Pricing Page)
   - gallery.html (Gallery Page)
   - schedule.html (Schedule & Booking Page)
   - blog.html (Blog Page)
   - contact.html (Contact Page)
   - dashboard.html (Dashboard/Profile Page)
   - fitness-tools.html (Fitness Tools/BMI Tracker)
   - about.html (About Page)

   FEATURES:
   - Responsive Design (Mobile, Tablet, Desktop)
   - Dark Theme with Neon Green Accents
   - Smooth Animations & Transitions
   - Hover Effects & Interactive Elements
   - Scroll Reveal Animations
   - Mobile Menu Toggle
   - Lightbox/Modal Functionality
   - Form Styling & Validation
   - Grid Layouts & Cards
   - Hero Sections & CTAs
   - Consistent Navigation & Footer

   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --bg-dark: #000000;
    --bg-light: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

/* Home Page Styles */
.home-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.home-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.home-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-color);
}

.preview-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.preview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-card:hover .preview-card-image img {
    transform: scale(1.1);
}

.preview-card h3 {
    color: var(--primary-color);
    padding: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Home Sections */
.home-programs,
.home-trainers,
.home-gallery,
.home-blog {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.home-tools {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-button {
    text-align: center;
    margin-top: 3rem;
}

/* Home CTA Section */
.home-cta {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 50px;
}

.home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.home-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.home-cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.home-cta-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.center {
    text-align: center;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    background-color: rgba(0, 255, 136, 0.05);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Motivation Banner */
.motivation-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=800&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

.motivation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.motivation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.motivation-quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
}

/* Schedule & Gallery Sections */
.schedule,
.gallery {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Programs Page Styles */
.programs-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.programs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.programs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.programs-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.programs-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Programs Grid Section */
.programs-grid-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background-color: var(--bg-light);
    color: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-color);
}

.program-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.1);
}

.program-card-content {
    padding: 1.5rem;
}

.program-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.program-card-content p {
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* Programs CTA Section */
.programs-cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.programs-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.programs-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.programs-cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-learn-more {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-learn-more:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-block {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-dark);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--bg-light);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-benefits {
    margin-top: 2rem;
}

.modal-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-benefits ul {
    list-style: none;
    padding: 0;
}

.modal-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.modal-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Schedule Page Styles */
.schedule-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.schedule-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.schedule-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.schedule-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.schedule-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Schedule Grid Section */
.schedule-grid-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.schedule-container {
    margin-top: 3rem;
    overflow-x: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    min-width: 900px;
}

.schedule-day {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.schedule-day:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.day-header {
    background-color: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.time-slot {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.time-slot:last-child {
    border-bottom: none;
}

.time-slot.active {
    background-color: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary-color);
}

.time-slot:hover {
    background-color: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.time-slot .time {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.time-slot .program-name {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.time-slot .program-details {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.booking-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: var(--bg-dark);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background-color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Motivation Strip */
.motivation-strip {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.motivation-strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.motivation-strip-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.motivation-strip-text {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
}

/* Popup Notification */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: var(--bg-light);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-content {
    text-align: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    animation: popupIcon 0.5s ease;
}

@keyframes popupIcon {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popup-message {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-container .btn-primary {
    width: 100%;
}

/* Gallery Page Styles */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.gallery-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.gallery-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Gallery Filters Section */
.gallery-filters-section {
    padding: 3rem 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background-color: var(--bg-light);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 60px 0 100px;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 10px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img,
.gallery-item .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.gallery-category {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
}

/* Gallery Motivation Section */
.gallery-motivation {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.gallery-motivation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.gallery-motivation-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.gallery-motivation-text {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-column,
.contact-form-column {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.1);
}

.contact-info-list {
    margin-top: 1.5rem;
}

.contact-info-list p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.contact-info-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: var(--primary-color);
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-main input,
.contact-form-main textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: var(--text-gray);
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    min-height: 24px;
}

/* Map Section */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    filter: grayscale(20%) invert(5%);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-light);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: var(--text-gray);
}

#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location,
.socials {
    background-color: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
    filter: grayscale(20%) invert(5%);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link-text:hover {
    color: #00cc6a;
}

.social-separator {
    color: var(--text-gray);
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Mission + Values */
.mission-values {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mv-card {
    background-color: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    color: var(--text-gray);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1rem;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.why-items {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Membership Page Styles */
.membership-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.membership-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.membership-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.membership-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.membership-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Pricing Toggle Section */
.pricing-toggle-section {
    padding: 3rem 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.toggle-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.toggle-discount {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: var(--text-gray);
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-pricing:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.btn-pricing-featured {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-pricing-featured:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Membership Benefits Section */
.membership-benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Membership CTA Section */
.membership-cta-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.membership-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.membership-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.membership-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Trainers Page Styles */
.trainers-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.trainers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.trainers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.trainers-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.trainers-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Trainers Grid Section */
.trainers-grid-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.trainer-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trainer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.trainer-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image {
    transform: scale(1.05);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trainer-info {
    flex: 1;
}

.trainer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.trainer-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.trainer-specialty {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Trainers CTA Section */
.trainers-cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.trainers-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trainers-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trainers-cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Dashboard Page Styles */
.dashboard-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.dashboard-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.dashboard-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.dashboard-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.dashboard-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.profile-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.profile-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.profile-email,
.profile-membership {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.membership-badge {
    color: var(--primary-color);
    font-weight: 700;
}

.profile-card .btn-primary {
    margin-top: 1.5rem;
    width: 100%;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

/* Schedule Table Section */
.schedule-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.schedule-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-dark);
    min-width: 600px;
}

.schedule-table thead {
    background-color: rgba(0, 255, 136, 0.1);
}

.schedule-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
}

.schedule-table td {
    padding: 1.2rem 1rem;
    text-align: left;
    color: var(--text-gray);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-table tbody tr {
    transition: all 0.3s ease;
}

.schedule-table tbody tr:hover {
    background-color: rgba(0, 255, 136, 0.05);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Dashboard CTA Section */
.dashboard-cta-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.dashboard-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Fitness Tools Page Styles */
.fitness-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.fitness-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.fitness-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.fitness-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.fitness-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* BMI Calculator Section */
.bmi-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.bmi-container {
    max-width: 500px;
    margin: 3rem auto 0;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bmi-input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.bmi-input-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.bmi-input-group input {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bmi-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.bmi-input-group input::placeholder {
    color: var(--text-gray);
}

.bmi-result {
    margin-top: 2rem;
    display: none;
}

.bmi-result-content {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid;
}

.bmi-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bmi-category {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bmi-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.bmi-normal {
    background-color: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.bmi-underweight {
    background-color: rgba(100, 181, 246, 0.1);
    border-color: #64b5f6;
    color: #64b5f6;
}

.bmi-overweight {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.bmi-obese {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}

.bmi-normal .bmi-value,
.bmi-normal .bmi-category {
    color: var(--primary-color);
}

.bmi-underweight .bmi-value,
.bmi-underweight .bmi-category {
    color: #64b5f6;
}

.bmi-overweight .bmi-value,
.bmi-overweight .bmi-category {
    color: #ffc107;
}

.bmi-obese .bmi-value,
.bmi-obese .bmi-category {
    color: #f44336;
}

/* Weight Tracker Section */
.tracker-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.tracker-container {
    max-width: 600px;
    margin: 3rem auto 0;
    background-color: var(--bg-dark);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tracker-input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.tracker-input-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tracker-input-group input {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tracker-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.tracker-input-group input::placeholder {
    color: var(--text-gray);
}

.weight-list-container {
    margin-top: 2rem;
}

.weight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weight-list-empty {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem;
    font-style: italic;
}

.weight-entry {
    background-color: var(--bg-light);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.weight-entry:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

.weight-entry-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.weight-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.weight-date {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.weight-delete {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.weight-delete:hover {
    border-color: #f44336;
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--bg-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Contact CTA Banner */
.contact-cta-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.2)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=600&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.contact-cta-text {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Page Styles */
.blog-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 255, 136, 0.1)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 70px;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 136, 0.15));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.blog-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--bg-light);
    color: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    border-color: var(--primary-color);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-light);
    line-height: 1.3;
}

.blog-card-content p {
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.blog-read-more-link {
    display: inline-block;
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-read-more-link:hover {
    color: #00cc6a;
    transform: translateX(5px);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.blog-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Featured Article Section */
.featured-article-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.featured-article:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.featured-article-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-article-content {
    padding: 3rem;
}

.featured-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Blog Filters Section */
.blog-filters-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-filter-btn {
    padding: 0.8rem 2rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.blog-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.blog-post-card.hidden {
    display: none;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    transform: translateX(5px);
    color: var(--text-light);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-light);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pagination-number:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-number.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

/* Subscribe Section */
.blog-subscribe-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.subscribe-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-dark);
    padding: 4rem 3rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.subscribe-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.subscribe-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscribe-input-group {
    display: flex;
    gap: 1rem;
}

.subscribe-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.subscribe-input-group input::placeholder {
    color: var(--text-gray);
}

.subscribe-input-group .btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* Toast Notification */
.toast-overlay {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast-content {
    background-color: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.toast-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        background-attachment: scroll;
    }

    .motivation-banner {
        background-attachment: scroll;
    }

    .programs-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-hero {
        background-attachment: scroll;
    }

    .cta-section {
        background-attachment: scroll;
    }

    .modal-container {
        max-width: 95%;
        margin: 20px;
    }

    .modal-content {
        padding: 2rem;
    }

    .schedule-hero {
        background-attachment: scroll;
    }

    .motivation-strip {
        background-attachment: scroll;
    }

    .schedule-grid {
        min-width: 700px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .gallery-hero {
        background-attachment: scroll;
    }

    .gallery-motivation {
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .contact-hero {
        background-attachment: scroll;
    }

    .contact-cta-banner {
        background-attachment: scroll;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 2rem;
    }

    .blog-hero {
        background-attachment: scroll;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        min-height: 300px;
    }

    .subscribe-input-group {
        flex-direction: column;
    }

    .subscribe-container {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .program-card {
        padding: 2rem;
    }

    .program-detailed-card {
        margin-bottom: 1rem;
    }

    .program-card-content {
        padding: 1.5rem;
    }

    .program-card-title {
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .schedule-grid {
        min-width: 100%;
        grid-template-columns: 1fr;
    }

    .schedule-day {
        margin-bottom: 1rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .popup-container {
        padding: 2rem;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero-title {
        font-size: 2rem;
    }

    .gallery-motivation-text {
        font-size: 1.5rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-cta-text {
        font-size: 1.5rem;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 1.5rem;
    }

    .about-hero {
        background-attachment: scroll;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-values-grid {
        grid-template-columns: 1fr;
    }

    .why-items {
        grid-template-columns: 1fr;
    }

    .membership-hero {
        background-attachment: scroll;
    }

    .membership-cta-section {
        background-attachment: scroll;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trainers-hero {
        background-attachment: scroll;
    }

    .trainers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .dashboard-hero {
        background-attachment: scroll;
    }

    .profile-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-table-wrapper {
        overflow-x: auto;
    }

    .fitness-hero {
        background-attachment: scroll;
    }

    .bmi-container,
    .tracker-container {
        padding: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .subscribe-title {
        font-size: 1.5rem;
    }

    .toast-overlay {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .why-card {
        padding: 2rem;
    }

    .membership-hero-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .membership-cta-text {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .trainers-hero-title {
        font-size: 2rem;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .trainer-card {
        padding: 2rem;
    }

    .trainer-image {
        width: 120px;
        height: 120px;
    }

    .trainers-cta-title {
        font-size: 1.8rem;
    }

    .dashboard-hero-title {
        font-size: 2rem;
    }

    .profile-card {
        padding: 2rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .dashboard-cta-title {
        font-size: 1.8rem;
    }

    .fitness-hero-title {
        font-size: 2rem;
    }

    .bmi-value {
        font-size: 2rem;
    }

    .bmi-category {
        font-size: 1.1rem;
    }

    .programs-hero {
        background-attachment: scroll;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-cta-title {
        font-size: 1.8rem;
    }

    .blog-hero {
        background-attachment: scroll;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-cta-title {
        font-size: 1.8rem;
    }

    .contact-hero {
        background-attachment: scroll;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .home-hero {
        background-attachment: scroll;
        min-height: 500px;
    }

    .home-hero-title {
        font-size: 2.5rem;
    }

    .preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .home-cta {
        background-attachment: scroll;
        height: 350px;
    }

    .home-cta-title {
        font-size: 2rem;
    }
}

/* ============================
   SCHEDULE PAGE STYLING
============================ */

.schedule-section {
    width: 90%;
    max-width: 1200px;
    margin: 70px auto;
    text-align: center;
}

.schedule-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* GRID */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* DAY CARDS */
.day-card {
    background: #0d0d0d;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 0 20px #00ff88;
}

.day-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #00ff88;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.day-card ul {
    list-style: none;
    padding: 0;
}

.day-card ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #e4e4e4;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: 0.3s;
}

.day-card ul li:hover {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

/* HERO (if needed) */
.page-hero {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.page-hero h1 {
    font-size: 3rem;
    color: #00ff88;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.page-hero p {
    color: #fff;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}

/* MOBILE */
@media(max-width: 600px) {
    .day-card {
        padding: 20px 15px;
    }
    .schedule-section h2 {
        font-size: 2rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

