/* ===================================
   Level Up Fitness Club - Main Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-red: #AE283C;
    --primary-red-dark: #8B1E2C;
    --gold: #FFCD4C;
    --gold-dark: #E0B040;
    --navy: #0B1734;
    --navy-light: #152350;
    --navy-dark: #070E1C;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #6B7280;
    --gray-dark: #1A1A1A;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--gold);
    color: var(--navy);
}

.btn-secondary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    font-size: 16px;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-red-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 27, 42, 0.85),
        rgba(13, 27, 42, 0.7),
        rgba(13, 27, 42, 0.85)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-line1 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 120px);
    color: var(--white);
    letter-spacing: 8px;
    line-height: 1;
}

.hero-title-line2 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(72px, 15vw, 180px);
    color: var(--gold);
    letter-spacing: 12px;
    line-height: 0.95;
    margin-top: -10px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--white);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    background: var(--navy);
    padding: 60px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--gold), var(--primary-red));
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 10px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Programs Section */
.programs {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--navy);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.program-icon i {
    font-size: 36px;
    color: var(--gold);
}

.program-card:hover .program-icon {
    background: var(--gold);
}

.program-card:hover .program-icon i {
    color: var(--navy);
}

.program-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--navy);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.program-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.program-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

.program-link .arrow {
    transition: var(--transition);
}

/* Testimonials Section */
.testimonials {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
    padding: 30px 0 60px;
}

.testimonial-slider .swiper-slide {
    padding: 0 10px;
}

.testimonial-card {
    background: var(--navy-light);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 18px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
}

.author-info h4 {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    top: 45%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--gold);
    color: var(--navy);
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

/* CTA Banner Section */
.cta-banner {
    background: var(--primary-red);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-buttons {
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-social i {
    font-size: 18px;
    color: var(--white);
}

.footer-social a:hover i {
    color: var(--navy);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact i {
    font-size: 18px;
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .credit a {
    color: var(--gold);
    font-weight: 500;
}

.footer-bottom .credit a:hover {
    text-decoration: underline;
}

/* Counter Animation */
.stat-number.animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title-line1 {
        letter-spacing: 4px;
    }

    .hero-title-line2 {
        letter-spacing: 6px;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 50px;
        height: 2px;
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .stat-label {
        margin-left: 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .program-card {
        padding: 30px 20px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--navy); transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-nav.scrolled { background: rgba(11,23,52,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-body); font-weight: 900; font-size: 18px; color: var(--white); letter-spacing: 0.5px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-link:hover, .nav-link.current { color: var(--gold); }
.nav-link:hover::after, .nav-link.current::after { width: 100%; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; padding: 4px; }
@media (max-width: 768px) { .hamburger { display: block; } .nav-menu { position: fixed; top: 72px; left: 0; width: 100%; height: calc(100vh - 72px); background: var(--navy); flex-direction: column; justify-content: flex-start; padding-top: 40px; gap: 24px; transform: translateX(100%); transition: transform 0.3s ease; } .nav-menu.active { transform: translateX(0); } .nav-link { font-size: 20px; } }

/* ===== BUTTONS ===== */
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; height: 50vh; min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,23,52,0.85) 0%, rgba(11,23,52,0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(48px, 8vw, 96px); color: var(--white); letter-spacing: 3px; line-height: 1; margin-bottom: 12px; }
.hero-sub { font-family: var(--font-body); font-size: clamp(14px, 2vw, 20px); color: rgba(255,255,255,0.85); font-weight: 400; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: var(--gray-light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-red { background: var(--primary-red); color: var(--white); }
.section-label { font-family: var(--font-heading); font-size: 14px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
.section-heading { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); color: var(--navy); line-height: 1.1; margin-bottom: 48px; }
.section-dark .section-heading { color: var(--white); }

/* ===== FOOTER ===== */
.main-footer { background: #070E1C; color: var(--white); padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: var(--font-body); font-weight: 900; font-size: 20px; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-heading { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.footer-link:hover { color: var(--gold); }
.footer-text { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-credit { color: var(--gold) !important; font-weight: 600; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } .section { padding: 60px 0; } }

/* ===== OFFER CARDS ===== */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.offer-card { background: var(--white); border: 2px solid var(--gray-light); border-radius: 12px; padding: 40px 32px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.offer-icon { font-size: 48px; color: var(--gold); margin-bottom: 20px; }
.offer-title { font-family: var(--font-heading); font-size: 28px; color: var(--navy); margin-bottom: 16px; }
.offer-desc { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
@media (max-width: 640px) { .offer-grid { grid-template-columns: 1fr; } }

/* ===== COUNTER ===== */
.counter { font-family: var(--font-heading); font-size: 48px; color: var(--gold); font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testimonial-slider { padding-bottom: 48px; }
.testimonial-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.testimonial-stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; }
.testimonial-quote { font-size: 16px; color: var(--gray-dark); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial-type { font-size: 13px; color: var(--gray); }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }

/* ===== GALLERY BENTO ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 8px; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-row: span 2; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; } .gallery-item:nth-child(6) { grid-row: span 1; grid-column: span 2; } }

/* ===== PROGRAM CARDS ===== */
.program-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--gray-light); }
.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.program-icon { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.program-title { font-family: var(--font-heading); font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.program-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.program-link { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.program-link:hover { color: var(--primary-red); }

/* ===== MEMBERSHIP TIERS ===== */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tier-card { background: var(--white); border: 2px solid var(--gray-light); border-radius: 12px; padding: 32px 24px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tier-card.featured { border-color: var(--gold); transform: scale(1.05); box-shadow: 0 8px 32px rgba(255,205,76,0.2); }
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.tier-name { font-family: var(--font-heading); font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.tier-price { font-family: var(--font-heading); font-size: 36px; color: var(--primary-red); margin-bottom: 4px; }
.tier-period { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.tier-features { text-align: left; margin-bottom: 24px; }
.tier-feature { font-size: 14px; color: var(--gray-dark); padding: 6px 0; border-bottom: 1px solid var(--gray-light); }
@media (max-width: 900px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .tier-grid { grid-template-columns: 1fr; } }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--primary-red); padding: 60px 20px; text-align: center; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* ===== BLOG CARDS ===== */
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-heading); font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }

/* ===== REVIEWS ===== */
.review-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-quote { font-size: 15px; color: var(--gray-dark); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.review-type { font-size: 13px; color: var(--gray); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--gray-light); border-radius: 6px; font-family: var(--font-body); font-size: 15px; color: var(--gray-dark); background: var(--white); transition: border-color 0.3s ease; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-textarea { height: 140px; resize: vertical; }

/* ===== VALUE CARDS ===== */
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 28px; text-align: center; }
.value-icon { font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.value-title { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 16px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ===== FEATURE ITEMS ===== */
.feature-item { text-align: center; padding: 24px; }
.feature-icon { font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.feature-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--gray); }

/* ===== TRAINER CARDS ===== */
.trainer-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.trainer-img { width: 100%; height: 260px; object-fit: cover; }
.trainer-body { padding: 20px; }
.trainer-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trainer-role { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== INFO CARDS ===== */
.info-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 32px; color: var(--gold); flex-shrink: 0; }
.info-title { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.info-text { font-size: 14px; color: var(--gray); }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder { background: var(--gray-light); border-radius: 12px; height: 300px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray); border: 2px dashed var(--gray); }
